archboot/lib/initcpio/install/arch_grub2

21 lines
446 B
Text
Raw Normal View History

2007-02-22 23:46:50 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
install ()
{
MODULES=""
BINARIES="grub grub-install grub-md5-crypt grub-set-default grub-terminfo install-grub"
FILES=""
SCRIPT=""
2008-12-06 19:12:19 +01:00
add_file "/usr/share/archboot/grub/boot/grub/menu.lst" "/boot/grub/menu.lst"
2007-02-22 23:46:50 +01:00
for i in $(find /usr/lib/grub ! -type d); do
add_file "$i"
done
}
help ()
{
cat<<HELPEOF
2011-02-03 12:11:22 +01:00
This hook includes grub2 on an arch boot image.
2007-02-22 23:46:50 +01:00
HELPEOF
}