Fix EFISTUB `cmdline` (#2181)

This commit is contained in:
codefiles 2023-10-18 01:54:29 -04:00 committed by GitHub
parent bc3b3a35e6
commit 8117c0eed8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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)