Fixed typos
This commit is contained in:
parent
36bad8254f
commit
8ad2200441
|
|
@ -380,9 +380,9 @@ class Installer():
|
||||||
if not isVM():
|
if not isVM():
|
||||||
vendor = cpuVendor()
|
vendor = cpuVendor()
|
||||||
if vendor == "AuthenticAMD":
|
if vendor == "AuthenticAMD":
|
||||||
entry.write("initrd /amd-ucode.img")
|
entry.write("initrd /amd-ucode.img\n")
|
||||||
elif vendor == "GenuineIntel":
|
elif vendor == "GenuineIntel":
|
||||||
entry.write("initrd /amd-ucode.img")
|
entry.write("initrd /intel-ucode.img\n")
|
||||||
else:
|
else:
|
||||||
self.log("unknow cpu vendor, not adding ucode to systemd-boot config")
|
self.log("unknow cpu vendor, not adding ucode to systemd-boot config")
|
||||||
entry.write(f'initrd /initramfs-linux.img\n')
|
entry.write(f'initrd /initramfs-linux.img\n')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue