From 0d206f93fa5a33669027ea386389aa51a53d740d Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sat, 18 Feb 2023 22:23:16 +0100 Subject: [PATCH] only use fast kexec path --- usr/lib/archboot/update-installer/update-installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/update-installer/update-installer.sh b/usr/lib/archboot/update-installer/update-installer.sh index 690801010..f78246dff 100644 --- a/usr/lib/archboot/update-installer/update-installer.sh +++ b/usr/lib/archboot/update-installer/update-installer.sh @@ -375,7 +375,7 @@ _new_environment() { done _MEM_MAX="" # only needed on aarch64 - if [[ ${_RUNNING_ARCH} == aarch64 ]]; then + if [[ "${_RUNNING_ARCH}" == "aarch64" ]]; then _MEM_MAX="--mem-max=0xA0000000" fi echo -e "\e[1mStep 10/10:\e[m Running \e[1;92mkexec\e[m with \e[1mKEXEC_LOAD\e[m..."