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