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:
authornullrequest <30698906+advaithm@users.noreply.github.com>2021-04-07 21:12:43 +0530
committerGitHub <noreply@github.com>2021-04-07 21:12:43 +0530
commit8ad22004414f141897bbfe959b4864ffc29070a1 (patch)
tree10f100f1f8ce75b24be69d0ed0e9155ffe7cd090 /archinstall/lib/installer.py
parent36bad8254f4097a080c29ef54cf98ee80620639e (diff)
Fixed typos
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index d9a36859..8938b371 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -380,9 +380,9 @@ class Installer():
if not isVM():
vendor = cpuVendor()
if vendor == "AuthenticAMD":
- entry.write("initrd /amd-ucode.img")
+ entry.write("initrd /amd-ucode.img\n")
elif vendor == "GenuineIntel":
- entry.write("initrd /amd-ucode.img")
+ entry.write("initrd /intel-ucode.img\n")
else:
self.log("unknow cpu vendor, not adding ucode to systemd-boot config")
entry.write(f'initrd /initramfs-linux.img\n')