Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorcodefiles <11915375+codefiles@users.noreply.github.com>2023-10-18 01:54:29 -0400
committerGitHub <noreply@github.com>2023-10-18 07:54:29 +0200
commit8117c0eed8cdeffc542026a82a51cb10fd6c1ec4 (patch)
tree4562f9ad0595854000398066a2827582582ef5df /archinstall/lib
parentbc3b3a35e6408144587f8c2ace95c4ac68d53bcc (diff)
Fix EFISTUB `cmdline` (#2181)
Diffstat (limited to 'archinstall/lib')
-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 4d6c65b3..2aa0d9dd 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -1105,10 +1105,10 @@ TIMEOUT=5
*self._get_kernel_params(root_partition)
)
- cmdline = tuple(' '.join(entries))
+ cmdline = [' '.join(entries)]
else:
loader = '/EFI/Linux/arch-{kernel}.efi'
- cmdline = tuple()
+ cmdline = []
parent_dev_path = disk.device_handler.get_parent_device_path(boot_partition.safe_dev_path)