X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/9a6fba70723199825e144539e54a73450c506f8f..573fbdce9c91092bc68035e469ce6e98ae2eeadf:/package/mtd/Makefile?ds=inline

diff --git a/package/mtd/Makefile b/package/mtd/Makefile
index 53a2ee00e..b99e5ed4d 100644
--- a/package/mtd/Makefile
+++ b/package/mtd/Makefile
@@ -1,37 +1,49 @@
+# 
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
 # $Id$
 
 include $(TOPDIR)/rules.mk
+include $(INCLUDE_DIR)/kernel.mk
 
-PKG_NAME := mtd
-PKG_RELEASE := 3
+PKG_NAME:=mtd
+PKG_RELEASE:=8
 
-PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
+PKG_BUILD_DIR := $(KERNEL_BUILD_DIR)/$(PKG_NAME)
 
-include $(TOPDIR)/package/rules.mk
+include $(INCLUDE_DIR)/package.mk
 
-$(eval $(call PKG_template,MTD,$(PKG_NAME),$(PKG_RELEASE),$(ARCH)))
-$(eval $(call PKG_template,MTD_STATIC,mtd-static,$(PKG_RELEASE),$(ARCH)))
+define Package/mtd
+  SECTION:=utils
+  CATEGORY:=Base system
+  TITLE:=Update utility for trx firmware images
+endef
 
-$(PKG_BUILD_DIR)/.prepared:
+define Package/mtd/description
+ This package contains an utility useful to upgrade from other firmware or 
+ older OpenWrt releases.
+endef
+
+define Build/Prepare
 	mkdir -p $(PKG_BUILD_DIR)
-	touch $@
-
-$(PKG_BUILD_DIR)/.configured:
-	touch $@
-
-$(PKG_BUILD_DIR)/.built:
-	$(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/mtd mtd.c
-	$(TARGET_CC) -static $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/mtd-static mtd.c
-	touch $@
-
-$(IPKG_MTD): 
-	install -d -m0755 $(IDIR_MTD)/sbin
-	install -m0755 $(PKG_BUILD_DIR)/mtd $(IDIR_MTD)/sbin
-	$(RSTRIP) $(IDIR_MTD)/sbin/*
-	$(IPKG_BUILD) $(IDIR_MTD) $(PACKAGE_DIR)
-
-$(IPKG_MTD_STATIC): 
-	install -d -m0755 $(IDIR_MTD_STATIC)/sbin
-	install -m0755 $(PKG_BUILD_DIR)/mtd-static $(IDIR_MTD_STATIC)/sbin
-	$(RSTRIP) $(IDIR_MTD_STATIC)/sbin/*
-	$(IPKG_BUILD) $(IDIR_MTD_STATIC) $(PACKAGE_DIR)
+	$(CP) ./src/* $(PKG_BUILD_DIR)/
+endef
+
+target=$(firstword $(subst -, ,$(BOARD)))
+
+define Build/Compile
+	$(MAKE) -C $(PKG_BUILD_DIR) \
+		$(TARGET_CONFIGURE_OPTS) \
+		TARGET=$(target) \
+		CFLAGS="$(TARGET_CFLAGS) -Dtarget_$(target)=1 -Wall"
+endef
+
+define Package/mtd/install
+	$(INSTALL_DIR) $(1)/sbin
+	$(INSTALL_BIN) $(PKG_BUILD_DIR)/mtd $(1)/sbin/
+endef
+
+$(eval $(call BuildPackage,mtd))