From 0d04c89e6bfee46477ef08030654a0b421ba86ae Mon Sep 17 00:00:00 2001 From: Keshav P R Date: Wed, 12 Sep 2012 19:49:21 +0530 Subject: Copy UEFI Shell to (ISO)/EFI/boot/bootx64.efi for setting up UEFI bootable USB and add refind-efi-x86_64 to ISO --- configs/releng/efiboot/EFI/boot/startup.nsh | 10 ---------- configs/releng/efiboot/EFI/boot/startup_iso.nsh | 10 ++++++++++ configs/releng/efiboot/EFI/boot/startup_usb.nsh | 10 ++++++++++ 3 files changed, 20 insertions(+), 10 deletions(-) delete mode 100644 configs/releng/efiboot/EFI/boot/startup.nsh create mode 100644 configs/releng/efiboot/EFI/boot/startup_iso.nsh create mode 100644 configs/releng/efiboot/EFI/boot/startup_usb.nsh (limited to 'configs/releng/efiboot/EFI') diff --git a/configs/releng/efiboot/EFI/boot/startup.nsh b/configs/releng/efiboot/EFI/boot/startup.nsh deleted file mode 100644 index f50aed2..0000000 --- a/configs/releng/efiboot/EFI/boot/startup.nsh +++ /dev/null @@ -1,10 +0,0 @@ -@echo -off - -for %m run (0 9) - if exist fs%m:\EFI\archiso\vmlinuz.efi then - fs%m: - cd fs%m:\EFI\archiso - echo "Launching Arch Linux ISO Kernel fs%m:\EFI\archiso\vmlinuz.efi" - vmlinuz.efi archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% initrd=\EFI\archiso\archiso.img - endif -endfor diff --git a/configs/releng/efiboot/EFI/boot/startup_iso.nsh b/configs/releng/efiboot/EFI/boot/startup_iso.nsh new file mode 100644 index 0000000..5c35ca8 --- /dev/null +++ b/configs/releng/efiboot/EFI/boot/startup_iso.nsh @@ -0,0 +1,10 @@ +@echo -off + +for %m run (0 20) + if exist fs%m:\EFI\archiso\vmlinuz.efi then + fs%m: + cd fs%m:\EFI\archiso + echo "Launching Arch Linux ISO Kernel fs%m:\EFI\archiso\vmlinuz.efi" + vmlinuz.efi archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% initrd=\EFI\archiso\archiso.img + endif +endfor diff --git a/configs/releng/efiboot/EFI/boot/startup_usb.nsh b/configs/releng/efiboot/EFI/boot/startup_usb.nsh new file mode 100644 index 0000000..439e400 --- /dev/null +++ b/configs/releng/efiboot/EFI/boot/startup_usb.nsh @@ -0,0 +1,10 @@ +@echo -off + +for %m run (0 20) + if exist fs%m:\%INSTALL_DIR%\boot\x86_64\vmlinuz then + fs%m: + cd fs%m:\%INSTALL_DIR%\boot\x86_64 + echo "Launching Archiso Kernel fs%m:\%INSTALL_DIR%\boot\x86_64\vmlinuz" + vmlinuz archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% initrd=\%INSTALL_DIR%\boot\x86_64\archiso.img + endif +endfor -- cgit v1.2.3-54-g00ecf