summaryrefslogtreecommitdiff
path: root/grub/grub_0.93.oe
blob: 803e487055040dfc5052f301557b10a47c7a7ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
DESCRIPTION = "grand unified bootloader"
DEPENDS = "virtual/libc"

SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz; \
	   file://${FILESDIR}/autohell.patch;patch=1 \
	   file://${FILESDIR}/memcpy.patch;patch=1 \
	   file://${FILESDIR}/reiserfs.patch;patch=1"

S = "${WORKDIR}/grub-${PV}"

inherit autotools

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