Fix EFISTUB `cmdline` (#2181)
This commit is contained in:
parent
bc3b3a35e6
commit
8117c0eed8
|
|
@ -1105,10 +1105,10 @@ TIMEOUT=5
|
||||||
*self._get_kernel_params(root_partition)
|
*self._get_kernel_params(root_partition)
|
||||||
)
|
)
|
||||||
|
|
||||||
cmdline = tuple(' '.join(entries))
|
cmdline = [' '.join(entries)]
|
||||||
else:
|
else:
|
||||||
loader = '/EFI/Linux/arch-{kernel}.efi'
|
loader = '/EFI/Linux/arch-{kernel}.efi'
|
||||||
cmdline = tuple()
|
cmdline = []
|
||||||
|
|
||||||
parent_dev_path = disk.device_handler.get_parent_device_path(boot_partition.safe_dev_path)
|
parent_dev_path = disk.device_handler.get_parent_device_path(boot_partition.safe_dev_path)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue