sync 8.09 with changes from trunk
[openwrt/svn-archive/archive.git] / package / mtd / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=mtd
13 PKG_RELEASE:=8
14
15 PKG_BUILD_DIR := $(KERNEL_BUILD_DIR)/$(PKG_NAME)
16
17 include $(INCLUDE_DIR)/package.mk
18
19 define Package/mtd
20 SECTION:=utils
21 CATEGORY:=Base system
22 TITLE:=Update utility for trx firmware images
23 endef
24
25 define Package/mtd/description
26 This package contains an utility useful to upgrade from other firmware or
27 older OpenWrt releases.
28 endef
29
30 define Build/Prepare
31 mkdir -p $(PKG_BUILD_DIR)
32 $(CP) ./src/* $(PKG_BUILD_DIR)/
33 endef
34
35 target=$(firstword $(subst -, ,$(BOARD)))
36
37 define Build/Compile
38 $(MAKE) -C $(PKG_BUILD_DIR) \
39 $(TARGET_CONFIGURE_OPTS) \
40 TARGET=$(target) \
41 CFLAGS="$(TARGET_CFLAGS) -Dtarget_$(target)=1 -Wall"
42 endef
43
44 define Package/mtd/install
45 $(INSTALL_DIR) $(1)/sbin
46 $(INSTALL_BIN) $(PKG_BUILD_DIR)/mtd $(1)/sbin/
47 endef
48
49 $(eval $(call BuildPackage,mtd))