summaryrefslogtreecommitdiff
path: root/package/grub
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-07-28 13:25:35 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-07-28 13:25:58 +0200
commit577a317117f2e892312a548d8abb34df294698d0 (patch)
tree9218a9e6ff756cac37045b03fa3717e4c898dde3 /package/grub
parentc43854da4d87c25f54cce20ad188a6877dc15f71 (diff)
add support for pcengines-apu booting from ssd
Diffstat (limited to 'package/grub')
-rw-r--r--package/grub/Makefile14
1 files changed, 12 insertions, 2 deletions
diff --git a/package/grub/Makefile b/package/grub/Makefile
index da6863952..f360539ac 100644
--- a/package/grub/Makefile
+++ b/package/grub/Makefile
@@ -5,7 +5,7 @@ include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= grub
PKG_VERSION:= 2.00
-PKG_RELEASE:= 5
+PKG_RELEASE:= 6
PKG_MD5SUM:= a1043102fbc7bcedbf53e7ee3d17ab91
PKG_DESCR:= multiboot boot loader
PKG_SECTION:= base/boot
@@ -59,12 +59,22 @@ grub-install:
$(IDIR_GRUB)/boot/grub/core.img
grub-tools-install:
- ${INSTALL_DIR} $(IDIR_GRUB_TOOLS)/usr/{sbin,bin}
+ ${INSTALL_DIR} $(IDIR_GRUB_TOOLS)/usr/{sbin,bin,share,lib}
${INSTALL_BIN} ${WRKINST}/usr/sbin/grub-install \
$(IDIR_GRUB_TOOLS)/usr/sbin
+ ${INSTALL_BIN} ${WRKINST}/usr/sbin/grub-probe \
+ $(IDIR_GRUB_TOOLS)/usr/sbin
${INSTALL_BIN} ${WRKINST}/usr/sbin/grub-bios-setup \
$(IDIR_GRUB_TOOLS)/usr/sbin
+ ${INSTALL_BIN} ${WRKINST}/usr/bin/grub-editenv \
+ $(IDIR_GRUB_TOOLS)/usr/bin
+ ${INSTALL_BIN} ${WRKINST}/usr/bin/grub-mkrelpath \
+ $(IDIR_GRUB_TOOLS)/usr/bin
${INSTALL_BIN} ${WRKINST}/usr/bin/grub-mkimage \
$(IDIR_GRUB_TOOLS)/usr/bin
+ ${CP} ${WRKINST}/usr/lib/grub \
+ $(IDIR_GRUB_TOOLS)/usr/lib
+ ${CP} ${WRKINST}/usr/share/grub \
+ $(IDIR_GRUB_TOOLS)/usr/share
include ${ADK_TOPDIR}/mk/pkg-bottom.mk