Add: AMD Graphics > 'radeon' module has been added to the 'MODULES' array

Change: Prompts have been edited for aesthetic reasons
This commit is contained in:
Jane Doe
2025-12-04 19:40:35 +02:00
parent 09cdd4fc5c
commit cb7d9b1743
+4 -4
View File
@@ -2,7 +2,7 @@
# Amelia Installer # Amelia Installer
# Source: https://gitlab.com/prism7/archery # Source: https://gitlab.com/prism7/archery
# Version: 1.1.3 # Version: 1.1.4
set -euo pipefail set -euo pipefail
################################################################################################### ###################################################################################################
@@ -497,7 +497,7 @@ ${magenta}###${nc}--------------------------------${magenta}[ ${bwhite}Internet
---------------------------------------------------------------------- ----------------------------------------------------------------------
### ${nc}A connection to ${yellow}'www.archlinux.org' ${nc}could not be established ${red}### ### ${nc}A connection to ${yellowl}'www.archlinux.org' ${nc}could not be established ${red}###
---------------------------------------------------------------------- ----------------------------------------------------------------------
" "
failure failure
@@ -7216,7 +7216,7 @@ set_vars() {
# MultiGfx with Intel # MultiGfx with Intel
[[ "${vendors}" =~ "Intel" ]] && MODULES+=(i915) [[ "${vendors}" =~ "Intel" ]] && MODULES+=(i915)
# MultiGfx with AMD # MultiGfx with AMD
[[ "${vendors}" =~ "AMD" ]] && MODULES+=(amdgpu) [[ "${vendors}" =~ "AMD" ]] && MODULES+=(amdgpu radeon)
# Disable GSP Firmware # Disable GSP Firmware
[[ "${nogsp}" == "y" ]] && gfx_bootopts+=(nvidia.NVreg_EnableGpuFirmware=0) [[ "${nogsp}" == "y" ]] && gfx_bootopts+=(nvidia.NVreg_EnableGpuFirmware=0)
@@ -7227,7 +7227,7 @@ set_vars() {
# AMD # AMD
if [[ "${vendor}" == "AMD" || "${vendors}" =~ "AMD" ]]; then if [[ "${vendor}" == "AMD" || "${vendors}" =~ "AMD" ]]; then
if [[ -n "${islands}" && -z "${nvdprop}" ]]; then if [[ -n "${islands}" && -z "${nvdprop}" ]]; then
MODULES+=(amdgpu) MODULES+=(amdgpu radeon)
fi fi
# 'Southern Islands' support # 'Southern Islands' support
if [[ "${islands}" == "1" ]]; then if [[ "${islands}" == "1" ]]; then