Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/installer.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-05-18 00:21:48 +0200
committerAnton Hvornum <anton@hvornum.se>2021-05-18 00:21:48 +0200
commite0561641f6d801d4f37d28bc578e0cec6681f4fc (patch)
treeb930115f73e5cf1452fe62efd4f38498da126765 /archinstall/lib/installer.py
parente23fffe288690cfd35774f1e8ddaf74b678855ac (diff)
Converted from subprocess.check_output() to SysCommand() to hide cpu_vendor() output.
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 6150ad00..103569fb 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -339,7 +339,7 @@ class Installer:
if (ucode := pathlib.Path(f"{self.target}/boot/intel-ucode.img")).exists():
ucode.unlink()
else:
- self.log("Unknown cpu vendor not installing ucode", level=logging.INFO)
+ self.log(f"Unknown CPU vendor '{vendor}' detected. Archinstall won't install any ucode.", level=logging.DEBUG)
self.pacstrap(self.base_packages)
self.helper_flags['base-strapped'] = True