2008-06-22 18:40:53 +00:00
|
|
|
#
|
2012-02-14 19:07:07 +00:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2010-02-26 22:45:39 +00:00
|
|
|
# Copyright 2010 Vertical Communications
|
2007-01-20 05:13:35 +00:00
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=e2fsprogs
|
2012-06-17 17:53:01 +00:00
|
|
|
PKG_VERSION:=1.42.4
|
2012-06-17 21:34:16 +00:00
|
|
|
PKG_MD5SUM:=b6e296f210d642361b7394437ff0f318
|
2012-04-28 19:54:54 +00:00
|
|
|
PKG_RELEASE:=1
|
2007-01-20 05:13:35 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/e2fsprogs
|
|
|
|
|
2012-04-28 19:54:54 +00:00
|
|
|
PKG_BUILD_DEPENDS:=util-linux
|
2010-07-24 21:39:27 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2007-01-20 05:13:35 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define Package/e2fsprogs/Default
|
|
|
|
URL:=http://e2fsprogs.sourceforge.net/
|
2009-07-05 13:57:59 +00:00
|
|
|
SUBMENU:=Filesystem
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
2007-01-20 05:13:35 +00:00
|
|
|
define Package/e2fsprogs
|
2007-09-07 08:34:51 +00:00
|
|
|
$(call Package/e2fsprogs/Default)
|
2007-01-20 05:13:35 +00:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2009-08-27 09:16:54 +00:00
|
|
|
TITLE:=Ext2/3/4 filesystem utilities
|
2012-06-11 00:56:45 +00:00
|
|
|
DEPENDS:=+libblkid +libuuid +libext2fs
|
2007-03-24 15:51:43 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define Package/e2fsprogs/description
|
2012-05-13 12:20:17 +00:00
|
|
|
This package contains essential ext2 filesystem utilities which consists of
|
2012-08-06 18:54:36 +00:00
|
|
|
e2fsck, mke2fs, tune2fs, and most of the other core ext2
|
2007-09-07 08:34:51 +00:00
|
|
|
filesystem utilities.
|
|
|
|
endef
|
|
|
|
|
2008-11-14 22:37:29 +00:00
|
|
|
define Package/libext2fs
|
|
|
|
$(call Package/e2fsprogs/Default)
|
2012-06-11 00:56:45 +00:00
|
|
|
DEPENDS:=+libcom_err
|
2008-11-14 22:37:29 +00:00
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2009-08-27 09:16:54 +00:00
|
|
|
TITLE:=ext2/3/4 filesystem library
|
2008-11-14 22:37:29 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libext2fs/description
|
2012-04-28 19:54:54 +00:00
|
|
|
libext2fs is a library which can access ext2, ext3 and ext4 filesystems.
|
2008-11-14 22:37:29 +00:00
|
|
|
endef
|
|
|
|
|
2011-07-05 12:40:56 +00:00
|
|
|
define Package/libcom_err
|
|
|
|
$(call Package/e2fsprogs/Default)
|
2012-06-11 00:56:45 +00:00
|
|
|
DEPENDS:=+libpthread
|
2011-07-05 12:40:56 +00:00
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=Common error description library
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libcom_err/description
|
2012-04-28 19:54:54 +00:00
|
|
|
libcom_err is a library providing common error descriptions
|
2011-07-05 12:40:56 +00:00
|
|
|
endef
|
|
|
|
|
2007-01-20 05:13:35 +00:00
|
|
|
define Package/tune2fs
|
2007-09-07 08:34:51 +00:00
|
|
|
$(call Package/e2fsprogs)
|
2007-01-20 05:13:35 +00:00
|
|
|
TITLE:=Ext2 Filesystem tune utility
|
2009-12-21 00:59:14 +00:00
|
|
|
DEPENDS:= +e2fsprogs
|
2007-01-20 05:13:35 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/resize2fs
|
2007-09-07 08:34:51 +00:00
|
|
|
$(call Package/e2fsprogs)
|
2007-01-20 05:13:35 +00:00
|
|
|
TITLE:=Ext2 Filesystem resize utility
|
2009-12-21 00:59:14 +00:00
|
|
|
DEPENDS:= +e2fsprogs
|
2007-01-20 05:13:35 +00:00
|
|
|
endef
|
|
|
|
|
2008-05-11 10:33:34 +00:00
|
|
|
define Package/badblocks
|
|
|
|
$(call Package/e2fsprogs)
|
|
|
|
TITLE:=Ext2 Filesystem badblocks utility
|
2009-12-21 00:59:14 +00:00
|
|
|
DEPENDS:= +e2fsprogs
|
2008-05-11 10:33:34 +00:00
|
|
|
endef
|
|
|
|
|
2009-11-26 16:05:20 +00:00
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
|
2007-02-25 23:34:57 +00:00
|
|
|
CONFIGURE_ARGS += \
|
2012-04-28 19:54:54 +00:00
|
|
|
--enable-elf-shlibs \
|
2012-05-13 12:20:17 +00:00
|
|
|
--disable-libuuid \
|
|
|
|
--disable-libblkid \
|
|
|
|
--disable-uuidd \
|
2012-04-28 19:54:54 +00:00
|
|
|
--disable-tls \
|
|
|
|
--disable-nls \
|
2012-02-14 19:07:07 +00:00
|
|
|
--disable-rpath
|
2007-01-20 05:13:35 +00:00
|
|
|
|
2007-07-13 10:42:20 +00:00
|
|
|
define Build/Prepare
|
|
|
|
$(call Build/Prepare/Default)
|
|
|
|
$(CP) $(SCRIPT_DIR)/config.{guess,sub} $(PKG_BUILD_DIR)/config/
|
|
|
|
endef
|
|
|
|
|
2007-01-20 05:13:35 +00:00
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/util \
|
|
|
|
BUILDCC="$(HOSTCC)" \
|
|
|
|
CFLAGS="" \
|
|
|
|
CPPFLAGS="" \
|
|
|
|
LDFLAGS="" \
|
|
|
|
subst
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
BUILDCC="$(HOSTCC)" \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
2010-07-24 21:39:27 +00:00
|
|
|
all
|
2007-01-20 05:13:35 +00:00
|
|
|
endef
|
|
|
|
|
2007-03-24 15:51:43 +00:00
|
|
|
define Build/InstallDev
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
BUILDCC="$(HOSTCC)" \
|
2007-09-28 01:45:11 +00:00
|
|
|
DESTDIR="$(1)" \
|
2007-03-24 15:51:43 +00:00
|
|
|
install-libs
|
2008-11-14 22:37:29 +00:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/lib/ext2fs \
|
|
|
|
BUILDCC="$(HOSTCC)" \
|
|
|
|
DESTDIR="$(1)" \
|
|
|
|
install
|
2007-08-25 15:52:31 +00:00
|
|
|
endef
|
|
|
|
|
2007-01-20 05:13:35 +00:00
|
|
|
define Package/e2fsprogs/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 18:53:06 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/e2fsck $(1)/usr/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mke2fs $(1)/usr/sbin/
|
2007-01-20 05:13:35 +00:00
|
|
|
ln -sf mke2fs $(1)/usr/sbin/mkfs.ext2
|
|
|
|
ln -sf mke2fs $(1)/usr/sbin/mkfs.ext3
|
2009-08-27 09:16:54 +00:00
|
|
|
ln -sf mke2fs $(1)/usr/sbin/mkfs.ext4
|
2007-01-20 05:13:35 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2011-07-05 12:40:56 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libe2p.so.* $(1)/usr/lib/
|
2009-01-31 12:55:55 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
2010-02-26 22:45:39 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/functions/fsck
|
|
|
|
$(INSTALL_DATA) ./files/e2fsck.sh $(1)/lib/functions/fsck/
|
2010-06-30 23:09:13 +00:00
|
|
|
$(INSTALL_DATA) ./files/e2fsck.conf $(1)/etc/e2fsck.conf
|
2007-03-24 15:51:43 +00:00
|
|
|
endef
|
|
|
|
|
2011-07-05 12:40:56 +00:00
|
|
|
define Package/libcom_err/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libcom_err.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
2008-11-14 22:37:29 +00:00
|
|
|
define Package/libext2fs/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-12-21 00:59:14 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libext2fs.so.* $(1)/usr/lib/
|
2008-11-14 22:37:29 +00:00
|
|
|
endef
|
|
|
|
|
2007-01-20 05:13:35 +00:00
|
|
|
define Package/tune2fs/install
|
2007-01-20 13:22:40 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 18:53:06 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/tune2fs $(1)/usr/sbin/
|
2007-01-20 05:13:35 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/resize2fs/install
|
2007-01-20 13:22:40 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 18:53:06 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/resize2fs $(1)/usr/sbin/
|
2007-01-20 05:13:35 +00:00
|
|
|
endef
|
|
|
|
|
2008-05-11 10:33:34 +00:00
|
|
|
define Package/badblocks/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/badblocks $(1)/usr/sbin/
|
|
|
|
endef
|
|
|
|
|
2007-01-20 05:13:35 +00:00
|
|
|
$(eval $(call BuildPackage,e2fsprogs))
|
2008-11-14 22:37:29 +00:00
|
|
|
$(eval $(call BuildPackage,libext2fs))
|
2011-07-05 12:40:56 +00:00
|
|
|
$(eval $(call BuildPackage,libcom_err))
|
2007-01-20 05:13:35 +00:00
|
|
|
$(eval $(call BuildPackage,tune2fs))
|
|
|
|
$(eval $(call BuildPackage,resize2fs))
|
2008-05-11 10:33:34 +00:00
|
|
|
$(eval $(call BuildPackage,badblocks))
|