From 06745dad5375781a5f09207b8e0edeb2ca7ceb40 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 8 Sep 2023 18:28:41 +0200 Subject: [PATCH] remove -archboot from Image on aarch64 --- usr/lib/archboot/release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/archboot/release.sh b/usr/lib/archboot/release.sh index 94c994efa..4ac821ca2 100644 --- a/usr/lib/archboot/release.sh +++ b/usr/lib/archboot/release.sh @@ -119,8 +119,8 @@ _create_iso() { _EFISTUB="/usr/lib/systemd/boot/efi/linuxaa64.efi.stub" _INTEL_UCODE="" # replace aarch64 Image.gz with Image kernel for UKI, compressed image is not working at the moment - cp "${_W_DIR}/boot/Image" "boot/Image-archboot-${_ARCH}" - _KERNEL_ARCHBOOT="boot/Image-archboot-${_ARCH}" + cp "${_W_DIR}/boot/Image" "boot/Image-${_ARCH}" + _KERNEL_ARCHBOOT="boot/Image-${_ARCH}" fi [[ -n "${_INTEL_UCODE}" ]] && _INTEL_UCODE="--initrd=${_INTEL_UCODE}" [[ -n "${_AMD_UCODE}" ]] && _AMD_UCODE="--initrd=${_AMD_UCODE}"