summaryrefslogtreecommitdiff
path: root/misc/etc/initcpio/install/vtcol
blob: 3fb01c9784541a69b334ff8f0bb8aac5d38a3e37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
###############################################################################
# Copyright 2015 Philipp Gesang
# Example mkinitcpio build hook invoking vtcol in the initramfs environment
###############################################################################
#
# See mkinitcpio(8) for details.
#
# This does nothing besides invoking ``add_runscript`` to add the vtcol
# initcpio hook and displaying some basic info.

build () {
    add_runscript
}

help () {
    cat <<ENOUGH
-------------------------------------------------------------------------------
                                     vtcol
-------------------------------------------------------------------------------

                    Set the frambuffer console color scheme
                    during early boot.

-------------------------------------------------------------------------------
ENOUGH
}

# vim:ft=sh:sw=4:et