2014-04-03 14:26:42 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009-2013 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=mtd-utils
|
2014-06-06 09:34:47 +00:00
|
|
|
PKG_REV:=7d2839b8dede3ae368780364b4a07473d2303219
|
|
|
|
PKG_VERSION:=1.5.1
|
|
|
|
PKG_RELEASE:=1
|
2014-04-03 14:26:42 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2014-04-05 16:34:30 +00:00
|
|
|
PKG_SOURCE_URL:=git://git.infradead.org/mtd-utils.git
|
2014-04-03 14:26:42 +00:00
|
|
|
PKG_SOURCE_PROTO:=git
|
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_SOURCE_VERSION:=$(PKG_REV)
|
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DEPENDS:=util-linux liblzo
|
|
|
|
|
|
|
|
PKG_LICENSE:=GPLv2
|
|
|
|
PKG_LICENSE_FILES:=
|
|
|
|
|
|
|
|
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
|
2014-05-11 22:42:10 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/ubi-utils/$(PKG_NAME)-$(PKG_VERSION)
|
2014-04-03 14:26:42 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
FILES:= \
|
|
|
|
ubiattach \
|
|
|
|
ubicrc32 \
|
2014-06-06 09:34:47 +00:00
|
|
|
ubiblock \
|
2014-04-03 14:26:42 +00:00
|
|
|
ubidetach \
|
|
|
|
ubiformat \
|
|
|
|
ubimkvol \
|
|
|
|
ubinfo \
|
|
|
|
ubinize \
|
|
|
|
ubirename \
|
|
|
|
ubirmvol \
|
|
|
|
ubirsvol \
|
|
|
|
ubiupdatevol
|
|
|
|
|
|
|
|
define PartGen
|
|
|
|
define Package/ubi-utils-$(subst _,-,$(firstword $(subst :, ,$(1))))
|
|
|
|
TITLE:=$(firstword $(subst :, ,$(1))) package from ubi-utils
|
|
|
|
URL:=http://www.linux-mtd.infradead.org/
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=ubi-utils $(wordlist 2,$(words $(subst :, ,$(1))),$(subst :, ,$(1)))
|
|
|
|
endef
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ubi-utils
|
|
|
|
TITLE:=Utilities for ubi info/debug
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
URL:=http://www.linux-mtd.infradead.org/
|
|
|
|
MENU:=1
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ubi-utils/description
|
|
|
|
Utilities for manipulating memory technology devices.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ubi-utils/install
|
|
|
|
true
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach file,$(FILES),$(eval $(call PartGen,$(file))))
|
|
|
|
|
|
|
|
MAKE_FLAGS += \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
BUILDDIR="$(PKG_BUILD_DIR)" \
|
|
|
|
LDLIBS+="$(LIBGCC_S)" \
|
|
|
|
WITHOUT_XATTR=1 \
|
|
|
|
WITHOUT_LZO=1
|
|
|
|
|
|
|
|
define PartInstall
|
|
|
|
define Package/ubi-utils-$(subst _,-,$(firstword $(subst :, ,$(1))))/install
|
|
|
|
$(INSTALL_DIR) $$(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/sbin/$(firstword $(subst :, ,$(1))) \
|
|
|
|
$$(1)/usr/sbin/
|
|
|
|
endef
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach file,$(FILES),$(eval $(call PartInstall,$(file))))
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ubi-utils))
|
|
|
|
$(foreach file,$(FILES),$(eval $(call BuildPackage,ubi-utils-$(subst _,-,$(firstword $(subst :, ,$(file)))))))
|