Remove add_efi_memmap option

See: https://bbs.archlinux.org/viewtopic.php?id=147400
This commit is contained in:
gardouille 2023-09-04 17:02:17 +02:00
parent bda48a81c0
commit e40ace37a5
Signed by: gardouille
GPG Key ID: E759BAA22501AF32

View File

@ -99,7 +99,7 @@ Unified kernel OPTIONS :
-k,--kernel,--kernel-cmd
Define the kernel command line to use.
(default: build with root-fs|root-uuid and add_efi_memmap + ro options)
(default: build with root-fs|root-uuid + ro options)
UEFI entry OPTIONS:
@ -155,9 +155,9 @@ define_vars() { # {{{
# If kernel_command_line wasn't defined (argument) {{{
if [ -z "${kernel_command_line-}" ]; then
## Use default value
readonly kernel_command_line="root=UUID=${root_uuid} rootfstype=${root_fstype} add_efi_memmap ro"
readonly kernel_command_line="root=UUID=${root_uuid} rootfstype=${root_fstype} ro"
## For encrypted LVM
#readonly kernel_command_line="root=UUID=${root_uuid} rootfstype=${root_fstype} add_efi_memmap ro cryptdevice=UUID=${crypt_part_uuid}:lvm"
#readonly kernel_command_line="root=UUID=${root_uuid} rootfstype=${root_fstype} ro cryptdevice=UUID=${crypt_part_uuid}:lvm"
fi
# }}}
# If uefi_boot_stub_file wasn't defined (argument) {{{