From: Christopher Larson Date: Thu, 1 Dec 2016 02:40:01 +0000 (-0700) Subject: grub-efi: ignore arch mismatch for x32 X-Git-Tag: uninative-1.5~925 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=688a79b720044dd9fca3e95ff3d172252fba1e7a;p=openembedded-core.git grub-efi: ignore arch mismatch for x32 Ordinary 64-bit binaries are expected for the bootloader. Signed-off-by: Christopher Larson Signed-off-by: Ross Burton --- diff --git a/meta/recipes-bsp/grub/grub-efi_2.00.bb b/meta/recipes-bsp/grub/grub-efi_2.00.bb index 531482b915..03d273dbd9 100644 --- a/meta/recipes-bsp/grub/grub-efi_2.00.bb +++ b/meta/recipes-bsp/grub/grub-efi_2.00.bb @@ -65,5 +65,8 @@ FILES_${PN} += "${libdir}/grub/${GRUB_TARGET}-efi \ ${datadir}/grub \ " -BBCLASSEXTEND = "native" +# 64-bit binaries are expected for the bootloader with an x32 userland +INSANE_SKIP_${PN}_append_linux-gnux32 = " arch" +INSANE_SKIP_${PN}-dbg_append_linux-gnux32 = " arch" +BBCLASSEXTEND = "native"