archboot/usr/lib/initcpio/install/archboot_base_latest

20 lines
526 B
Text
Raw Normal View History

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
### adding default font and keymap
2022-11-29 20:39:48 +01:00
add_file "/usr/share/kbd/consolefonts/latarcyrheb-sun16.psfu.gz"
add_file "/usr/share/kbd/consolefonts/latarcyrheb-sun32.psfu.gz"
add_file "/usr/share/kbd/keymaps/i386/qwerty/us.map.gz"
2022-11-29 21:27:00 +01:00
add_full_dir "/usr/share/kbd/keymaps/i386/include"
2022-11-29 21:31:20 +01:00
add_full_dir "/usr/share/kbd/keymaps/include"
}
help ()
{
cat <<HELPEOF
2022-01-31 10:49:49 +01:00
This hook sets up stripped down base for for latest image.
HELPEOF
}