From c529526f2d51cc6c574ba52bd7e814319536fab3 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Fri, 28 Apr 2006 19:31:48 +0000 Subject: [PATCH] * 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 --- packages/grub/grub_0.97.bb | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 packages/grub/grub_0.97.bb 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" -- 2.39.5