archboot/usr/lib/initcpio/install/archboot_keymap
Tobias Powalowski 140bb4a656 code cleanup
2022-01-21 12:27:31 +01:00

19 lines
492 B
Bash

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_binary "dumpkeys"
add_binary "kbd_mode"
for i in $(find /usr/share/kbd/ ! -type d ! -name "mac*" ! -name "ppc" ! -name "ppc" ! -name "atari*" ! -name "sun*" ! -name "README*" ! -name "amiga*"); do
add_file "$i"
done
add_file /usr/bin/archboot-km.sh /usr/bin/km
}
help ()
{
cat<<HELPEOF
This hook includes the keymaps and fonts on an archboot image.
HELPEOF
}