aboutsummaryrefslogtreecommitdiffstats
path: root/tools/yaffs2/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2017-01-08 19:00:24 +0100
committerFelix Fietkau <nbd@nbd.name>2017-01-09 16:40:12 +0100
commit828a471e8dccf23d8da3ff0719e83b69a1237b51 (patch)
treee84f2f84df6af937026aeb2c8cb229496fbf69c0 /tools/yaffs2/Makefile
parenta9232ba1ed461adf8ac610edf95ea6ba9963ea34 (diff)
downloadupstream-828a471e8dccf23d8da3ff0719e83b69a1237b51.tar.gz
upstream-828a471e8dccf23d8da3ff0719e83b69a1237b51.tar.bz2
upstream-828a471e8dccf23d8da3ff0719e83b69a1237b51.zip
tools: remove obsolete yaffs tool
This was added a long time ago and was apparently never used Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'tools/yaffs2/Makefile')
-rw-r--r--tools/yaffs2/Makefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/tools/yaffs2/Makefile b/tools/yaffs2/Makefile
deleted file mode 100644
index 788adbd6a6..0000000000
--- a/tools/yaffs2/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-#
-# Copyright (C) 2008-2012 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_SOURCE_URL:=https://android.googlesource.com/platform/external/yaffs2
-PKG_SOURCE_PROTO:=git
-PKG_SOURCE_DATE:=2008-12-18
-PKG_SOURCE_VERSION:=d333fc232d7e5ae3370080d5d6f7d88ea9c6b3a1
-PKG_MIRROR_HASH:=232ceeed180fb1b7c1c28d12e756c253246f2b5e8cd4c7efa6d884c5c18baf90
-
-include $(INCLUDE_DIR)/host-build.mk
-
-define Host/Compile
- $(MAKE) -C $(HOST_BUILD_DIR)/yaffs2/utils \
- CC="$(HOSTCC)" \
- CFLAGS="$(HOST_CFLAGS) -include endian.h" \
- mkyaffs2image
-endef
-
-define Host/Install
- $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
- $(INSTALL_BIN) $(HOST_BUILD_DIR)/yaffs2/utils/mkyaffs2image $(STAGING_DIR_HOST)/bin/
-endef
-
-define Host/Clean
- rm -f $(STAGING_DIR_HOST)/bin/mkyaffs2image
-endef
-
-$(eval $(call HostBuild))