From: Saul Wold Date: Tue, 24 Jan 2017 21:33:15 +0000 (-0800) Subject: grub-efi: Deploy grub named efi binaries X-Git-Tag: uninative-1.5~510 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=26f4eb19b6e9c71374659605a01af762a0361f41;p=openembedded-core.git grub-efi: Deploy grub named efi binaries This allows both grub and systemd-boot efi bootloaders to co-exisit Signed-off-by: Saul Wold --- diff --git a/meta/recipes-bsp/grub/grub-efi_2.00.bb b/meta/recipes-bsp/grub/grub-efi_2.00.bb index 03d273dbd9..e0503013fd 100644 --- a/meta/recipes-bsp/grub/grub-efi_2.00.bb +++ b/meta/recipes-bsp/grub/grub-efi_2.00.bb @@ -16,10 +16,10 @@ python __anonymous () { target = d.getVar('TARGET_ARCH') if target == "x86_64": grubtarget = 'x86_64' - grubimage = "bootx64.efi" + grubimage = "grub-efi-bootx64.efi" elif re.match('i.86', target): grubtarget = 'i386' - grubimage = "bootia32.efi" + grubimage = "grub-efi-bootia32.efi" else: raise bb.parse.SkipPackage("grub-efi is incompatible with target %s" % target) d.setVar("GRUB_TARGET", grubtarget)