2008-06-22 21:40:53 +03:00
|
|
|
#
|
2008-05-11 13:33:34 +03:00
|
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
2007-01-20 07:13:35 +02: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
|
2009-11-24 01:53:23 +02:00
|
|
|
PKG_VERSION:=1.40.11
|
|
|
|
PKG_MD5SUM:=004cea70d724fdc7f1a952dffe4c9db8
|
2009-04-28 01:19:17 +03:00
|
|
|
PKG_RELEASE:=1
|
2007-01-20 07:13:35 +02:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/e2fsprogs
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define Package/e2fsprogs/Default
|
|
|
|
URL:=http://e2fsprogs.sourceforge.net/
|
2009-07-05 16:57:59 +03:00
|
|
|
SUBMENU:=Filesystem
|
2007-09-07 11:34:51 +03:00
|
|
|
endef
|
|
|
|
|
2007-01-20 07:13:35 +02:00
|
|
|
define Package/e2fsprogs
|
2007-09-07 11:34:51 +03:00
|
|
|
$(call Package/e2fsprogs/Default)
|
2007-01-20 07:13:35 +02:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2009-08-27 12:16:54 +03:00
|
|
|
TITLE:=Ext2/3/4 filesystem utilities
|
2009-05-10 01:41:04 +03:00
|
|
|
DEPENDS:=+libblkid +libuuid +libext2fs +libpthread
|
2007-03-24 17:51:43 +02:00
|
|
|
endef
|
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define Package/e2fsprogs/description
|
|
|
|
This package contains essential ext2 filesystem utilities which consists of
|
|
|
|
e2fsck, mke2fs, debugfs, dumpe2fs, tune2fs, and most of the other core ext2
|
|
|
|
filesystem utilities.
|
|
|
|
endef
|
|
|
|
|
2007-03-24 17:51:43 +02:00
|
|
|
define Package/libuuid
|
2007-09-07 11:34:51 +03:00
|
|
|
$(call Package/e2fsprogs/Default)
|
2007-03-24 17:51:43 +02:00
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=DCE compatible Universally Unique Identifier library
|
2007-09-07 11:34:51 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libuuid/description
|
|
|
|
Library for generating DCE compatible Universally Unique Identifiers.
|
2007-01-20 07:13:35 +02:00
|
|
|
endef
|
|
|
|
|
2008-02-02 03:29:32 +02:00
|
|
|
define Package/uuidgen
|
|
|
|
$(call Package/e2fsprogs)
|
2009-12-21 02:59:14 +02:00
|
|
|
DEPENDS:=+libuuid
|
2008-02-02 03:29:32 +02:00
|
|
|
TITLE:=Command line utility to create a new UUID value
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uuidgen/description
|
|
|
|
uuidgen program creates a new universally unique identifier (UUID)
|
|
|
|
using the libuuid library. The new UUID can reasonably be considered
|
|
|
|
unique among all UUIDs created on the local system, and among UUIDs
|
|
|
|
created on other systems in the past and in the future.
|
|
|
|
endef
|
|
|
|
|
2007-06-13 20:20:36 +03:00
|
|
|
define Package/libblkid
|
2007-09-07 11:34:51 +03:00
|
|
|
$(call Package/e2fsprogs/Default)
|
2007-06-13 20:20:36 +03:00
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=block device id library
|
2007-09-07 11:34:51 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libblkid/description
|
|
|
|
The blkid library which allows system programs like fsck and mount to
|
|
|
|
quickly and easily find block devices by filesystem UUID and LABEL.
|
2007-06-13 20:20:36 +03:00
|
|
|
endef
|
|
|
|
|
2008-11-15 00:37:29 +02:00
|
|
|
define Package/libext2fs
|
|
|
|
$(call Package/e2fsprogs/Default)
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2009-08-27 12:16:54 +03:00
|
|
|
TITLE:=ext2/3/4 filesystem library
|
2008-11-15 00:37:29 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libext2fs/description
|
2009-08-27 12:16:54 +03:00
|
|
|
libext2fs is a library which can access ext2, ext3 and ext4 filesystems.
|
2008-11-15 00:37:29 +02:00
|
|
|
endef
|
|
|
|
|
2007-01-20 07:13:35 +02:00
|
|
|
define Package/tune2fs
|
2007-09-07 11:34:51 +03:00
|
|
|
$(call Package/e2fsprogs)
|
2007-01-20 07:13:35 +02:00
|
|
|
TITLE:=Ext2 Filesystem tune utility
|
2009-12-21 02:59:14 +02:00
|
|
|
DEPENDS:= +e2fsprogs
|
2007-01-20 07:13:35 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/resize2fs
|
2007-09-07 11:34:51 +03:00
|
|
|
$(call Package/e2fsprogs)
|
2007-01-20 07:13:35 +02:00
|
|
|
TITLE:=Ext2 Filesystem resize utility
|
2009-12-21 02:59:14 +02:00
|
|
|
DEPENDS:= +e2fsprogs
|
2007-01-20 07:13:35 +02:00
|
|
|
endef
|
|
|
|
|
2008-05-11 13:33:34 +03:00
|
|
|
define Package/badblocks
|
|
|
|
$(call Package/e2fsprogs)
|
|
|
|
TITLE:=Ext2 Filesystem badblocks utility
|
2009-12-21 02:59:14 +02:00
|
|
|
DEPENDS:= +e2fsprogs
|
2008-05-11 13:33:34 +03:00
|
|
|
endef
|
|
|
|
|
2009-03-06 06:00:22 +02:00
|
|
|
define Package/blkid
|
|
|
|
$(call Package/e2fsprogs)
|
|
|
|
TITLE:=Command-line utility to locate/print block device attributes
|
2009-12-21 02:59:14 +02:00
|
|
|
DEPENDS:=+libuuid +libblkid
|
2009-03-06 06:00:22 +02:00
|
|
|
endef
|
|
|
|
|
2009-11-26 18:05:20 +02:00
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
|
2007-02-26 01:34:57 +02:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--disable-rpath \
|
|
|
|
--enable-elf-shlibs \
|
2008-06-22 21:40:53 +03:00
|
|
|
--enable-dynamic-e2fsck \
|
|
|
|
--disable-tls
|
2007-01-20 07:13:35 +02:00
|
|
|
|
2007-07-13 13:42:20 +03:00
|
|
|
define Build/Prepare
|
|
|
|
$(call Build/Prepare/Default)
|
|
|
|
$(CP) $(SCRIPT_DIR)/config.{guess,sub} $(PKG_BUILD_DIR)/config/
|
|
|
|
endef
|
|
|
|
|
2007-01-20 07:13:35 +02: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)" \
|
|
|
|
all install
|
|
|
|
endef
|
|
|
|
|
2007-03-24 17:51:43 +02:00
|
|
|
define Build/InstallDev
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
BUILDCC="$(HOSTCC)" \
|
2007-09-28 04:45:11 +03:00
|
|
|
DESTDIR="$(1)" \
|
2007-03-24 17:51:43 +02:00
|
|
|
install-libs
|
2008-11-15 00:37:29 +02:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/lib/ext2fs \
|
|
|
|
BUILDCC="$(HOSTCC)" \
|
|
|
|
DESTDIR="$(1)" \
|
|
|
|
install
|
2007-08-25 18:52:31 +03:00
|
|
|
endef
|
|
|
|
|
2007-01-20 07:13:35 +02:00
|
|
|
define Package/e2fsprogs/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 20:53:06 +02: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 07:13:35 +02:00
|
|
|
ln -sf mke2fs $(1)/usr/sbin/mkfs.ext2
|
|
|
|
ln -sf mke2fs $(1)/usr/sbin/mkfs.ext3
|
2009-08-27 12:16:54 +03:00
|
|
|
ln -sf mke2fs $(1)/usr/sbin/mkfs.ext4
|
2007-01-20 07:13:35 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2008-11-15 00:37:29 +02:00
|
|
|
$(CP) $(foreach lib,com_err e2p,$(PKG_INSTALL_DIR)/usr/lib/lib$(lib).so.*) $(1)/usr/lib/
|
2009-01-31 14:55:55 +02:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/e2fsck.init $(1)/etc/init.d/e2fsck
|
|
|
|
|
2007-03-24 17:51:43 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libuuid/install
|
2007-03-24 17:57:16 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2007-03-24 17:51:43 +02:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libuuid.so.* $(1)/usr/lib/
|
2007-01-20 07:13:35 +02:00
|
|
|
endef
|
|
|
|
|
2008-02-02 03:29:32 +02:00
|
|
|
define Package/uuidgen/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/uuidgen $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
2007-06-13 20:20:36 +03:00
|
|
|
define Package/libblkid/install
|
2007-09-07 11:34:51 +03:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2007-06-13 20:20:36 +03:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libblkid.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
2008-11-15 00:37:29 +02:00
|
|
|
define Package/libext2fs/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-12-21 02:59:14 +02:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libext2fs.so.* $(1)/usr/lib/
|
2008-11-15 00:37:29 +02:00
|
|
|
endef
|
|
|
|
|
2007-01-20 07:13:35 +02:00
|
|
|
define Package/tune2fs/install
|
2007-01-20 15:22:40 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 20:53:06 +02:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/tune2fs $(1)/usr/sbin/
|
2007-01-20 07:13:35 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/resize2fs/install
|
2007-01-20 15:22:40 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-12-09 20:53:06 +02:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/resize2fs $(1)/usr/sbin/
|
2007-01-20 07:13:35 +02:00
|
|
|
endef
|
|
|
|
|
2008-05-11 13:33:34 +03:00
|
|
|
define Package/badblocks/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/badblocks $(1)/usr/sbin/
|
|
|
|
endef
|
|
|
|
|
2009-03-06 06:00:22 +02:00
|
|
|
define Package/blkid/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/blkid $(1)/usr/sbin/
|
|
|
|
endef
|
|
|
|
|
2007-01-20 07:13:35 +02:00
|
|
|
$(eval $(call BuildPackage,e2fsprogs))
|
2007-03-24 17:51:43 +02:00
|
|
|
$(eval $(call BuildPackage,libuuid))
|
2008-02-02 03:29:32 +02:00
|
|
|
$(eval $(call BuildPackage,uuidgen))
|
2007-06-13 20:20:36 +03:00
|
|
|
$(eval $(call BuildPackage,libblkid))
|
2008-11-15 00:37:29 +02:00
|
|
|
$(eval $(call BuildPackage,libext2fs))
|
2007-01-20 07:13:35 +02:00
|
|
|
$(eval $(call BuildPackage,tune2fs))
|
|
|
|
$(eval $(call BuildPackage,resize2fs))
|
2008-05-11 13:33:34 +03:00
|
|
|
$(eval $(call BuildPackage,badblocks))
|
2009-03-06 06:00:22 +02:00
|
|
|
$(eval $(call BuildPackage,blkid))
|