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 | 17edbdb9a6dccc28f0d2c4a34672ccf3d677bf85 (patch) | |
tree | 318da50bb9d43ddc4959bc1a774ea75c45585477 /tools | |
parent | d08f0c7353391ea04f07bc9a63a7446db0e38d85 (diff) | |
download | upstream-17edbdb9a6dccc28f0d2c4a34672ccf3d677bf85.tar.gz upstream-17edbdb9a6dccc28f0d2c4a34672ccf3d677bf85.tar.bz2 upstream-17edbdb9a6dccc28f0d2c4a34672ccf3d677bf85.zip |
all: replace genext2fs with make_ext4fs
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45517 3c298f89-4303-0410-b956-a3cf2f4a3e73
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)) |