Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "GRUB2 is the next-generation GRand Unified Bootloader" |
| 2 | |
| 3 | DESCRIPTION = "GRUB2 is the next generaion of a GPLed bootloader \ |
| 4 | intended to unify bootloading across x86 operating systems. In \ |
| 5 | addition to loading the Linux kernel, it implements the Multiboot \ |
| 6 | standard, which allows for flexible loading of multiple boot images." |
| 7 | |
| 8 | HOMEPAGE = "http://www.gnu.org/software/grub/" |
| 9 | SECTION = "bootloaders" |
| 10 | |
| 11 | LICENSE = "GPLv3" |
| 12 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" |
| 13 | |
| 14 | SRC_URI = "ftp://ftp.gnu.org/gnu/grub/grub-${PV}.tar.gz \ |
| 15 | file://grub-2.00-fpmath-sse-387-fix.patch \ |
| 16 | file://check-if-liblzma-is-disabled.patch \ |
| 17 | file://fix-issue-with-flex-2.5.37.patch \ |
| 18 | file://grub-2.00-add-oe-kernel.patch \ |
| 19 | file://grub-install.in.patch \ |
| 20 | file://remove-gets.patch \ |
| 21 | file://fix-endianness-problem.patch \ |
| 22 | file://grub2-remove-sparc64-setup-from-x86-builds.patch \ |
| 23 | file://grub-2.00-fix-enable_execute_stack-check.patch \ |
| 24 | file://grub-no-unused-result.patch \ |
| 25 | file://grub-efi-allow-a-compilation-without-mcmodel-large.patch \ |
| 26 | file://grub-efi-fix-with-glibc-2.20.patch \ |
| 27 | file://0001-Unset-need_charset_alias-when-building-for-musl.patch \ |
| 28 | file://0001-parse_dhcp_vendor-Add-missing-const-qualifiers.patch \ |
| 29 | file://grub2-fix-initrd-size-bug.patch \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 30 | file://0001-Fix-CVE-2015-8370-Grub2-user-pass-vulnerability.patch \ |
| 31 | file://0001-Remove-direct-_llseek-code-and-require-long-filesyst.patch \ |
| 32 | file://fix-texinfo.patch \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 33 | " |
| 34 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 35 | DEPENDS = "flex-native bison-native" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 36 | |
| 37 | SRC_URI[md5sum] = "e927540b6eda8b024fb0391eeaa4091c" |
| 38 | SRC_URI[sha256sum] = "65b39a0558f8c802209c574f4d02ca263a804e8a564bc6caf1cd0fd3b3cc11e3" |
| 39 | |
| 40 | COMPATIBLE_HOST = '(x86_64.*|i.86.*)-(linux|freebsd.*)' |
| 41 | |
| 42 | inherit autotools gettext texinfo |
| 43 | |
| 44 | PACKAGECONFIG ??= "" |
| 45 | PACKAGECONFIG[grub-mount] = "--enable-grub-mount,--disable-grub-mount,fuse" |
| 46 | PACKAGECONFIG[device-mapper] = "--enable-device-mapper,--disable-device-mapper,lvm2" |
| 47 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 48 | # grub2 creates its own set of -nostdinc / -isystem / -ffreestanding CFLAGS and |
| 49 | # OE's default BUILD_CFLAGS (assigned to CFLAGS for native builds) etc, conflict |
| 50 | # with that. Note that since BUILD_CFLAGS etc are not used by grub2 target |
| 51 | # builds, it's safe to clear them unconditionally for both target and native. |
| 52 | BUILD_CPPFLAGS = "" |
| 53 | BUILD_CFLAGS = "" |
| 54 | BUILD_CXXFLAGS = "" |
| 55 | BUILD_LDFLAGS = "" |
| 56 | |
| 57 | do_configure_prepend() { |
| 58 | # The grub2 configure script uses variables such as TARGET_CFLAGS etc |
| 59 | # for its own purposes. Remove the OE versions from the environment to |
| 60 | # avoid conflicts. |
| 61 | unset TARGET_CPPFLAGS TARGET_CFLAGS TARGET_CXXFLAGS TARGET_LDFLAGS |
| 62 | } |
| 63 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 64 | # grub and grub-efi's sysroot/${datadir}/grub/grub-mkconfig_lib are |
| 65 | # conflicted, remove it since no one uses it. |
| 66 | SYSROOT_PREPROCESS_FUNCS_class-target += "remove_sysroot_mkconfig_lib" |
| 67 | remove_sysroot_mkconfig_lib() { |
| 68 | rm -r "${SYSROOT_DESTDIR}${datadir}/grub/grub-mkconfig_lib" |
| 69 | } |