mtd-utils: add PKG_CPE_ID
[openwrt/staging/aparcar.git] / package / utils / mtd-utils / Makefile
1 #
2 # Copyright (C) 2009-2014 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
10 PKG_NAME:=mtd-utils
11 PKG_VERSION:=2.1.4
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=https://infraroot.at/pub/mtd/
16 PKG_HASH:=2c6711d15d282c47cb3867b6857340597e26d332c238465134c602e5eef71b99
17
18 PKG_INSTALL:=1
19 PKG_FIXUP:=autoreconf
20
21 PKG_FLAGS:=nonshared
22
23 PKG_BUILD_DEPENDS:=util-linux
24
25 PKG_LICENSE:=GPLv2
26 PKG_LICENSE_FILES:=
27 PKG_CPE_ID:=cpe:/a:mtd-utils_project:mtd-utils
28
29 PKG_MAINTAINER:=John Crispin <john@phrozen.org>
30
31 include $(INCLUDE_DIR)/package.mk
32
33 define Package/mtd-utils/Default
34 SECTION:=utils
35 CATEGORY:=Utilities
36 URL:=http://www.linux-mtd.infradead.org/
37 DEPENDS:=@NAND_SUPPORT
38 endef
39
40 define Package/ubi-utils
41 $(call Package/mtd-utils/Default)
42 TITLE:=Utilities for ubi info/debug
43 endef
44
45 define Package/ubi-utils/description
46 Utilities for manipulating memory technology devices.
47 endef
48
49 define Package/nand-utils
50 $(call Package/mtd-utils/Default)
51 TITLE:=Utilities for nand flash erase/read/write/test
52 endef
53
54 define Package/nand-utils/description
55 Utilities for NAND devices.
56 endef
57
58 MAKE_FLAGS += LDLIBS+="$(LIBGCC_S)"
59
60 CONFIGURE_ARGS += \
61 --disable-tests \
62 --without-crypto \
63 --without-xattr \
64 --without-zstd \
65 --without-lzo
66
67 TARGET_CFLAGS += -ffunction-sections -fdata-sections
68 TARGET_LDFLAGS += -Wl,--gc-sections
69
70 define Package/ubi-utils/install
71 $(INSTALL_DIR) $(1)/usr/sbin
72 $(INSTALL_BIN) \
73 $(PKG_INSTALL_DIR)/usr/sbin/{ubiattach,ubicrc32,ubiblock,ubidetach,ubiformat,ubimkvol} $(1)/usr/sbin/
74 $(INSTALL_BIN) \
75 $(PKG_INSTALL_DIR)/usr/sbin/{ubinfo,ubinize,ubirename,ubirmvol,ubirsvol,ubiupdatevol} $(1)/usr/sbin/
76 endef
77
78 define Package/nand-utils/install
79 $(INSTALL_DIR) $(1)/usr/sbin
80 $(INSTALL_BIN) \
81 $(PKG_INSTALL_DIR)/usr/sbin/{flash_erase,nanddump,nandwrite,nandtest,mtdinfo} $(1)/usr/sbin/
82 endef
83
84 $(eval $(call BuildPackage,ubi-utils))
85 $(eval $(call BuildPackage,nand-utils))