blob: a93c99e6c9dc37f819e3809e4500e373c3f1cdab [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "GRUB2 is the next-generation GRand Unified Bootloader"
2
3DESCRIPTION = "GRUB2 is the next generaion of a GPLed bootloader \
4intended to unify bootloading across x86 operating systems. In \
5addition to loading the Linux kernel, it implements the Multiboot \
6standard, which allows for flexible loading of multiple boot images."
7
8HOMEPAGE = "http://www.gnu.org/software/grub/"
9SECTION = "bootloaders"
10
11LICENSE = "GPLv3"
12LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
13
14SRC_URI = "ftp://ftp.gnu.org/gnu/grub/grub-${PV}.tar.gz \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060015 file://grub-module-explicitly-keeps-symbole-.module_license.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016 file://grub-2.00-fpmath-sse-387-fix.patch \
17 file://check-if-liblzma-is-disabled.patch \
18 file://fix-issue-with-flex-2.5.37.patch \
19 file://grub-2.00-add-oe-kernel.patch \
20 file://grub-install.in.patch \
21 file://remove-gets.patch \
22 file://fix-endianness-problem.patch \
23 file://grub2-remove-sparc64-setup-from-x86-builds.patch \
24 file://grub-2.00-fix-enable_execute_stack-check.patch \
25 file://grub-no-unused-result.patch \
26 file://grub-efi-allow-a-compilation-without-mcmodel-large.patch \
27 file://grub-efi-fix-with-glibc-2.20.patch \
28 file://0001-Unset-need_charset_alias-when-building-for-musl.patch \
29 file://0001-parse_dhcp_vendor-Add-missing-const-qualifiers.patch \
30 file://grub2-fix-initrd-size-bug.patch \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050031 file://0001-Fix-CVE-2015-8370-Grub2-user-pass-vulnerability.patch \
32 file://0001-Remove-direct-_llseek-code-and-require-long-filesyst.patch \
33 file://fix-texinfo.patch \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060034 file://0001-grub-core-gettext-gettext.c-main_context-secondary_c.patch \
Brad Bishop37a0e4d2017-12-04 01:01:44 -050035 file://0001-Enforce-no-pie-if-the-compiler-supports-it.patch \
36 file://0001-grub-core-kern-efi-mm.c-grub_efi_finish_boot_service.patch \
37 file://0002-grub-core-kern-efi-mm.c-grub_efi_get_memory_map-Neve.patch \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050038 file://0001-build-Use-AC_HEADER_MAJOR-to-find-device-macros.patch \
39 file://0001-btrfs-avoid-used-uninitialized-error-with-GCC7.patch \
40 file://0002-i386-x86_64-ppc-fix-switch-fallthrough-cases-with-GC.patch \
41 file://0003-Add-gnulib-fix-gcc7-fallthrough.diff.patch \
42 file://0004-Fix-remaining-cases-of-gcc-7-fallthrough-warning.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050043 "
44
Patrick Williamsc0f7c042017-02-23 20:41:17 -060045DEPENDS = "flex-native bison-native autogen-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050046
47SRC_URI[md5sum] = "e927540b6eda8b024fb0391eeaa4091c"
48SRC_URI[sha256sum] = "65b39a0558f8c802209c574f4d02ca263a804e8a564bc6caf1cd0fd3b3cc11e3"
49
50COMPATIBLE_HOST = '(x86_64.*|i.86.*)-(linux|freebsd.*)'
51
52inherit autotools gettext texinfo
53
54PACKAGECONFIG ??= ""
55PACKAGECONFIG[grub-mount] = "--enable-grub-mount,--disable-grub-mount,fuse"
56PACKAGECONFIG[device-mapper] = "--enable-device-mapper,--disable-device-mapper,lvm2"
57
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050058# grub2 creates its own set of -nostdinc / -isystem / -ffreestanding CFLAGS and
59# OE's default BUILD_CFLAGS (assigned to CFLAGS for native builds) etc, conflict
60# with that. Note that since BUILD_CFLAGS etc are not used by grub2 target
61# builds, it's safe to clear them unconditionally for both target and native.
62BUILD_CPPFLAGS = ""
63BUILD_CFLAGS = ""
64BUILD_CXXFLAGS = ""
65BUILD_LDFLAGS = ""
66
67do_configure_prepend() {
68 # The grub2 configure script uses variables such as TARGET_CFLAGS etc
69 # for its own purposes. Remove the OE versions from the environment to
70 # avoid conflicts.
71 unset TARGET_CPPFLAGS TARGET_CFLAGS TARGET_CXXFLAGS TARGET_LDFLAGS
Patrick Williamsc0f7c042017-02-23 20:41:17 -060072 ( cd ${S}
73 ${S}/autogen.sh )
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050074}
75
Patrick Williamsc124f4f2015-09-15 14:41:29 -050076# grub and grub-efi's sysroot/${datadir}/grub/grub-mkconfig_lib are
77# conflicted, remove it since no one uses it.
Patrick Williamsc0f7c042017-02-23 20:41:17 -060078SYSROOT_DIRS_BLACKLIST += "${datadir}/grub/grub-mkconfig_lib"