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