diff --git a/archlinux/create-efi-kernel.sh b/archlinux/create-efi-kernel.sh index 138a62b..0d6b8e7 100755 --- a/archlinux/create-efi-kernel.sh +++ b/archlinux/create-efi-kernel.sh @@ -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) {{{