generic-poky/meta/packages/grub/grub_0.97.bb
Samuel Ortiz bfeacba18b grub: Initial commit
We need grub for building netbook installation images


git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5442 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-10-08 08:16:38 +00:00

27 lines
677 B
BlitzBasic

DESCRIPTION = "GRUB is the GRand Unified Bootloader"
HOMEPAGE = "http://www.gnu.org/software/grub"
SECTION = "bootloaders"
PRIORITY = "optional"
RDEPENDS = "diffutils"
PR = "r2"
SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz; \
file://autohell.patch;patch=1 "
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_vmware() {
mkdir -p ${D}/boot/
ln -sf ../usr/lib/grub/{$TARGET_ARCH}{$TARGET_VENDOR}/ ${D}/boot/grub
}
FILES_${PN}-doc = "${datadir}"
FILES_${PN} = "/boot /usr"