archboot/usr/lib/initcpio/install/archboot_refind

26 lines
538 B
Text
Raw Normal View History

#!/usr/bin/env bash
2012-09-26 12:51:22 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
2017-11-26 20:38:33 +01:00
add_file "/usr/share/refind/refind_x64.efi"
add_full_dir "/usr/share/refind/drivers_x64"
add_full_dir "/usr/share/refind/tools_x64"
add_full_dir "/usr/share/refind/keys"
add_file "/usr/share/refind/refind.conf-sample"
2022-01-30 12:17:48 +01:00
apps="refind-install refind-mkfont mkrlconf mvrefind"
for i in $apps; do
add_binary "$i"
done
2012-09-26 12:51:22 +02:00
}
help ()
{
cat<<HELPEOF
2021-10-04 11:13:50 +02:00
This hook includes refind-efi on an archboot image.
2012-09-26 12:51:22 +02:00
HELPEOF
}