2009-09-10 10:07:04 +00:00
|
|
|
#
|
2010-09-03 18:14:32 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-07-21 00:27:08 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
2006-10-24 18:11:33 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2005-07-21 00:27:08 +00:00
|
|
|
|
2006-06-18 18:03:31 +00:00
|
|
|
PKG_NAME:=mtd
|
2011-11-09 21:16:36 +00:00
|
|
|
PKG_RELEASE:=17
|
2005-07-21 00:27:08 +00:00
|
|
|
|
2006-10-24 18:11:33 +00:00
|
|
|
PKG_BUILD_DIR := $(KERNEL_BUILD_DIR)/$(PKG_NAME)
|
2009-09-21 09:58:41 +00:00
|
|
|
STAMP_PREPARED := $(STAMP_PREPARED)_$(call confvar,CONFIG_MTD_REDBOOT_PARTS)
|
2005-07-21 00:27:08 +00:00
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-07-21 00:27:08 +00:00
|
|
|
|
2006-05-10 19:06:22 +00:00
|
|
|
define Package/mtd
|
2006-09-23 13:45:49 +00:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Base system
|
|
|
|
TITLE:=Update utility for trx firmware images
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/mtd/description
|
|
|
|
This package contains an utility useful to upgrade from other firmware or
|
|
|
|
older OpenWrt releases.
|
2006-05-10 19:06:22 +00:00
|
|
|
endef
|
|
|
|
|
2006-06-18 18:03:31 +00:00
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
|
|
endef
|
|
|
|
|
2008-09-23 09:23:58 +00:00
|
|
|
target=$(firstword $(subst -, ,$(BOARD)))
|
|
|
|
|
2009-09-21 09:58:41 +00:00
|
|
|
MAKE_FLAGS += TARGET="$(target)"
|
|
|
|
TARGET_CFLAGS += -Dtarget_$(target)=1 -Wall
|
|
|
|
|
|
|
|
ifdef CONFIG_MTD_REDBOOT_PARTS
|
|
|
|
MAKE_FLAGS += FIS_SUPPORT=1
|
|
|
|
TARGET_CFLAGS += -DFIS_SUPPORT=1
|
|
|
|
endif
|
2006-10-24 18:11:33 +00:00
|
|
|
|
2006-05-10 19:06:22 +00:00
|
|
|
define Package/mtd/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/mtd $(1)/sbin/
|
2006-05-10 19:06:22 +00:00
|
|
|
endef
|
2006-05-31 13:00:11 +00:00
|
|
|
|
|
|
|
$(eval $(call BuildPackage,mtd))
|