Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/hardware.py
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-06-02 21:26:24 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-06-02 21:26:24 -0400
commit118cc17eb210a29b61406f6a5bd7d68cbc0744eb (patch)
treeab0eba951b0694a7c7a306d57119a300dfedb08a /archinstall/lib/hardware.py
parent5f4a24d5cc0ebfdb48898b677fe1a9f3a5c93d05 (diff)
Fix my Quadro T1000 not being detected
Diffstat (limited to 'archinstall/lib/hardware.py')
-rw-r--r--archinstall/lib/hardware.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py
index 180d0b75..66dfd3d0 100644
--- a/archinstall/lib/hardware.py
+++ b/archinstall/lib/hardware.py
@@ -79,7 +79,7 @@ def has_uefi() -> bool:
def graphics_devices() -> dict:
cards = {}
for line in SysCommand("lspci"):
- if b' VGA ' in line:
+ if b' VGA ' in line or b' 3D ' in line:
_, identifier = line.split(b': ', 1)
cards[identifier.strip().lower().decode('UTF-8')] = line
return cards