From 0a62e012763a01b34b5391ac17a4ea50f2b09993 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 1 Jan 2023 18:17:54 +0100 Subject: [PATCH] fix kernel in systemd-boot --- usr/lib/archboot/installer/bootloader.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/bootloader.sh b/usr/lib/archboot/installer/bootloader.sh index 5ffc06965..bbd04a8a7 100644 --- a/usr/lib/archboot/installer/bootloader.sh +++ b/usr/lib/archboot/installer/bootloader.sh @@ -485,7 +485,7 @@ do_systemd_boot_uefi() { [[ "${UEFISYS_MP}" == "/boot" ]] && \ echo "linux ${_KERNEL}" >> "${DESTDIR}/${UEFISYS_MP}/loader/entries/archlinux-core-main.conf" ! [[ "${UEFISYS_MP}" == "/boot" ]] && \ - echo "linux ${_KERNEL}" >> "${DESTDIR}/${UEFISYS_MP}/loader/entries/archlinux-core-main.conf" + echo "linux /${_KERNEL}" >> "${DESTDIR}/${UEFISYS_MP}/loader/entries/archlinux-core-main.conf" [[ "${RUNNING_ARCH}" == "x86_64" ]] && \ echo "initrd ${_INITRD_INTEL_UCODE}" >> "${DESTDIR}/${UEFISYS_MP}/loader/entries/archlinux-core-main.conf" [[ "${RUNNING_ARCH}" == "x86_64" || "${RUNNING_ARCH}" == "aarch64" ]] && \