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:
authoradvaithm <advaith.madhukar@gmail.com>2021-03-12 11:57:02 +0530
committeradvaithm <advaith.madhukar@gmail.com>2021-03-12 11:57:02 +0530
commit94456bf8ba692fb33c819d416636b34d9b14f7af (patch)
treeb5d315d88718f57ade44ce08ad3126bc3e7f340d /archinstall/lib/hardware.py
parent43a0134f2e59dd34252195ff4d5bae4ebaaa6117 (diff)
add function to check cpu vendor to allow for cpu specific command line arguments
Diffstat (limited to 'archinstall/lib/hardware.py')
-rw-r--r--archinstall/lib/hardware.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py
index 93eb560f..3586ad09 100644
--- a/archinstall/lib/hardware.py
+++ b/archinstall/lib/hardware.py
@@ -1,4 +1,4 @@
-import os
+import os, subprocess
from .general import sys_command
from .networking import list_interfaces, enrichIfaceTypes
@@ -7,6 +7,11 @@ def hasWifi():
return True
return False
+def hasAMDCPU():
+ if subprocess.check_output("lscpu | grep AMD", shell=True).strip().decode():
+ return True
+ return False
+
def hasUEFI():
return os.path.isdir('/sys/firmware/efi')