summaryrefslogtreecommitdiffstats
path: root/meta-efi-secure-boot/recipes-bsp/grub/grub-efi_2.02.bbappend
diff options
context:
space:
mode:
Diffstat (limited to 'meta-efi-secure-boot/recipes-bsp/grub/grub-efi_2.02.bbappend')
-rw-r--r--meta-efi-secure-boot/recipes-bsp/grub/grub-efi_2.02.bbappend6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta-efi-secure-boot/recipes-bsp/grub/grub-efi_2.02.bbappend b/meta-efi-secure-boot/recipes-bsp/grub/grub-efi_2.02.bbappend
index 87ebc08..2890895 100644
--- a/meta-efi-secure-boot/recipes-bsp/grub/grub-efi_2.02.bbappend
+++ b/meta-efi-secure-boot/recipes-bsp/grub/grub-efi_2.02.bbappend
@@ -76,6 +76,12 @@ do_install_append_class-target() {
76 sed -i 's/^\s*linux\s\+.*bzImage.*/& ima_policy=tcb/g' "$menu" 76 sed -i 's/^\s*linux\s\+.*bzImage.*/& ima_policy=tcb/g' "$menu"
77 } 77 }
78 78
79 # Replace the root parameter in boot command line with BOOT_CMD_ROOT,
80 # which can be configured. It is helpful when secure boot is enabled.
81 [ -n "${BOOT_CMD_ROOT}" ] && {
82 sed -i "s,root=/dev/hda2,root=${BOOT_CMD_ROOT},g" "$menu"
83 }
84
79 # Install the stacked grub configs. 85 # Install the stacked grub configs.
80 install -d "${D}${EFI_BOOT_PATH}" 86 install -d "${D}${EFI_BOOT_PATH}"
81 install -m 0600 "${WORKDIR}/grub-efi.cfg" "${D}${EFI_BOOT_PATH}/grub.cfg" 87 install -m 0600 "${WORKDIR}/grub-efi.cfg" "${D}${EFI_BOOT_PATH}/grub.cfg"