[source] nand-utile: add package
LEDE Commits
lede-commits at lists.infradead.org
Sat Jul 2 07:14:54 PDT 2016
blogic pushed a commit to source.git, branch master:
https://git.lede-project.org/?p=source.git;a=commitdiff;h=3fbadd624a02c96081d874207a3e225c5647e306
commit 3fbadd624a02c96081d874207a3e225c5647e306
Author: Sergey Sergeev <adron at yapic.net>
AuthorDate: Tue Jun 28 15:23:24 2016 +0300
nand-utile: add package
This package is a custom build(like ubi-utils) of mtd-utils from infradead.org
It is required to work with Mikrotik NAND based devices
Signed-off-by: Sergey Sergeev <adron at yapic.net>
---
package/utils/nand-utils/Makefile | 53 +++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/package/utils/nand-utils/Makefile b/package/utils/nand-utils/Makefile
new file mode 100644
index 0000000..08311e5
--- /dev/null
+++ b/package/utils/nand-utils/Makefile
@@ -0,0 +1,53 @@
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=nand-utils
+PKG_REV:=d9076259b7f2654599bdf3416ec8ce0ad3b22610
+PKG_VERSION:=1.5.2
+PKG_RELEASE:=1
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:=git://git.infradead.org/mtd-utils.git
+PKG_SOURCE_PROTO:=git
+PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
+PKG_SOURCE_VERSION:=$(PKG_REV)
+
+PKG_INSTALL:=1
+
+PKG_LICENSE:=GPLv2
+PKG_LICENSE_FILES:=
+
+PKG_MAINTAINER:=Sergey Sergeev <adron at yapic.net>
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/nand-utils
+ TITLE:=Utilities for nand flash read/write/test
+ SECTION:=utils
+ CATEGORY:=Utilities
+ URL:=http://www.linux-mtd.infradead.org/
+ DEPENDS:=@NAND_SUPPORT
+endef
+
+define Package/nand-utils/description
+ Utilities for NAND devices.
+endef
+
+MAKE_FLAGS += \
+ DESTDIR="$(PKG_INSTALL_DIR)" \
+ BUILDDIR="$(PKG_BUILD_DIR)" \
+ LDLIBS+="$(LIBGCC_S)" \
+ WITHOUT_XATTR=1 \
+ WITHOUT_LZO=1
+
+define Package/nand-utils/install
+ $(INSTALL_DIR) $(1)/usr/sbin
+ $(INSTALL_BIN) \
+ $(PKG_INSTALL_DIR)/usr/sbin/{nanddump,nandwrite,nandtest,mtdinfo} $(1)/usr/sbin/
+endef
+
+$(eval $(call BuildPackage,nand-utils))
More information about the lede-commits
mailing list