summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPhil Sutter <phil.sutter@viprinet.com>2013-12-09 15:47:08 +0100
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2013-12-15 10:18:50 +0100
commit1d41dfd46f6f45ed351a677fb22eea072c6530df (patch)
tree6b071fef11b7b5e179a5fcb5eb56a4a3e8e00582 /tools
parent07cff613bc08535341cc00ce4f8dcf4cca3489b3 (diff)
add tools/syslinux
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile2
-rw-r--r--tools/syslinux/Makefile37
2 files changed, 38 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index e78a7fe42..86eb09e22 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -3,7 +3,7 @@
include $(TOPDIR)/rules.mk
-TARGETS:=adk mkcrypt cpio mkimage genext2fs cdrtools
+TARGETS:=adk mkcrypt cpio mkimage genext2fs cdrtools syslinux
TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS))
TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
diff --git a/tools/syslinux/Makefile b/tools/syslinux/Makefile
new file mode 100644
index 000000000..2f44c301b
--- /dev/null
+++ b/tools/syslinux/Makefile
@@ -0,0 +1,37 @@
+# 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
+
+${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