summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/grub
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:14:24 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:29:45 +0100
commit29d6678fd546377459ef75cf54abeef5b969b5cf (patch)
tree8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/recipes-bsp/grub
parentda49de6885ee1bc424e70bc02f21f6ab920efb55 (diff)
downloadpoky-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-bsp/grub')
-rw-r--r--meta/recipes-bsp/grub/grub-0.97/autohell.patch19
-rw-r--r--meta/recipes-bsp/grub/grub_0.97.bb31
2 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-bsp/grub/grub-0.97/autohell.patch b/meta/recipes-bsp/grub/grub-0.97/autohell.patch
new file mode 100644
index 0000000000..279c529bb4
--- /dev/null
+++ b/meta/recipes-bsp/grub/grub-0.97/autohell.patch
@@ -0,0 +1,19 @@
1---
2 configure.ac | 4 ++--
3 1 file changed, 2 insertions(+), 2 deletions(-)
4
5Index: grub-0.97/configure.ac
6===================================================================
7--- grub-0.97.orig/configure.ac 2008-09-12 17:39:52.000000000 +0200
8+++ grub-0.97/configure.ac 2008-09-12 17:40:21.000000000 +0200
9@@ -60,8 +60,8 @@ AC_PROG_CC
10 _AM_DEPENDENCIES(CC)
11
12 dnl Because recent automake complains about AS, set it here.
13-CCAS="$CC"
14-AC_SUBST(CCAS)
15+AM_PROG_AS
16+AC_SUBST(AS)
17
18 AC_ARG_WITH(binutils,
19 [ --with-binutils=DIR search the directory DIR to find binutils])
diff --git a/meta/recipes-bsp/grub/grub_0.97.bb b/meta/recipes-bsp/grub/grub_0.97.bb
new file mode 100644
index 0000000000..6b6b5b0c29
--- /dev/null
+++ b/meta/recipes-bsp/grub/grub_0.97.bb
@@ -0,0 +1,31 @@
1DESCRIPTION = "GRUB is the GRand Unified Bootloader."
2HOMEPAGE = "http://www.gnu.org/software/grub/"
3SECTION = "bootloaders"
4PRIORITY = "optional"
5
6LICENSE = "GPLv2+"
7LIC_FILES_CHKSUM = "file://COPYING;md5=c93c0550bd3173f4504b2cbd8991e50b \
8 file://grub/main.c;beginline=3;endline=9;md5=22a5f28d2130fff9f2a17ed54be90ed6"
9
10RDEPENDS = "diffutils"
11PR = "r2"
12
13SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz; \
14 file://autohell.patch;apply=yes "
15
16inherit autotools
17
18python __anonymous () {
19 import re
20 host = bb.data.getVar('HOST_SYS', d, 1)
21 if not re.match('i.86.*-linux', host):
22 raise bb.parse.SkipPackage("incompatible with host %s" % host)
23}
24
25do_install_append_vmware() {
26 mkdir -p ${D}/boot/
27 ln -sf ../usr/lib/grub/{$TARGET_ARCH}{$TARGET_VENDOR}/ ${D}/boot/grub
28}
29
30FILES_${PN}-doc = "${datadir}"
31FILES_${PN} = "/boot /usr"