From 21fd08a4e30b6f60ad8d787b845e63c939d39650 Mon Sep 17 00:00:00 2001 From: nynex Date: Tue, 12 May 2015 22:48:56 +0000 Subject: [PATCH] Added make-ext4fs --- trunk/tools/Makefile | 2 +- trunk/tools/make-ext4fs/Makefile | 36 ++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 trunk/tools/make-ext4fs/Makefile diff --git a/trunk/tools/Makefile b/trunk/tools/Makefile index b9fc47e2..7103f655 100644 --- a/trunk/tools/Makefile +++ b/trunk/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 ipkg-utils genext2fs e2fsprogs mtd-utils mkimage +tools-y += sstrip ipkg-utils make-ext4fs genext2fs e2fsprogs mtd-utils mkimage tools-y += firmware-utils patch-image patch quilt yaffs2 flock padjffs2 tools-y += mm-macros xorg-macros xfce-macros missing-macros xz cmake scons bc tools-y += findutils gengetopt diff --git a/trunk/tools/make-ext4fs/Makefile b/trunk/tools/make-ext4fs/Makefile new file mode 100644 index 00000000..62f7e276 --- /dev/null +++ b/trunk/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-05-01 + +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:=7c15bef6c732896d9ffb883fb1480fcd60c94a50 +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_MIRROR_MD5SUM:=d81eca37852cbf840108e1a8ad8fb22f +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)) -- 2.25.1