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 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 14 | SRC_URI = "https://ftp.gnu.org/gnu/grub/grub-${PV}.tar.gz \ |
| 15 | file://0001-Disable-mfpmath-sse-as-well-when-SSE-is-disabled.patch \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 16 | file://0001-Unset-need_charset_alias-when-building-for-musl.patch \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 17 | file://autogen.sh-exclude-pc.patch \ |
| 18 | file://grub-module-explicitly-keeps-symbole-.module_license.patch \ |
| 19 | file://0001-grub.d-10_linux.in-add-oe-s-kernel-name.patch \ |
| 20 | file://fix.build.with.gcc-7.patch \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 21 | file://gcc8.patch \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 22 | " |
| 23 | SRC_URI[md5sum] = "1116d1f60c840e6dbd67abbc99acb45d" |
| 24 | SRC_URI[sha256sum] = "660ee136fbcee08858516ed4de2ad87068bfe1b6b8b37896ce3529ff054a726d" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 25 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 26 | DEPENDS = "flex-native bison-native" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 27 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 28 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*)-(linux.*|freebsd.*)' |
| 29 | COMPATIBLE_HOST_armv7a = 'null' |
| 30 | COMPATIBLE_HOST_armv7ve = 'null' |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 31 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 32 | # configure.ac has code to set this automagically from the target tuple |
| 33 | # but the OE freeform one (core2-foo-bar-linux) don't work with that. |
| 34 | |
| 35 | GRUBPLATFORM_arm = "uboot" |
| 36 | GRUBPLATFORM_aarch64 = "efi" |
| 37 | GRUBPLATFORM ??= "pc" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 38 | |
| 39 | inherit autotools gettext texinfo |
| 40 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 41 | EXTRA_OECONF = "--with-platform=${GRUBPLATFORM} \ |
| 42 | --disable-grub-mkfont \ |
| 43 | --program-prefix="" \ |
| 44 | --enable-liblzma=no \ |
| 45 | --enable-libzfs=no \ |
| 46 | --enable-largefile \ |
| 47 | " |
| 48 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 49 | PACKAGECONFIG ??= "" |
| 50 | PACKAGECONFIG[grub-mount] = "--enable-grub-mount,--disable-grub-mount,fuse" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 51 | PACKAGECONFIG[device-mapper] = "--enable-device-mapper,--disable-device-mapper,libdevmapper" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 52 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 53 | # grub2 creates its own set of -nostdinc / -isystem / -ffreestanding CFLAGS and |
| 54 | # OE's default BUILD_CFLAGS (assigned to CFLAGS for native builds) etc, conflict |
| 55 | # with that. Note that since BUILD_CFLAGS etc are not used by grub2 target |
| 56 | # builds, it's safe to clear them unconditionally for both target and native. |
| 57 | BUILD_CPPFLAGS = "" |
| 58 | BUILD_CFLAGS = "" |
| 59 | BUILD_CXXFLAGS = "" |
| 60 | BUILD_LDFLAGS = "" |
| 61 | |
| 62 | do_configure_prepend() { |
| 63 | # The grub2 configure script uses variables such as TARGET_CFLAGS etc |
| 64 | # for its own purposes. Remove the OE versions from the environment to |
| 65 | # avoid conflicts. |
| 66 | unset TARGET_CPPFLAGS TARGET_CFLAGS TARGET_CXXFLAGS TARGET_LDFLAGS |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 67 | ( cd ${S} |
| 68 | ${S}/autogen.sh ) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 69 | } |
| 70 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 71 | RDEPENDS_${PN}_class-native = "" |