summaryrefslogtreecommitdiff
path: root/tools/syslinux
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-12-20 18:41:11 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2013-12-20 18:41:11 +0100
commit272b9fb572a6b1f585cf6f4f4150b07f1c1537bf (patch)
tree5ede8c935478f6db39bf8efc7ea14919e58d6aa1 /tools/syslinux
parentbde68f551d953927d476dc4f5ccd1c89ca001539 (diff)
parented95e17c2e88caff425eca534a794ea0c489fc5c (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'tools/syslinux')
-rw-r--r--tools/syslinux/Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/tools/syslinux/Makefile b/tools/syslinux/Makefile
new file mode 100644
index 000000000..1ac6ef672
--- /dev/null
+++ b/tools/syslinux/Makefile
@@ -0,0 +1,38 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= syslinux
+PKG_VERSION:= 6.02
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 086ac1c569d226a5e2ae3d605de09a1d
+PKG_SITES:= http://www.kernel.org/pub/linux/utils/boot/syslinux/
+
+include ../rules.mk
+WRKINST:= ${WRKBUILD}/openadk_installroot
+
+install: ${TOOLS_DIR}/extlinux ${STAGING_HOST_DIR}/usr/share/syslinux/.installed
+
+$(WRKBUILD)/.compiled: ${WRKDIST}/.prepared
+ #(cd ${WRKBUILD}; ./configure)
+ ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}' bios installer
+ touch $@
+
+$(WRKBUILD)/.installed: ${WRKBUILD}/.compiled
+ mkdir -p ${WRKINST}
+ ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}' \
+ INSTALLROOT='${WRKINST}' \
+ bios install
+ touch $@
+
+${TOOLS_DIR}/extlinux: $(WRKBUILD)/.installed
+ $(INSTALL_BIN) ${WRKINST}/sbin/extlinux \
+ ${TOOLS_DIR}
+
+${STAGING_HOST_DIR}/usr/share/syslinux/.installed: ${WRKBUILD}/.installed
+ mkdir -p ${STAGING_HOST_DIR}/usr/share
+ ${CP} ${WRKINST}/usr/share/syslinux ${STAGING_HOST_DIR}/usr/share
+ touch ${STAGING_HOST_DIR}/usr/share/syslinux/.installed
+
+include $(TOPDIR)/mk/tools.mk