diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-04-20 13:57:43 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-04-20 13:57:43 +0000 |
commit | 0ee950491197e8c528249d64ca3276b39bad0ddd (patch) | |
tree | d114f48ebb450250489833cdd8c4bf2ac61e5d9b /tools | |
parent | 3edc273a332b08773068e0e1c974ad40fe58b9b9 (diff) | |
download | upstream-0ee950491197e8c528249d64ca3276b39bad0ddd.tar.gz upstream-0ee950491197e8c528249d64ca3276b39bad0ddd.tar.bz2 upstream-0ee950491197e8c528249d64ca3276b39bad0ddd.zip |
all: replace genext2fs with make_ext4fs
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 45517
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 2 | ||||
-rw-r--r-- | tools/make-ext4fs/Makefile | 36 |
2 files changed, 37 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 7d4ab01ce5..2f516d2383 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -25,7 +25,7 @@ endif tools-$(BUILD_TOOLCHAIN) += gmp mpfr mpc libelf tools-y += m4 libtool autoconf automake flex bison pkg-config sed mklibs -tools-y += sstrip genext2fs e2fsprogs mtd-utils mkimage +tools-y += sstrip make-ext4fs e2fsprogs mtd-utils mkimage tools-y += firmware-utils patch-image patch quilt yaffs2 flock padjffs2 tools-y += mm-macros missing-macros xz cmake scons bc findutils gengetopt patchelf tools-$(CONFIG_TARGET_orion_generic) += wrt350nv2-builder upslug2 diff --git a/tools/make-ext4fs/Makefile b/tools/make-ext4fs/Makefile new file mode 100644 index 0000000000..5149ed4a14 --- /dev/null +++ b/tools/make-ext4fs/Makefile @@ -0,0 +1,36 @@ +# +# Copyright (C) 2015 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:=make-ext4fs +PKG_VERSION:=2015-04-08 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://git.openwrt.org/project/make_ext4fs.git +PKG_SOURCE_PROTO:=git +PKG_SOURCE_VERSION:=2f713da924fa20cf89c25f2d122b54b959b09f87 +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_MIRROR_MD5SUM:=c88f4f7c76e3142fc5ef12a723d9ef9b +PKG_CAT:=zcat + +HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/host-build.mk + +define Host/Compile + $(MAKE) -C $(HOST_BUILD_DIR) make_ext4fs +endef + +define Host/Install + $(INSTALL_BIN) $(HOST_BUILD_DIR)/make_ext4fs $(STAGING_DIR_HOST)/bin/ +endef + +define Host/Clean + rm -f $(STAGING_DIR_HOST)/bin/make_ext4fs +endef + +$(eval $(call HostBuild)) |