summaryrefslogtreecommitdiff
path: root/tools/yaffs2/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-02-19 17:17:16 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-02-19 17:17:16 +0000
commitb248acae9578400173524088965349753ceb5ce3 (patch)
treeb023452124308df69ebe1f29a91547d4bb3e6fb2 /tools/yaffs2/Makefile
parent71f2a68d525a616dc140f465e79f062c10362ba8 (diff)
downloadmtk-20170518-b248acae9578400173524088965349753ceb5ce3.zip
mtk-20170518-b248acae9578400173524088965349753ceb5ce3.tar.gz
mtk-20170518-b248acae9578400173524088965349753ceb5ce3.tar.bz2
add mkyaffs2image (based on android sources)
SVN-Revision: 14567
Diffstat (limited to 'tools/yaffs2/Makefile')
-rw-r--r--tools/yaffs2/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/tools/yaffs2/Makefile b/tools/yaffs2/Makefile
new file mode 100644
index 0000000..37da033
--- /dev/null
+++ b/tools/yaffs2/Makefile
@@ -0,0 +1,37 @@
+#
+# Copyright (C) 2008 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=yaffs2_android
+PKG_VERSION:=2008-12-18
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
+PKG_SOURCE_URL:=git://android.git.kernel.org/platform/external/yaffs2.git
+PKG_SOURCE_PROTO:=git
+PKG_SOURCE_SUBDIR:=$(PKG_NAME)
+PKG_SOURCE_VERSION:=d333fc232d7e5ae3370080d5d6f7d88ea9c6b3a1
+PKG_BUILD_DIR=$(BUILD_DIR_HOST)/$(PKG_NAME)
+
+include $(INCLUDE_DIR)/host-build.mk
+
+define Build/Compile
+ $(MAKE) -C $(PKG_BUILD_DIR)/yaffs2/utils \
+ CFLAGS="$(HOST_CFLAGS) -include endian.h" \
+ mkyaffs2image
+endef
+
+define Build/Install
+ $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
+ $(INSTALL_BIN) $(PKG_BUILD_DIR)/yaffs2/utils/mkyaffs2image $(STAGING_DIR_HOST)/bin/
+endef
+
+define Build/Clean
+ rm -f $(STAGING_DIR_HOST)/bin/mkyaffs2image
+endef
+
+$(eval $(call HostBuild))