diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@gmail.com> | 2015-07-20 13:04:34 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@gmail.com> | 2015-07-20 13:04:34 -0300 |
commit | 9dfae68fbe1de48efe657be280cb3944e931a0d5 (patch) | |
tree | dfc11a9b19758942da7467632f8c606912233e9f | |
parent | e709474a89d7553178290d0bc57045405de73c27 (diff) | |
download | archiso32-9dfae68fbe1de48efe657be280cb3944e931a0d5.tar.xz |
[configs/releng] Fix EFI shells URL
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@gmail.com>
-rwxr-xr-x | configs/releng/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/releng/build.sh b/configs/releng/build.sh index 6ec90ab..b0306cc 100755 --- a/configs/releng/build.sh +++ b/configs/releng/build.sh @@ -152,9 +152,9 @@ make_efi() { ${script_path}/efiboot/loader/entries/archiso-x86_64-usb.conf > ${work_dir}/iso/loader/entries/archiso-x86_64.conf # EFI Shell 2.0 for UEFI 2.3+ - curl -o ${work_dir}/iso/EFI/shellx64_v2.efi https://github.com/tianocore/edk2/raw/master/ShellBinPkg/UefiShell/X64/Shell.efi + curl -o ${work_dir}/iso/EFI/shellx64_v2.efi https://raw.githubusercontent.com/tianocore/edk2/master/ShellBinPkg/UefiShell/X64/Shell.efi # EFI Shell 1.0 for non UEFI 2.3+ - curl -o ${work_dir}/iso/EFI/shellx64_v1.efi https://github.com/tianocore/edk2/raw/master/EdkShellBinPkg/FullShell/X64/Shell_Full.efi + curl -o ${work_dir}/iso/EFI/shellx64_v1.efi https://raw.githubusercontent.com/tianocore/edk2/master/EdkShellBinPkg/FullShell/X64/Shell_Full.efi } # Prepare efiboot.img::/EFI for "El Torito" EFI boot mode |