diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/build.cfg | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config/build.cfg b/config/build.cfg index c0c9cc2..97373b2 100644 --- a/config/build.cfg +++ b/config/build.cfg @@ -433,7 +433,12 @@ my $_l = { ], mbr_boot_img => 'bootloader/images/boot_hybrid.img', eltorito_img => 'bootloader/images/eltorito.img', - bootx64_efi => 'bootloader/images/bootx64.efi', + if_($arch eq 'i586', + boot_efi => 'bootloader/images/bootia32.efi' + ), + if_($arch eq 'x86_64', + boot_efi => 'bootloader/images/bootx64.efi' + ), }, mount => MGA::DrakISO::Mounts::volatile_squash_union($use_modules), }; |