From: Marcin Juszkiewicz Date: Fri, 28 Apr 2006 19:31:48 +0000 (+0000) Subject: * new grub version 0.97 built and tested X-Git-Tag: Release-2010-05/1~9453^2~1802^2~8 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c529526f2d51cc6c574ba52bd7e814319536fab3;p=openembedded.git * new grub version 0.97 built and tested * create a /boot/grub symlink so stage_1.5 and stage_2 files can be found by bootloader - close #863 --- diff --git a/packages/grub/grub_0.97.bb b/packages/grub/grub_0.97.bb new file mode 100644 index 0000000000..d0dddd0189 --- /dev/null +++ b/packages/grub/grub_0.97.bb @@ -0,0 +1,22 @@ +SECTION = "base" +DESCRIPTION = "grand unified bootloader" + +SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz" + +S = "${WORKDIR}/grub-${PV}" + +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} = "/boot /usr"