blob: 8e0f86217c03d4df4747405513a4e10e6887ea93 [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
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014SRC_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 Williamsc124f4f2015-09-15 14:41:29 -050016 file://0001-Unset-need_charset_alias-when-building-for-musl.patch \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050017 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 \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080020 file://fix.build.with.gcc-7.patch \
Brad Bishop316dfdd2018-06-25 12:45:53 -040021 file://gcc8.patch \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080022 file://0001-x86-64-Treat-R_X86_64_PLT32-as-R_X86_64_PC32.patch \
Brad Bishop977dc1a2019-02-06 16:01:43 -050023 file://0001-grub-setup-Debug-message-cleanup.patch \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050024"
25SRC_URI[md5sum] = "1116d1f60c840e6dbd67abbc99acb45d"
26SRC_URI[sha256sum] = "660ee136fbcee08858516ed4de2ad87068bfe1b6b8b37896ce3529ff054a726d"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027
Brad Bishopd7bf8c12018-02-25 22:55:05 -050028DEPENDS = "flex-native bison-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050029
Brad Bishopd7bf8c12018-02-25 22:55:05 -050030COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*)-(linux.*|freebsd.*)'
31COMPATIBLE_HOST_armv7a = 'null'
32COMPATIBLE_HOST_armv7ve = 'null'
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033
Brad Bishopd7bf8c12018-02-25 22:55:05 -050034# configure.ac has code to set this automagically from the target tuple
35# but the OE freeform one (core2-foo-bar-linux) don't work with that.
36
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080037GRUBPLATFORM_arm = "efi"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050038GRUBPLATFORM_aarch64 = "efi"
39GRUBPLATFORM ??= "pc"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050040
41inherit autotools gettext texinfo
42
Brad Bishopd7bf8c12018-02-25 22:55:05 -050043EXTRA_OECONF = "--with-platform=${GRUBPLATFORM} \
44 --disable-grub-mkfont \
45 --program-prefix="" \
46 --enable-liblzma=no \
47 --enable-libzfs=no \
48 --enable-largefile \
49"
50
Patrick Williamsc124f4f2015-09-15 14:41:29 -050051PACKAGECONFIG ??= ""
52PACKAGECONFIG[grub-mount] = "--enable-grub-mount,--disable-grub-mount,fuse"
Brad Bishop316dfdd2018-06-25 12:45:53 -040053PACKAGECONFIG[device-mapper] = "--enable-device-mapper,--disable-device-mapper,libdevmapper"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050054
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050055# grub2 creates its own set of -nostdinc / -isystem / -ffreestanding CFLAGS and
56# OE's default BUILD_CFLAGS (assigned to CFLAGS for native builds) etc, conflict
57# with that. Note that since BUILD_CFLAGS etc are not used by grub2 target
58# builds, it's safe to clear them unconditionally for both target and native.
59BUILD_CPPFLAGS = ""
60BUILD_CFLAGS = ""
61BUILD_CXXFLAGS = ""
62BUILD_LDFLAGS = ""
63
64do_configure_prepend() {
65 # The grub2 configure script uses variables such as TARGET_CFLAGS etc
66 # for its own purposes. Remove the OE versions from the environment to
67 # avoid conflicts.
68 unset TARGET_CPPFLAGS TARGET_CFLAGS TARGET_CXXFLAGS TARGET_LDFLAGS
Patrick Williamsc0f7c042017-02-23 20:41:17 -060069 ( cd ${S}
70 ${S}/autogen.sh )
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050071}
72
Brad Bishopd7bf8c12018-02-25 22:55:05 -050073RDEPENDS_${PN}_class-native = ""