From 9be760352f4b151b1975582005b1c12094685282 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 2 Jun 2022 20:24:04 +0200 Subject: [PATCH] add comment on downloading archboot and xorg on x86_64 --- usr/lib/archboot/container.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr/lib/archboot/container.sh b/usr/lib/archboot/container.sh index 538d4fed7..0bd6576b6 100644 --- a/usr/lib/archboot/container.sh +++ b/usr/lib/archboot/container.sh @@ -146,8 +146,9 @@ _install_archboot() { echo "Adding "${_GPG_KEY_ID}" to trusted keys" pacman-key --add "${_GPG_KEY}" >/dev/null 2>&1 pacman-key --lsign-key "${_GPG_KEY_ID}" >/dev/null 2>&1 + echo "Downloading ${_ARCHBOOT} ${_XORG} to ${1} ..." #shellcheck disable=SC2086 - pacman --root "${1}" -Syw --dbpath "${1}"/blankdb ${_XORG} --config "${_PACMAN_CONF}" --ignore systemd-resolvconf --cachedir "${_CACHEDIR}" --noconfirm >/dev/null 2>&1 + pacman --root "${1}" -Syw --dbpath "${1}"/blankdb ${_ARCHBOOT} ${_XORG} --config "${_PACMAN_CONF}" --ignore systemd-resolvconf --cachedir "${_CACHEDIR}" --noconfirm >/dev/null 2>&1 echo "Installing ${_ARCHBOOT} to ${1} ..." #shellcheck disable=SC2086 pacman --root "${1}" -Sy ${_ARCHBOOT} --config "${_PACMAN_CONF}" --ignore systemd-resolvconf --noconfirm --cachedir "${_CACHEDIR}" >/dev/null 2>&1