diff options
author | Christopher Larson <chris_larson@mentor.com> | 2016-11-30 19:40:01 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-09 13:39:12 +0000 |
commit | c148c3639de35d9ebd52a71cf9cc62c7cce25bd4 (patch) | |
tree | 9fc05ffea84760d927d9fa0ba22fb8135fc08b3d /meta/recipes-bsp/grub | |
parent | 411e4e8bbe1c3e67f533011a1e280d5ea6cabb7c (diff) | |
download | poky-c148c3639de35d9ebd52a71cf9cc62c7cce25bd4.tar.gz |
grub-efi: ignore arch mismatch for x32
Ordinary 64-bit binaries are expected for the bootloader.
(From OE-Core rev: 688a79b720044dd9fca3e95ff3d172252fba1e7a)
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/grub')
-rw-r--r-- | meta/recipes-bsp/grub/grub-efi_2.00.bb | 5 |
1 files changed, 4 insertions, 1 deletions
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 \ | |||
65 | ${datadir}/grub \ | 65 | ${datadir}/grub \ |
66 | " | 66 | " |
67 | 67 | ||
68 | BBCLASSEXTEND = "native" | 68 | # 64-bit binaries are expected for the bootloader with an x32 userland |
69 | INSANE_SKIP_${PN}_append_linux-gnux32 = " arch" | ||
70 | INSANE_SKIP_${PN}-dbg_append_linux-gnux32 = " arch" | ||
69 | 71 | ||
72 | BBCLASSEXTEND = "native" | ||