diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-17 14:55:37 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-17 14:55:37 +0100 |
commit | 3cd4a03f27da57d2317c5b285cf8ad1990bcdac2 (patch) | |
tree | 2a09e93c07595459a8ac8c637d8126eddcb85cb4 /tools | |
parent | 86534f8753b2dcac52f1ceb3bfc01ccca6697f80 (diff) | |
parent | 2f3dbff3a8283fd1307ec71b6e4d5c70e80f56dc (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 3 | ||||
-rw-r--r-- | tools/cdrtools/Makefile | 25 | ||||
-rw-r--r-- | tools/syslinux/Makefile | 38 |
3 files changed, 66 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile index ee096db61..4a5f1ec92 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -4,6 +4,9 @@ include $(TOPDIR)/rules.mk TARGETS:=adk mkcrypt cpio mkimage genext2fs +ifeq ($(ADK_TARGET_ROOTFS_ISO),y) +TARGETS+=cdrtools syslinux +endif TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS)) TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS)) diff --git a/tools/cdrtools/Makefile b/tools/cdrtools/Makefile new file mode 100644 index 000000000..965e3553d --- /dev/null +++ b/tools/cdrtools/Makefile @@ -0,0 +1,25 @@ +# 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:= cdrtools +PKG_VERSION:= 3.00 +PKG_RELEASE:= 1 +PKG_MD5SUM:= bb21cefefcfbb76cf249120e8978ffdd +PKG_SITES:= ftp://ftp.berlios.de/pub/cdrecord/ + +include ../rules.mk + +install: ${TOOLS_DIR}/mkisofs + +$(WRKBUILD)/.compiled: ${WRKDIST}/.prepared + #(cd ${WRKBUILD}; ./configure) + ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}' + touch $@ + +${TOOLS_DIR}/mkisofs: $(WRKBUILD)/.compiled + $(INSTALL_BIN) $(WRKBUILD)/mkisofs/OBJ/*/mkisofs \ + ${TOOLS_DIR} + +include $(TOPDIR)/mk/tools.mk 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 |