aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/grub/grub_0.97.bb
blob: ef37af19e003247f5967fab06712aafd22d82383 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
DESCRIPTION = "GRand Unified Bootloader"
HOMEPAGE = "http://www.gnu.org/software/grub"
SECTION = "bootloaders"
PRIORITY = "optional"
RDEPENDS = "diffutils"
PR = "r4"

SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz \
           file://automake-1.10.patch;patch=1 \
           file://menu.lst"

inherit autotools

python __anonymous () {
    import re
    host = bb.data.getVar('HOST_SYS', d, 1)
    if not re.match('i.86.*-linux', host):
        raise bb.parse.SkipPackage("incompatible with host %s" % host)
}

do_install_append() {
        install -d ${D}/boot/
	ln -sf ../usr/lib/grub/i386${TARGET_VENDOR}/ ${D}/boot/grub

	# TODO: better use grub-set-default script here?
	install -m 0644  ${WORKDIR}/menu.lst ${D}/boot/grub
}

FILES_${PN}-doc = "${datadir}"
FILES_${PN} = "/boot /usr"