From db4d86a6aa7f94a4701f1cb3b1f5db9e672c9e60 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Sat, 3 Dec 2022 20:11:19 -0500 Subject: [PATCH] Added support for older AMD GPUs --- chrootInstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrootInstall.sh b/chrootInstall.sh index 4d0af36..1806dec 100755 --- a/chrootInstall.sh +++ b/chrootInstall.sh @@ -82,7 +82,7 @@ if [ "$cpu" == 'AuthenticAMD' ]; then else pacman -S intel-ucode --noconfirm fi -if [ "$gpu" == 'AMD' ]; then +if [ "$gpu" == 'AMD' ] || [ "$gpu" == 'Advanced' ]; then pacman -S mesa vulkan-icd-loader vulkan-radeon libva-mesa-driver libva-utils --needed --noconfirm elif [ "$gpu" == 'Intel' ]; then pacman -S mesa vulkan-icd-loader vulkan-intel --needed --noconfirm