From 190a640708d2db38a7dc4cd88c2848a715a451aa Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Mon, 9 Jan 2023 10:12:33 +0100 Subject: [PATCH] move parameters to common --- usr/lib/archboot/installer/common.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/usr/lib/archboot/installer/common.sh b/usr/lib/archboot/installer/common.sh index fc3d48036..7d5db2a5d 100644 --- a/usr/lib/archboot/installer/common.sh +++ b/usr/lib/archboot/installer/common.sh @@ -5,6 +5,11 @@ LANG=C.UTF8 _LOCAL_DB="/var/cache/pacman/pkg/archboot.db" _RUNNING_ARCH="$(uname -m)" _KERNELPKG="linux" +_INTEL_UCODE="intel-ucode.img" +# name of amd ucode initramfs image +_AMD_UCODE="amd-ucode.img" +# name of the initramfs filesystem +_INITRAMFS="initramfs-${_KERNELPKG}.img" # name of the kernel image [[ "${_RUNNING_ARCH}" == "x86_64" || "${_RUNNING_ARCH}" == "riscv64" ]] && _VMLINUZ="vmlinuz-${_KERNELPKG}" if [[ "${_RUNNING_ARCH}" == "aarch64" ]]; then