add comment on downloading archboot and xorg on x86_64

This commit is contained in:
Tobias Powalowski 2022-06-02 20:24:04 +02:00
parent 886c8adef0
commit 9be760352f

View file

@ -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