archboot/usr/lib/initcpio/install/archboot_base_latest

18 lines
420 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"
}
help ()
{
cat <<HELPEOF
2022-01-31 10:49:49 +01:00
This hook sets up stripped down base for for latest image.
HELPEOF
}