diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-02-19 17:17:16 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-02-19 17:17:16 +0000 |
commit | a60f2af2c71c6edee3e1994379e0b8c82b90db0f (patch) | |
tree | 7b17961352837e6b4018e96dca988eb3fa1ce502 /tools/yaffs2/Makefile | |
parent | fa4b71aceb89e20146e9862b8b863bbce14ad232 (diff) |
add mkyaffs2image (based on android sources)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14567 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/yaffs2/Makefile')
-rw-r--r-- | tools/yaffs2/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tools/yaffs2/Makefile b/tools/yaffs2/Makefile new file mode 100644 index 0000000000..37da033d76 --- /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)) |