summaryrefslogtreecommitdiff
path: root/package/cfgfs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/cfgfs/Makefile')
-rw-r--r--package/cfgfs/Makefile39
1 files changed, 39 insertions, 0 deletions
diff --git a/package/cfgfs/Makefile b/package/cfgfs/Makefile
new file mode 100644
index 000000000..4a521a1b4
--- /dev/null
+++ b/package/cfgfs/Makefile
@@ -0,0 +1,39 @@
+# $Id$
+#-
+# 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:= cfgfs
+PKG_VERSION:= 1.0.6
+PKG_RELEASE:= 2
+WRKDIST= ${WRKDIR}/${PKG_NAME}-${PKG_VERSION}
+NO_DISTFILES:= 1
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,CFGFS,cfgfs,${PKG_VERSION}-${PKG_RELEASE},${ARCH}))
+
+BUILD_STYLE:= auto
+
+do-configure:
+ mkdir -p ${WRKBUILD}
+ ${CP} ./src/* ${WRKBUILD}
+ ${TARGET_CC} ${TCPPFLAGS} ${TCFLAGS} -o ${WRKBUILD}/mtd ${WRKBUILD}/mtd.c
+
+do-install:
+ ${INSTALL_DIR} ${IDIR_CFGFS}/sbin
+ ${INSTALL_BIN} ${WRKBUILD}/fwcf.sh ${IDIR_CFGFS}/sbin/cfgfs
+ ${INSTALL_BIN} ${WRKBUILD}/fwcf.helper.out ${IDIR_CFGFS}/sbin/cfgfs.helper
+ifeq ($(ARCH),cris)
+ ${INSTALL_BIN} ${WRKBUILD}/mtd ${IDIR_CFGFS}/sbin/mtd
+ echo '#!/bin/sh' > ${IDIR_CFGFS}/sbin/cfgfs.write
+ echo 'mtd -F write - cfgfs' >> ${IDIR_CFGFS}/sbin/cfgfs.write
+else
+ echo '#!/bin/sh' > ${IDIR_CFGFS}/sbin/cfgfs.write
+ echo 'cat > /dev/sda2' >> ${IDIR_CFGFS}/sbin/cfgfs.write
+endif
+ chmod 755 ${IDIR_CFGFS}/sbin/cfgfs.write
+
+include ${TOPDIR}/mk/pkg-bottom.mk