index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-09-06 17:59:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-06 17:59:43 +0200 |
commit | 6ead7679073f9a8c50ceb42d0d15b6bfbbbef903 (patch) | |
tree | 3602612ea03183a850d07b6160ae246d74df2e48 | |
parent | e39e49ecc73c327fbb2161a080a7f9b4eacafb21 (diff) | |
parent | 712e5d4a70aa02ab10af75abcaefd5729f14eb7d (diff) |
-rw-r--r-- | archinstall/lib/hardware.py | 4 |
diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py index 416045c4..d1f160c7 100644 --- a/archinstall/lib/hardware.py +++ b/archinstall/lib/hardware.py @@ -80,10 +80,10 @@ def has_wifi() -> bool: def has_amd_cpu() -> bool: - return any(cpu.get("vendor_id") == "AuthenticAMD" for cpu in cpuinfo()) + return any(cpu.get("vendor_id") == "AuthenticAMD" for cpu in cpuinfo()) def has_intel_cpu() -> bool: - return any(cpu.get("vendor_id") == "GenuineIntel" for cpu in cpuinfo()) + return any(cpu.get("vendor_id") == "GenuineIntel" for cpu in cpuinfo()) def has_uefi() -> bool: return os.path.isdir('/sys/firmware/efi') |