diff options
-rw-r--r-- | meta-efi-secure-boot/recipes-core/images/kernel-initramfs-efi-secure-boot.inc | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/meta-efi-secure-boot/recipes-core/images/kernel-initramfs-efi-secure-boot.inc b/meta-efi-secure-boot/recipes-core/images/kernel-initramfs-efi-secure-boot.inc index 1a7a74f..478be22 100644 --- a/meta-efi-secure-boot/recipes-core/images/kernel-initramfs-efi-secure-boot.inc +++ b/meta-efi-secure-boot/recipes-core/images/kernel-initramfs-efi-secure-boot.inc | |||
@@ -17,11 +17,9 @@ do_sign[prefuncs] += "${@'check_boot_public_key' if d.getVar('GRUB_SIGN_VERIFY', | |||
17 | 17 | ||
18 | do_deploy() { | 18 | do_deploy() { |
19 | install -d "${DEPLOYDIR}" | 19 | install -d "${DEPLOYDIR}" |
20 | if [ "${UEFI_SELOADER}" = "1" ] ; then | 20 | for SIG in ${D}/boot/*${SB_FILE_EXT}; do |
21 | for SIG in ${D}/boot/*${SB_FILE_EXT}; do | 21 | install -m 0644 ${SIG} ${DEPLOYDIR} |
22 | install -m 0644 ${SIG} ${DEPLOYDIR} | 22 | done |
23 | done | ||
24 | fi | ||
25 | } | 23 | } |
26 | addtask deploy after do_install before do_build | 24 | addtask deploy after do_install before do_build |
27 | 25 | ||