Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-01-25 10:42:02 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-01-25 10:42:02 +0100
commit7358dc5a03b0652132ca9debba2aeb43f3610f2b (patch)
treecf69d39fb918444a7c5db1828df6131efbdfb3ac /archinstall
parent68adb3108f8111b1be434bf63c03562d72bbbe6f (diff)
Added some basic/crude graphics checks in hardware.py
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/hardware.py28
1 files changed, 27 insertions, 1 deletions
diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py
index c9483919..93eb560f 100644
--- a/archinstall/lib/hardware.py
+++ b/archinstall/lib/hardware.py
@@ -1,4 +1,5 @@
import os
+from .general import sys_command
from .networking import list_interfaces, enrichIfaceTypes
def hasWifi():
@@ -7,4 +8,29 @@ def hasWifi():
return False
def hasUEFI():
- return os.path.isdir('/sys/firmware/efi') \ No newline at end of file
+ return os.path.isdir('/sys/firmware/efi')
+
+def graphicsDevices():
+ cards = {}
+ for line in sys_command(f"lspci"):
+ if b' VGA ' in line:
+ _, identifier = line.split(b': ',1)
+ cards[identifier.strip().lower().decode('UTF-8')] = line
+ return cards
+
+def hasNvidiaGraphics():
+ if [x for x in graphicsDevices() if 'nvidia' in x]:
+ return True
+ return False
+
+def hasAmdGraphics():
+ if [x for x in graphicsDevices() if 'amd' in x]:
+ return True
+ return False
+
+def hasIntelGraphics():
+ if [x for x in graphicsDevices() if 'intel' in x]:
+ return True
+ return False
+
+# TODO: Add more identifiers \ No newline at end of file