3515ec51a6b9a507b67ba1c4ffe16c43e0df6708
[openwrt/openwrt.git] / package / system / mtd / Makefile
1 #
2 # Copyright (C) 2006-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=mtd
12 PKG_RELEASE:=20
13
14 PKG_BUILD_DIR := $(KERNEL_BUILD_DIR)/$(PKG_NAME)
15 STAMP_PREPARED := $(STAMP_PREPARED)_$(call confvar,CONFIG_MTD_REDBOOT_PARTS)
16
17 PKG_LICENSE:=GPL-2.0 GPL-2.0+
18 PKG_LICENSE_FILES:=
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/mtd
23 SECTION:=utils
24 CATEGORY:=Base system
25 DEPENDS:=+libubox
26 TITLE:=Update utility for trx firmware images
27 endef
28
29 define Package/mtd/description
30 This package contains an utility useful to upgrade from other firmware or
31 older OpenWrt releases.
32 endef
33
34 define Build/Prepare
35 mkdir -p $(PKG_BUILD_DIR)
36 $(CP) ./src/* $(PKG_BUILD_DIR)/
37 endef
38
39 target=$(firstword $(subst -, ,$(BOARD)))
40
41 MAKE_FLAGS += TARGET="$(target)"
42 TARGET_CFLAGS := $(TARGET_CFLAGS) -Dtarget_$(target)=1 -Wall
43
44 ifdef CONFIG_MTD_REDBOOT_PARTS
45 MAKE_FLAGS += FIS_SUPPORT=1
46 TARGET_CFLAGS += -DFIS_SUPPORT=1
47 endif
48
49 define Package/mtd/install
50 $(INSTALL_DIR) $(1)/sbin
51 $(INSTALL_BIN) $(PKG_BUILD_DIR)/mtd $(1)/sbin/
52 endef
53
54 $(eval $(call BuildPackage,mtd))