add download_graphical to aarch64 and riscv64

This commit is contained in:
Tobias Powalowski 2022-10-25 07:25:55 +02:00
parent 938df99212
commit ee1a5ffe95
2 changed files with 6 additions and 2 deletions

View file

@ -21,7 +21,8 @@ if [[ "${_RUNNING_ARCH}" == "aarch64" ]]; then
_umount_special "${1}" || exit 1
_fix_groups "${1}"
_clean_container "${1}"
_clean_archboot_cache
_download_graphical "${1}" || exit 1
_clean_cache "${1}"
_generate_keyring "${1}" || exit 1
_copy_mirrorlist_and_pacman_conf "${1}"
fi
@ -33,6 +34,7 @@ if [[ "${_RUNNING_ARCH}" == "x86_64" ]]; then
_install_archboot "${1}" "use_binfmt" || exit 1
_fix_groups "${1}"
_clean_mkinitcpio "${1}"
_download_graphical "${1}" || exit 1
_clean_cache "${1}"
_clean_container "${1}" 2>/dev/null
fi

View file

@ -21,7 +21,8 @@ if [[ "${_RUNNING_ARCH}" == "riscv64" ]]; then
_umount_special "${1}" || exit 1
_fix_groups "${1}"
_clean_container "${1}"
_clean_archboot_cache
_download_graphical "${1}" || exit 1
_clean_cache "${1}"
_generate_keyring "${1}" || exit 1
_copy_mirrorlist_and_pacman_conf "${1}"
fi
@ -33,6 +34,7 @@ if [[ "${_RUNNING_ARCH}" == "x86_64" ]]; then
_install_archboot "${1}" "use_binfmt" || exit 1
_fix_groups "${1}"
_clean_mkinitcpio "${1}"
_download_graphical "${1}" || exit 1
_clean_cache "${1}"
_clean_container "${1}" 2>/dev/null
fi