diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-01-12 23:43:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-30 11:36:58 +0000 |
commit | 047ad2c81a7ec0d59d5fb1ddf52668c29a1119c9 (patch) | |
tree | 87cbebb1238a9d20c8346b78cd6021567cd4bbfc /meta/recipes-bsp/grub/grub-efi_2.00.bb | |
parent | 956be0c858b55f34e666ad2a00bd07ae61e36ae1 (diff) | |
download | poky-047ad2c81a7ec0d59d5fb1ddf52668c29a1119c9.tar.gz |
grub: Backport fix for largefile detection/use
This is inspired by musl porting, where grub's configure is enabling
largefile support based on glibc versions, instead an upstream patch
turns it into autoconf check
Update git version recipe
arm platforms use this recipe to provide grub and it needed fixes from
upstream so upgrade to latest tip of git and forward port patches as
well as drop the ones already applied upstream
(From OE-Core rev: a290429c8415042cb8c2f4258e76a3cc6815a172)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/grub/grub-efi_2.00.bb')
-rw-r--r-- | meta/recipes-bsp/grub/grub-efi_2.00.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-bsp/grub/grub-efi_2.00.bb b/meta/recipes-bsp/grub/grub-efi_2.00.bb index ecc6c9a431..4e80e1815e 100644 --- a/meta/recipes-bsp/grub/grub-efi_2.00.bb +++ b/meta/recipes-bsp/grub/grub-efi_2.00.bb | |||
@@ -33,6 +33,8 @@ EXTRA_OECONF = "--with-platform=efi --disable-grub-mkfont \ | |||
33 | --enable-efiemu=no --program-prefix='' \ | 33 | --enable-efiemu=no --program-prefix='' \ |
34 | --enable-liblzma=no --enable-device-mapper=no --enable-libzfs=no" | 34 | --enable-liblzma=no --enable-device-mapper=no --enable-libzfs=no" |
35 | 35 | ||
36 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'largefile', '--enable-largefile ac_cv_sizeof_off_t=8', '--disable-largefile', d)}" | ||
37 | |||
36 | do_install_class-native() { | 38 | do_install_class-native() { |
37 | install -d ${D}${bindir} | 39 | install -d ${D}${bindir} |
38 | install -m 755 grub-mkimage ${D}${bindir} | 40 | install -m 755 grub-mkimage ${D}${bindir} |