index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-29 08:23:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 08:23:01 +0000 |
commit | 455dd24614be1dcad7ef193bde6efaea6d901b59 (patch) | |
tree | 5309cbfed3632e51831267673632678cc6b11e98 /archinstall/lib/hardware.py | |
parent | 1238199ed8022fbfaedcf746527b5d8c1ad975b9 (diff) | |
parent | 2d02e806f2ae5341752a0ceb532e5c239a164ee7 (diff) |
-rw-r--r-- | archinstall/lib/hardware.py | 4 |
diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py index d6cf982c..e9c63e41 100644 --- a/archinstall/lib/hardware.py +++ b/archinstall/lib/hardware.py @@ -3,6 +3,8 @@ from .general import sys_command from .networking import list_interfaces, enrichIfaceTypes from typing import Optional +__packages__ = ['xf86-video-amdgpu', 'xf86-video-ati', 'xf86-video-intel', 'xf86-video-nouveau', 'xf86-video-fbdev', 'xf86-video-vesa', 'xf86-video-vmware', 'nvidia', 'mesa'] + AVAILABLE_GFX_DRIVERS = { # Sub-dicts are layer-2 options to be selected # and lists are a list of packages to be installed @@ -18,7 +20,7 @@ AVAILABLE_GFX_DRIVERS = { 'mesa' : ['mesa'], 'fbdev' : ['xf86-video-fbdev'], 'vesa' : ['xf86-video-vesa'], - 'vmware' : ['xf86-video-vmware'] + 'vmware / virtualbox' : ['xf86-video-vmware'] } def hasWifi()->bool: |