diff options
-rw-r--r-- | config/build.cfg | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/config/build.cfg b/config/build.cfg index 4b0c07f..dde4a34 100644 --- a/config/build.cfg +++ b/config/build.cfg @@ -75,7 +75,14 @@ my $_c = { ], mbr_boot_img => 'bootloader/images/boot_hybrid.img', eltorito_img => 'bootloader/images/eltorito.img', - bootx64_efi => 'bootloader/images/bootx64.efi', + if_($arch eq 'i586', + efi_type => '32bit', + boot32_efi => 'bootloader/images/bootia32.efi' + ), + if_($arch eq 'x86_64', + efi_type => '64bit', + boot64_efi => 'bootloader/images/bootx64.efi' + ), }, mount => MGA::DrakISO::Mounts::volatile_squash_union(0), }; |