archboot/usr/lib/initcpio/install/archboot_base_latest

17 lines
342 B
Text
Raw Normal View History

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
### adding default font and keymap
add_file "/usr/share/kbd/consolefonts/lat9w-16.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
}