diff options
| author | Constantin Musca <constantinx.musca@intel.com> | 2012-09-14 12:48:27 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-19 17:56:27 +0100 |
| commit | a6d808f8c8aabb6fdc9ca6dc1ab27074fa159605 (patch) | |
| tree | 77b4d5125bd31f09be48e5787f61a5682eb970db /meta | |
| parent | 48c01ee679810a751f17c919a095b190a2f37804 (diff) | |
| download | poky-a6d808f8c8aabb6fdc9ca6dc1ab27074fa159605.tar.gz | |
grub: disable lzma, device-mapper, zfs and nvpair
check-if-liblzma-is-disabled.patch: added
- add support for the --enable_liblzma option
[YOCTO #2750]
(From OE-Core rev: 1773a98b68dd223b016fe408b022c2c5475669c2)
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/recipes-bsp/grub/files/check-if-liblzma-is-disabled.patch | 33 | ||||
| -rw-r--r-- | meta/recipes-bsp/grub/grub-efi-native_2.00.bb | 6 | ||||
| -rw-r--r-- | meta/recipes-bsp/grub/grub_2.00.bb | 6 |
3 files changed, 41 insertions, 4 deletions
diff --git a/meta/recipes-bsp/grub/files/check-if-liblzma-is-disabled.patch b/meta/recipes-bsp/grub/files/check-if-liblzma-is-disabled.patch new file mode 100644 index 0000000000..0eece082f8 --- /dev/null +++ b/meta/recipes-bsp/grub/files/check-if-liblzma-is-disabled.patch | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | Disable liblzma if --enable-liblzma=no | ||
| 2 | |||
| 3 | Upstream-Status: Inappropriate [configuration] | ||
| 4 | |||
| 5 | Signed-off-by: Constantin Musca <constantinx.musca@intel.com> | ||
| 6 | |||
| 7 | --- a/configure.ac | ||
| 8 | +++ b/configure.ac | ||
| 9 | @@ -1029,10 +1029,20 @@ fi | ||
| 10 | |||
| 11 | AC_SUBST([LIBGEOM]) | ||
| 12 | |||
| 13 | -AC_CHECK_LIB([lzma], [lzma_code], | ||
| 14 | - [LIBLZMA="-llzma" | ||
| 15 | - AC_DEFINE([HAVE_LIBLZMA], [1], | ||
| 16 | - [Define to 1 if you have the LZMA library.])],) | ||
| 17 | +AC_ARG_ENABLE([liblzma], | ||
| 18 | + [AS_HELP_STRING([--enable-liblzma], | ||
| 19 | + [enable liblzma integration (default=guessed)])]) | ||
| 20 | +if test x"$enable_liblzma" = xno ; then | ||
| 21 | + liblzma_excuse="explicitly disabled" | ||
| 22 | +fi | ||
| 23 | + | ||
| 24 | +if test x"$liblzma_excuse" = x ; then | ||
| 25 | + AC_CHECK_LIB([lzma], [lzma_code], | ||
| 26 | + [LIBLZMA="-llzma" | ||
| 27 | + AC_DEFINE([HAVE_LIBLZMA], [1], | ||
| 28 | + [Define to 1 if you have the LZMA library.])],) | ||
| 29 | +fi | ||
| 30 | + | ||
| 31 | AC_SUBST([LIBLZMA]) | ||
| 32 | |||
| 33 | AC_ARG_ENABLE([libzfs], | ||
diff --git a/meta/recipes-bsp/grub/grub-efi-native_2.00.bb b/meta/recipes-bsp/grub/grub-efi-native_2.00.bb index 776bf23f2d..14ab9ea7b9 100644 --- a/meta/recipes-bsp/grub/grub-efi-native_2.00.bb +++ b/meta/recipes-bsp/grub/grub-efi-native_2.00.bb | |||
| @@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | |||
| 16 | # FIXME: We should be able to optionally drop freetype as a dependency | 16 | # FIXME: We should be able to optionally drop freetype as a dependency |
| 17 | DEPENDS = "autogen-native" | 17 | DEPENDS = "autogen-native" |
| 18 | RDEPENDS_${PN} = "diffutils freetype" | 18 | RDEPENDS_${PN} = "diffutils freetype" |
| 19 | PR = "r0" | 19 | PR = "r1" |
| 20 | 20 | ||
| 21 | # Native packages do not normally rebuild when the target changes. | 21 | # Native packages do not normally rebuild when the target changes. |
| 22 | # Ensure this is built once per HOST-TARGET pair. | 22 | # Ensure this is built once per HOST-TARGET pair. |
| @@ -26,6 +26,7 @@ SRC_URI = "ftp://ftp.gnu.org/gnu/grub/grub-${PV}.tar.gz \ | |||
| 26 | file://grub-2.00-fpmath-sse-387-fix.patch \ | 26 | file://grub-2.00-fpmath-sse-387-fix.patch \ |
| 27 | file://grub-2.00-fix-enable_execute_stack-check.patch \ | 27 | file://grub-2.00-fix-enable_execute_stack-check.patch \ |
| 28 | file://grub-2.00-disable-help2man.patch \ | 28 | file://grub-2.00-disable-help2man.patch \ |
| 29 | file://check-if-liblzma-is-disabled.patch \ | ||
| 29 | file://grub-no-unused-result.patch \ | 30 | file://grub-no-unused-result.patch \ |
| 30 | " | 31 | " |
| 31 | SRC_URI[md5sum] = "e927540b6eda8b024fb0391eeaa4091c" | 32 | SRC_URI[md5sum] = "e927540b6eda8b024fb0391eeaa4091c" |
| @@ -59,7 +60,8 @@ inherit native | |||
| 59 | inherit deploy | 60 | inherit deploy |
| 60 | 61 | ||
| 61 | EXTRA_OECONF = "--with-platform=efi --disable-grub-mkfont \ | 62 | EXTRA_OECONF = "--with-platform=efi --disable-grub-mkfont \ |
| 62 | --target=${GRUB_TARGET} --enable-efiemu=no --program-prefix=''" | 63 | --target=${GRUB_TARGET} --enable-efiemu=no --program-prefix='' \ |
| 64 | --enable-liblzma=no --enable-device-mapper=no --enable-libzfs=no" | ||
| 63 | 65 | ||
| 64 | do_mkimage() { | 66 | do_mkimage() { |
| 65 | ./grub-mkimage -p /EFI/BOOT -d ./grub-core/ \ | 67 | ./grub-mkimage -p /EFI/BOOT -d ./grub-core/ \ |
diff --git a/meta/recipes-bsp/grub/grub_2.00.bb b/meta/recipes-bsp/grub/grub_2.00.bb index 821d9ffe17..8d22424253 100644 --- a/meta/recipes-bsp/grub/grub_2.00.bb +++ b/meta/recipes-bsp/grub/grub_2.00.bb | |||
| @@ -13,12 +13,13 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | |||
| 13 | 13 | ||
| 14 | DEPENDS = "autogen-native flex-native" | 14 | DEPENDS = "autogen-native flex-native" |
| 15 | RDEPENDS_${PN} = "diffutils freetype" | 15 | RDEPENDS_${PN} = "diffutils freetype" |
| 16 | PR = "r0" | 16 | PR = "r1" |
| 17 | 17 | ||
| 18 | SRC_URI = "ftp://ftp.gnu.org/gnu/grub/grub-${PV}.tar.gz \ | 18 | SRC_URI = "ftp://ftp.gnu.org/gnu/grub/grub-${PV}.tar.gz \ |
| 19 | file://grub-install.in.patch \ | 19 | file://grub-install.in.patch \ |
| 20 | file://grub-2.00-fpmath-sse-387-fix.patch \ | 20 | file://grub-2.00-fpmath-sse-387-fix.patch \ |
| 21 | file://remove-gets.patch \ | 21 | file://remove-gets.patch \ |
| 22 | file://check-if-liblzma-is-disabled.patch \ | ||
| 22 | file://40_custom" | 23 | file://40_custom" |
| 23 | 24 | ||
| 24 | SRC_URI[md5sum] = "e927540b6eda8b024fb0391eeaa4091c" | 25 | SRC_URI[md5sum] = "e927540b6eda8b024fb0391eeaa4091c" |
| @@ -32,7 +33,8 @@ FILES_${PN}-dbg += "${libdir}/${BPN}/i386-pc/.debug" | |||
| 32 | inherit autotools | 33 | inherit autotools |
| 33 | inherit gettext | 34 | inherit gettext |
| 34 | 35 | ||
| 35 | EXTRA_OECONF = "--with-platform=pc --disable-grub-mkfont --program-prefix=""" | 36 | EXTRA_OECONF = "--with-platform=pc --disable-grub-mkfont --program-prefix="" \ |
| 37 | --enable-liblzma=no --enable-device-mapper=no --enable-libzfs=no" | ||
| 36 | 38 | ||
| 37 | do_install_append () { | 39 | do_install_append () { |
| 38 | install -d ${D}${sysconfdir}/grub.d | 40 | install -d ${D}${sysconfdir}/grub.d |
