remove workaround, it's a kexec bug with higher memory than 4GB

This commit is contained in:
Tobias Powalowski 2022-05-14 14:23:37 +02:00
parent eecd2e97dc
commit 34f707711d

View file

@ -260,10 +260,6 @@ _prepare_xfce() {
_create_pacman_conf _create_pacman_conf
#shellcheck disable=SC2086 #shellcheck disable=SC2086
pacman -Sy --config ${_PACMAN_CONF} >/dev/null 2>&1 || exit 1 pacman -Sy --config ${_PACMAN_CONF} >/dev/null 2>&1 || exit 1
# workaround unsolvable zstd bug,
# booting with higher memory results in not having /var/lib/pacman/local/zstd-*
#shellcheck disable=SC2086
pacman -S zstd --config ${_PACMAN_CONF} --noconfirm --overwrite '*' >/dev/null 2>&1 || exit 1
for i in ${_XORG}; do for i in ${_XORG}; do
#shellcheck disable=SC2086 #shellcheck disable=SC2086
pacman -S ${i} --config ${_PACMAN_CONF} --noconfirm >/dev/null 2>&1 || exit 1 pacman -S ${i} --config ${_PACMAN_CONF} --noconfirm >/dev/null 2>&1 || exit 1
@ -277,10 +273,6 @@ _prepare_xfce() {
_IGNORE="${_IGNORE} --ignore ${i}" _IGNORE="${_IGNORE} --ignore ${i}"
done done
fi fi
# workaround unsolvable zstd bug,
# booting with higher memory results in not having /var/lib/pacman/local/zstd-*
#shellcheck disable=SC2086
pacman -Sy zstd --noconfirm --overwrite '*' >/dev/null 2>&1 || exit 1
#shellcheck disable=SC2086 #shellcheck disable=SC2086
pacman -Syu ${_IGNORE} --noconfirm >/dev/null 2>&1 || exit 1 pacman -Syu ${_IGNORE} --noconfirm >/dev/null 2>&1 || exit 1
_cleanup_install _cleanup_install