b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame] | 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.2.1 |
| 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:=f7ae20b2eb79ee83441468f0b99d897024cd96ff853eea59106fb1952065c803 |
| 17 | |
| 18 | PKG_INSTALL:=1 |
| 19 | |
| 20 | PKG_FLAGS:=nonshared |
| 21 | PKG_BUILD_FLAGS:=gc-sections |
| 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 | --enable-tests \ |
| 62 | --without-crypto \ |
| 63 | --without-xattr \ |
| 64 | --without-zstd \ |
| 65 | --without-lzo \ |
| 66 | --without-zlib |
| 67 | |
| 68 | define Package/ubi-utils/install |
| 69 | $(INSTALL_DIR) $(1)/usr/sbin |
| 70 | $(INSTALL_BIN) \ |
| 71 | $(PKG_INSTALL_DIR)/usr/sbin/{ubiattach,ubicrc32,ubiblock,ubidetach,ubiformat,ubimkvol} $(1)/usr/sbin/ |
| 72 | $(INSTALL_BIN) \ |
| 73 | $(PKG_INSTALL_DIR)/usr/sbin/{ubinfo,ubinize,ubirename,ubirmvol,ubirsvol,ubiupdatevol} $(1)/usr/sbin/ |
| 74 | endef |
| 75 | |
| 76 | define Package/nand-utils/install |
| 77 | $(INSTALL_DIR) $(1)/usr/sbin |
| 78 | $(INSTALL_BIN) \ |
| 79 | $(PKG_INSTALL_DIR)/usr/sbin/{flash_erase,nanddump,nandwrite,nandtest,mtdinfo} \ |
| 80 | $(PKG_INSTALL_DIR)/usr/lib/mtd-utils/nandbiterrs $(1)/usr/sbin/ |
| 81 | endef |
| 82 | |
| 83 | $(eval $(call BuildPackage,ubi-utils)) |
| 84 | $(eval $(call BuildPackage,nand-utils)) |