mirror of https://github.com/hak5/openwrt-owl.git
ubi-utils: cleanup the package
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 41124owl
parent
18e8ae6b2c
commit
7d306dd9f0
|
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
||||||
PKG_NAME:=mtd-utils
|
PKG_NAME:=mtd-utils
|
||||||
PKG_REV:=7d2839b8dede3ae368780364b4a07473d2303219
|
PKG_REV:=7d2839b8dede3ae368780364b4a07473d2303219
|
||||||
PKG_VERSION:=1.5.1
|
PKG_VERSION:=1.5.1
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=git://git.infradead.org/mtd-utils.git
|
PKG_SOURCE_URL:=git://git.infradead.org/mtd-utils.git
|
||||||
|
@ -30,48 +30,18 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/ubi-utils/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
FILES:= \
|
|
||||||
ubiattach \
|
|
||||||
ubicrc32 \
|
|
||||||
ubiblock \
|
|
||||||
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
|
define Package/ubi-utils
|
||||||
TITLE:=Utilities for ubi info/debug
|
TITLE:=Utilities for ubi info/debug
|
||||||
SECTION:=utils
|
SECTION:=utils
|
||||||
CATEGORY:=Utilities
|
CATEGORY:=Utilities
|
||||||
URL:=http://www.linux-mtd.infradead.org/
|
URL:=http://www.linux-mtd.infradead.org/
|
||||||
MENU:=1
|
DEPENDS:=@NAND_SUPPORT
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/ubi-utils/description
|
define Package/ubi-utils/description
|
||||||
Utilities for manipulating memory technology devices.
|
Utilities for manipulating memory technology devices.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/ubi-utils/install
|
|
||||||
true
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(foreach file,$(FILES),$(eval $(call PartGen,$(file))))
|
|
||||||
|
|
||||||
MAKE_FLAGS += \
|
MAKE_FLAGS += \
|
||||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
BUILDDIR="$(PKG_BUILD_DIR)" \
|
BUILDDIR="$(PKG_BUILD_DIR)" \
|
||||||
|
@ -79,16 +49,13 @@ MAKE_FLAGS += \
|
||||||
WITHOUT_XATTR=1 \
|
WITHOUT_XATTR=1 \
|
||||||
WITHOUT_LZO=1
|
WITHOUT_LZO=1
|
||||||
|
|
||||||
define PartInstall
|
define Package/ubi-utils/install
|
||||||
define Package/ubi-utils-$(subst _,-,$(firstword $(subst :, ,$(1))))/install
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(INSTALL_DIR) $$(1)/usr/sbin
|
|
||||||
$(INSTALL_BIN) \
|
$(INSTALL_BIN) \
|
||||||
$(PKG_INSTALL_DIR)/usr/sbin/$(firstword $(subst :, ,$(1))) \
|
$(PKG_INSTALL_DIR)/usr/sbin/{ubiattach,ubicrc32,ubiblock,ubidetach,ubiformat,ubimkvol} $(1)/usr/sbin/
|
||||||
$$(1)/usr/sbin/
|
$(INSTALL_BIN) \
|
||||||
endef
|
$(PKG_INSTALL_DIR)/usr/sbin/{ubinfo,ubinize,ubirename,ubirmvol,ubirsvol,ubiupdatevol} $(1)/usr/sbin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(foreach file,$(FILES),$(eval $(call PartInstall,$(file))))
|
|
||||||
|
|
||||||
$(eval $(call BuildPackage,ubi-utils))
|
$(eval $(call BuildPackage,ubi-utils))
|
||||||
$(foreach file,$(FILES),$(eval $(call BuildPackage,ubi-utils-$(subst _,-,$(firstword $(subst :, ,$(file)))))))
|
|
||||||
|
|
Loading…
Reference in New Issue