blob: 400ec07455b2c33b17a62c8d77eb67e7df9acc88 (
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--2017 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
|