Skip to content

Commit

Permalink
Fix EFISTUB cmdline (archlinux#2181)
Browse files Browse the repository at this point in the history
  • Loading branch information
codefiles authored Oct 18, 2023
1 parent bc3b3a3 commit 8117c0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions archinstall/lib/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1105,10 +1105,10 @@ def _add_efistub_bootloader(
*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)

Expand Down

0 comments on commit 8117c0e

Please sign in to comment.