From 7493e8859f28c1dee97875c3d6a3ca23c3f2a04d Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sat, 7 Sep 2024 17:42:14 +0200 Subject: [PATCH] fix uki.sh --- usr/lib/archboot/uki.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/uki.sh b/usr/lib/archboot/uki.sh index df1c8f7b0..eae70fa10 100644 --- a/usr/lib/archboot/uki.sh +++ b/usr/lib/archboot/uki.sh @@ -63,7 +63,7 @@ _systemd_ukify() { _AMD_UCODE="--initrd=/${_AMD_UCODE}" #shellcheck disable=SC2086 /usr/lib/systemd/ukify build --linux="${_KERNEL}" \ - ${_INTEL_UCODE} ${_AMD_UCODE} --initrd="${initrd}" --cmdline="${_CMDLINE}" \ + ${_INTEL_UCODE} ${_AMD_UCODE} --initrd="${_INITRD}" --cmdline="${_CMDLINE}" \ --os-release=@"${_OSREL}" --splash="${_SPLASH}" --output="${_UKI}" &>"${_NO_LOG}" || exit 1 }