diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-01-03 18:38:19 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-16 23:08:19 +0000 |
commit | ac867c3d4d1991e2e4f83cca2bad0ee31716796e (patch) | |
tree | fbcd2a23598423e58061623e058d602d000c0a75 /meta/recipes-bsp/grub/grub2.inc | |
parent | 175d162b19b65a329163b0510d915ffae71af4de (diff) | |
download | poky-ac867c3d4d1991e2e4f83cca2bad0ee31716796e.tar.gz |
grub 2.0: several fixes
* Make grub, grub-efi grub_git use a grub2.inc to reduce the duplicated code.
* Make grub and grub-efi use the same patches since they use the same
source. (grub_git is different).
* grub-efi:
- Use autotools to replace autotools-brokensep
- Remove the DEPENDS of freetype, it should be a RDEPENDS.
- Remove grub-2.00-ignore-gnulib-gets-stupidity.patch since it is a
duplication of remove-gets.patch.
- Make grub-efi.rpm contain files rather than make an empty package.
* grub_git:
- Fix a SSE build failure.
[YOCTO #6310]
(From OE-Core rev: cf4aaed28a34cc652352f0817316187b72babc76)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/grub/grub2.inc')
-rw-r--r-- | meta/recipes-bsp/grub/grub2.inc | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-bsp/grub/grub2.inc b/meta/recipes-bsp/grub/grub2.inc new file mode 100644 index 0000000000..59e5b6e1fe --- /dev/null +++ b/meta/recipes-bsp/grub/grub2.inc | |||
@@ -0,0 +1,44 @@ | |||
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 | " | ||
28 | |||
29 | DEPENDS = "autogen-native flex-native bison-native xz" | ||
30 | |||
31 | SRC_URI[md5sum] = "e927540b6eda8b024fb0391eeaa4091c" | ||
32 | SRC_URI[sha256sum] = "65b39a0558f8c802209c574f4d02ca263a804e8a564bc6caf1cd0fd3b3cc11e3" | ||
33 | |||
34 | COMPATIBLE_HOST = '(x86_64.*|i.86.*)-(linux|freebsd.*)' | ||
35 | |||
36 | inherit autotools gettext texinfo | ||
37 | |||
38 | # grub and grub-efi's sysroot/${datadir}/grub/grub-mkconfig_lib are | ||
39 | # conflicted, remove it since no one uses it. | ||
40 | SYSROOT_PREPROCESS_FUNCS_class-target += "remove_sysroot_mkconfig_lib" | ||
41 | remove_sysroot_mkconfig_lib() { | ||
42 | rm -r "${SYSROOT_DESTDIR}${datadir}/grub/grub-mkconfig_lib" | ||
43 | } | ||
44 | |||