Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcodefiles <11915375+codefiles@users.noreply.github.com>2023-12-01 08:32:08 -0500
committerGitHub <noreply@github.com>2023-12-01 14:32:08 +0100
commit2aeb1b5762cce5646515f213b366b71367c1dc17 (patch)
treebb830186ace47c814c3a913b0cf491d5ed4dd49a
parentdc477fb1d9813e9e92153592a9400ff349f08ca1 (diff)
Minor fixes for UKI (#2279)
-rw-r--r--archinstall/lib/installer.py13
-rw-r--r--schema.json2
2 files changed, 7 insertions, 8 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index ca195688..d39eb922 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -694,7 +694,7 @@ class Installer:
SysCommand(f'/usr/bin/arch-chroot {self.target} chmod 700 /root')
if mkinitcpio and not self.mkinitcpio(['-P']):
- error(f"Error generating initramfs (continuing anyway)")
+ error('Error generating initramfs (continuing anyway)')
self.helper_flags['base'] = True
@@ -1157,11 +1157,10 @@ Exec = /bin/sh -c "{hook_command}"
ucode = self._get_microcode()
- esp = efi_partition.mountpoint
-
diff_mountpoint = None
- if esp != Path('/efi'):
- diff_mountpoint = str(esp)
+
+ if efi_partition.mountpoint != Path('/efi'):
+ diff_mountpoint = str(efi_partition.mountpoint)
image_re = re.compile('(.+_image="/([^"]+).+\n)')
uki_re = re.compile('#((.+_uki=")/[^/]+(.+\n))')
@@ -1190,12 +1189,12 @@ Exec = /bin/sh -c "{hook_command}"
preset.write_text(''.join(config))
# Directory for the UKIs
- uki_dir = self.target / esp.relative_to(Path('/')) / 'EFI/Linux'
+ uki_dir = self.target / efi_partition.relative_mountpoint / 'EFI/Linux'
uki_dir.mkdir(parents=True, exist_ok=True)
# Build the UKIs
if not self.mkinitcpio(['-P']):
- error(f"Error generating initramfs (continuing anyway)")
+ error('Error generating initramfs (continuing anyway)')
def add_bootloader(self, bootloader: Bootloader, uki_enabled: bool = False):
"""
diff --git a/schema.json b/schema.json
index b1d45f64..74ecc4d3 100644
--- a/schema.json
+++ b/schema.json
@@ -36,7 +36,7 @@
]
},
"uki": {
- "description": "Set to true to use a unified kernel images",
+ "description": "Set to true to use unified kernel images",
"type": "boolean"
},
"custom-commands": {