summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclassabbyamp <dev@placeviolette.net>2023-09-12 22:31:36 -0400
committerclassabbyamp <dev@placeviolette.net>2023-09-13 15:51:21 -0400
commit889b1c39653e66b5492b01cd34892506a9a5e9ee (patch)
tree622169f713dc5d84c9fce19483955d6fb27f4371
parent58a334c07b63d3ecc706a4b53338e6c2433b4b1a (diff)
install/consolefont: include setfont binary
if not using the sd-vconsole hook (like on Void Linux, where there is no systemd), setfont is not available unless manually added to BINARIES. This also ensures this hook is fully modular and does not rely on other hooks to work.
-rw-r--r--install/consolefont2
1 files changed, 2 insertions, 0 deletions
diff --git a/install/consolefont b/install/consolefont
index 0ec554e..3645191 100644
--- a/install/consolefont
+++ b/install/consolefont
@@ -6,6 +6,8 @@ build() {
# shellcheck disable=SC2034
local KEYMAP KEYMAP_TOGGLE FONT FONT_MAP FONT_UNIMAP XKBLAYOUT XKBMODEL XKBVARIANT XKBOPTIONS
+ add_binary setfont
+
# subshell to avoid namespace pollution
(
# shellcheck disable=SC1091