fix refind-efi on i686

This commit is contained in:
Tobias Powalowski 2013-07-04 21:58:26 +02:00
parent af61291f23
commit 769072542b

View file

@ -3,14 +3,15 @@
build () build ()
{ {
add_file "/usr/lib/refind/refind_x64.efi" [[ "$(uname -m )" == "x86_64" ]] && add_file "/usr/lib/refind/refind_x64.efi"
[[ "$(uname -m )" == "i686" ]] && add_file "/usr/lib/refind/refind_ia32.efi"
add_file "/usr/lib/refind/config/refind.conf" add_file "/usr/lib/refind/config/refind.conf"
} }
help () help ()
{ {
cat<<HELPEOF cat<<HELPEOF
This hook includes refind-efi-x86_64 on an arch boot image. This hook includes refind-efi on an arch boot image.
HELPEOF HELPEOF
} }