* create a /boot/grub symlink so stage_1.5 and stage_2 files can be found by bootloader
- close #863
--- /dev/null
+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"