Added support for older AMD GPUs

This commit is contained in:
2022-12-03 20:11:19 -05:00
parent 7c5a7fbae7
commit db4d86a6aa
+1 -1
View File
@@ -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