summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/grub/grub-efi-native_2.00.bb
diff options
context:
space:
mode:
authorConstantin Musca <constantinx.musca@intel.com>2012-09-14 12:48:27 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-19 17:56:27 +0100
commita6d808f8c8aabb6fdc9ca6dc1ab27074fa159605 (patch)
tree77b4d5125bd31f09be48e5787f61a5682eb970db /meta/recipes-bsp/grub/grub-efi-native_2.00.bb
parent48c01ee679810a751f17c919a095b190a2f37804 (diff)
downloadpoky-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/recipes-bsp/grub/grub-efi-native_2.00.bb')
-rw-r--r--meta/recipes-bsp/grub/grub-efi-native_2.00.bb6
1 files changed, 4 insertions, 2 deletions
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
17DEPENDS = "autogen-native" 17DEPENDS = "autogen-native"
18RDEPENDS_${PN} = "diffutils freetype" 18RDEPENDS_${PN} = "diffutils freetype"
19PR = "r0" 19PR = "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 "
31SRC_URI[md5sum] = "e927540b6eda8b024fb0391eeaa4091c" 32SRC_URI[md5sum] = "e927540b6eda8b024fb0391eeaa4091c"
@@ -59,7 +60,8 @@ inherit native
59inherit deploy 60inherit deploy
60 61
61EXTRA_OECONF = "--with-platform=efi --disable-grub-mkfont \ 62EXTRA_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
64do_mkimage() { 66do_mkimage() {
65 ./grub-mkimage -p /EFI/BOOT -d ./grub-core/ \ 67 ./grub-mkimage -p /EFI/BOOT -d ./grub-core/ \