summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2020-09-27 23:26:53 +0200
committerjelle van der Waa <jelle@vdwaa.nl>2020-09-30 23:29:26 +0200
commit61194d85aa463cbbd467e9cd67693dc920b06cba (patch)
treee2c091f0cbd8b621c985378836b567ff9d727546
parent8ea19f949810d477780ed13dd39f484d04fa45ff (diff)
downloadarchweb-61194d85aa463cbbd467e9cd67693dc920b06cba.tar.gz
archweb-61194d85aa463cbbd467e9cd67693dc920b06cba.zip
Rename initramfs file
templates/releng/archlinux.ipxe: With https://gitlab.archlinux.org/archlinux/archiso/-/merge_requests/74 the naming scheme of the initramfs is not hardcoded (i.e. archiso.img) anymore but follows the standard naming scheme (i.e. initramfs-linux.img when using the standard linux kernel package). NOTE: This can only be merged and made available *after* the image for October 2020 (e.g. 2020-10-01) has been made available.
-rw-r--r--templates/releng/archlinux.ipxe6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/releng/archlinux.ipxe b/templates/releng/archlinux.ipxe
index 05420b02..f996dd47 100644
--- a/templates/releng/archlinux.ipxe
+++ b/templates/releng/archlinux.ipxe
@@ -130,9 +130,9 @@ initrd ${mirrorurl}iso/${release}/arch/boot/amd-ucode.img || goto failed_downloa
imgverify amd-ucode.img ${mirrorurl}iso/${release}/arch/boot/amd-ucode.img.ipxe.sig || goto failed_verify
initrd ${mirrorurl}iso/${release}/arch/boot/intel-ucode.img || goto failed_download
imgverify intel-ucode.img ${mirrorurl}iso/${release}/arch/boot/intel-ucode.img.ipxe.sig || goto failed_verify
-initrd ${mirrorurl}iso/${release}/arch/boot/x86_64/archiso.img || goto failed_download
-imgverify archiso.img ${mirrorurl}iso/${release}/arch/boot/x86_64/archiso.img.ipxe.sig || goto failed_verify
-imgargs vmlinuz-linux initrd=amd-ucode.img initrd=intel-ucode.img initrd=archiso.img archiso_http_srv=${mirrorurl}iso/${release}/ archisobasedir=arch verify=y ${extrabootoptions}
+initrd ${mirrorurl}iso/${release}/arch/boot/x86_64/initramfs-linux.img || goto failed_download
+imgverify initramfs-linux.img ${mirrorurl}iso/${release}/arch/boot/x86_64/initramfs-linux.img.ipxe.sig || goto failed_verify
+imgargs vmlinuz-linux initrd=amd-ucode.img initrd=intel-ucode.img initrd=initramfs-linux.img archiso_http_srv=${mirrorurl}iso/${release}/ archisobasedir=arch verify=y ${extrabootoptions}
boot || goto failed_boot
:failed_download