index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | Keshav P R <the.ridikulus.rat@gmail.com> | 2012-09-12 19:49:21 +0530 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-09-12 13:09:37 -0300 |
commit | 0d04c89e6bfee46477ef08030654a0b421ba86ae (patch) | |
tree | 438e82081f9051acbf8b9bab41449f1f8408108e /configs/releng/build.sh | |
parent | 731148df597fc536cdabd8602589168f2f62ca76 (diff) |
-rwxr-xr-x | configs/releng/build.sh | 8 |
diff --git a/configs/releng/build.sh b/configs/releng/build.sh index 7aad14e..63cbad0 100755 --- a/configs/releng/build.sh +++ b/configs/releng/build.sh @@ -94,7 +94,13 @@ make_boot_efi() { # Add an EFI shell script for automatic boot if ESC-key is not pressed within 5 seconds timeout. sed "s|%ARCHISO_LABEL%|${iso_label}|g; - s|%INSTALL_DIR%|${install_dir}|g" ${script_path}/efiboot/EFI/boot/startup.nsh > ${work_dir}/efiboot/EFI/boot/startup.nsh + s|%INSTALL_DIR%|${install_dir}|g" ${script_path}/efiboot/EFI/boot/startup_iso.nsh > ${work_dir}/efiboot/EFI/boot/startup.nsh + + mkdir -p ${work_dir}/iso/EFI/boot + cp ${work_dir}/efiboot/EFI/boot/bootx64.efi ${work_dir}/iso/EFI/boot/bootx64.efi + + sed "s|%ARCHISO_LABEL%|${iso_label}|g; + s|%INSTALL_DIR%|${install_dir}|g" ${script_path}/efiboot/EFI/boot/startup_usb.nsh > ${work_dir}/iso/EFI/boot/startup.nsh umount ${work_dir}/efiboot fi |