mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 13:46:32 +00:00
xfsprogs: bump version
Signed-off-by: Nigel Kukard <nkukard@lbsd.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
f31bbf9e68
commit
858d4dbf7f
2
CHANGES
2
CHANGES
@ -5,7 +5,7 @@
|
|||||||
Updated/fixed packages: autoconf, bind, binutils, busybox,
|
Updated/fixed packages: autoconf, bind, binutils, busybox,
|
||||||
directfb, e2fsprogs, gst-plugins-bad, hal, iw, libfuse, libpcap,
|
directfb, e2fsprogs, gst-plugins-bad, hal, iw, libfuse, libpcap,
|
||||||
lighttpd, mesa, mpg123, mtd-utils, neon, pcre, qt, sshfs,
|
lighttpd, mesa, mpg123, mtd-utils, neon, pcre, qt, sshfs,
|
||||||
tremor, u-boot, usbutils
|
tremor, u-boot, usbutils, xfsprogs
|
||||||
|
|
||||||
Issues resolved (http://bugs.uclibc.org):
|
Issues resolved (http://bugs.uclibc.org):
|
||||||
|
|
||||||
|
@ -1,16 +1,17 @@
|
|||||||
|
|
||||||
comment "Note that xfsprogs needs a toolchain with UCLIBC_SV4_DEPRECATED enabled"
|
comment "Note that xfsprogs needs a toolchain with UCLIBC_SV4_DEPRECATED and UCLIBC_HAS_OBSOLETE_BSD_SIGNAL enabled"
|
||||||
depends on BR2_PACKAGE_XFSPROGS
|
depends on BR2_PACKAGE_XFSPROGS
|
||||||
|
|
||||||
|
comment "xfsprogs requires a toolchain with LARGEFILE support"
|
||||||
|
depends on !BR2_LARGEFILE
|
||||||
|
|
||||||
config BR2_PACKAGE_XFSPROGS
|
config BR2_PACKAGE_XFSPROGS
|
||||||
bool "xfsprogs"
|
bool "xfsprogs"
|
||||||
depends on BR2_LARGEFILE
|
depends on BR2_LARGEFILE
|
||||||
select BR2_PACKAGE_E2FSPROGS
|
select BR2_PACKAGE_E2FSPROGS
|
||||||
|
select BR2_PACKAGE_E2FSPROGS_LIBUUID
|
||||||
help
|
help
|
||||||
The XFS file system utilities and libraries
|
The XFS file system utilities and libraries
|
||||||
|
|
||||||
http://oss.sgi.com/projects/xfs/
|
http://oss.sgi.com/projects/xfs/
|
||||||
|
|
||||||
comment "xfssprogs requires a toolchain with LARGEFILE support"
|
|
||||||
depends on !BR2_LARGEFILE
|
|
||||||
|
|
||||||
|
@ -3,10 +3,9 @@
|
|||||||
# xfsprogs
|
# xfsprogs
|
||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
XFSPROGS_VERSION:=2.10.2
|
XFSPROGS_VERSION:=3.0.3
|
||||||
XFSPROGS_SOURCE=xfsprogs_$(XFSPROGS_VERSION)-1.tar.gz
|
XFSPROGS_SOURCE=xfsprogs-$(XFSPROGS_VERSION).tar.gz
|
||||||
XFSPROGS_SITE=ftp://oss.sgi.com/projects/xfs/cmd_tars
|
XFSPROGS_SITE=ftp://oss.sgi.com/projects/xfs/cmd_tars
|
||||||
#XFSPROGS_SITE=ftp://oss.sgi.com/projects/xfs/previous/cmd_tars/
|
|
||||||
XFSPROGS_DIR=$(BUILD_DIR)/xfsprogs-$(XFSPROGS_VERSION)
|
XFSPROGS_DIR=$(BUILD_DIR)/xfsprogs-$(XFSPROGS_VERSION)
|
||||||
XFSPROGS_CAT:=$(ZCAT)
|
XFSPROGS_CAT:=$(ZCAT)
|
||||||
XFSPROGS_BINARY:=mkfs/mkfs.xfs
|
XFSPROGS_BINARY:=mkfs/mkfs.xfs
|
||||||
@ -38,7 +37,6 @@ $(XFSPROGS_DIR)/.configured: $(XFSPROGS_DIR)/.unpacked
|
|||||||
$(TARGET_CONFIGURE_ARGS) \
|
$(TARGET_CONFIGURE_ARGS) \
|
||||||
CPPFLAGS="-I$(E2FSPROGS_DIR)/lib" \
|
CPPFLAGS="-I$(E2FSPROGS_DIR)/lib" \
|
||||||
LDFLAGS="-L$(E2FSPROGS_DIR)/lib" \
|
LDFLAGS="-L$(E2FSPROGS_DIR)/lib" \
|
||||||
LIBTOOL=$(LIBTOOL_DIR)/libtool \
|
|
||||||
INSTALL_USER=$(shell whoami) \
|
INSTALL_USER=$(shell whoami) \
|
||||||
INSTALL_GROUP=$(shell groups | cut -d" " -f1) \
|
INSTALL_GROUP=$(shell groups | cut -d" " -f1) \
|
||||||
./configure $(QUIET) \
|
./configure $(QUIET) \
|
||||||
@ -46,6 +44,7 @@ $(XFSPROGS_DIR)/.configured: $(XFSPROGS_DIR)/.unpacked
|
|||||||
--host=$(GNU_TARGET_NAME) \
|
--host=$(GNU_TARGET_NAME) \
|
||||||
--build=$(GNU_HOST_NAME) \
|
--build=$(GNU_HOST_NAME) \
|
||||||
--exec-prefix=/ \
|
--exec-prefix=/ \
|
||||||
|
--enable-gettext=no \
|
||||||
$(XFSPROGS_CONFIG_SHARED) \
|
$(XFSPROGS_CONFIG_SHARED) \
|
||||||
)
|
)
|
||||||
touch $(XFSPROGS_DIR)/.configured
|
touch $(XFSPROGS_DIR)/.configured
|
||||||
@ -78,7 +77,7 @@ $(TARGET_DIR)/$(XFSPROGS_TARGET_BINARY): $(XFSPROGS_DIR)/$(XFSPROGS_BINARY)
|
|||||||
rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
|
rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
|
||||||
touch -c $(TARGET_DIR)/$(XFSPROGS_TARGET_BINARY)
|
touch -c $(TARGET_DIR)/$(XFSPROGS_TARGET_BINARY)
|
||||||
|
|
||||||
xfsprogs: e2fsprogs libtool-cross $(TARGET_DIR)/$(XFSPROGS_TARGET_BINARY)
|
xfsprogs: e2fsprogs $(TARGET_DIR)/$(XFSPROGS_TARGET_BINARY)
|
||||||
|
|
||||||
xfsprogs-clean:
|
xfsprogs-clean:
|
||||||
rm -f $(TARGET_DIR)/bin/xfs_* $(TARGET_DIR)/sbin/xfs_* $(TARGET_DIR)/sbin/*.xfs
|
rm -f $(TARGET_DIR)/bin/xfs_* $(TARGET_DIR)/sbin/xfs_* $(TARGET_DIR)/sbin/*.xfs
|
||||||
|
@ -1,59 +0,0 @@
|
|||||||
diff -urN xfsprogs-2.6.36.orig/libdisk/Makefile xfsprogs-2.6.36/libdisk/Makefile
|
|
||||||
--- xfsprogs-2.6.36.orig/libdisk/Makefile 2005-08-01 07:20:49.000000000 -0700
|
|
||||||
+++ xfsprogs-2.6.36/libdisk/Makefile 2005-09-26 17:30:14.000000000 -0700
|
|
||||||
@@ -53,6 +53,7 @@
|
|
||||||
include $(BUILDRULES)
|
|
||||||
|
|
||||||
install: default
|
|
||||||
+ $(INSTALL_LTLIB)
|
|
||||||
|
|
||||||
install-dev: default
|
|
||||||
- $(INSTALL_LTLIB_STATIC)
|
|
||||||
+ $(INSTALL_LTLIB_DEV)
|
|
||||||
diff -urN xfsprogs-2.6.36.orig/libxcmd/Makefile xfsprogs-2.6.36/libxcmd/Makefile
|
|
||||||
--- xfsprogs-2.6.36.orig/libxcmd/Makefile 2005-08-01 07:20:49.000000000 -0700
|
|
||||||
+++ xfsprogs-2.6.36/libxcmd/Makefile 2005-09-26 17:30:15.000000000 -0700
|
|
||||||
@@ -45,6 +45,7 @@
|
|
||||||
include $(BUILDRULES)
|
|
||||||
|
|
||||||
install: default
|
|
||||||
+ $(INSTALL_LTLIB)
|
|
||||||
|
|
||||||
install-dev: default
|
|
||||||
- $(INSTALL_LTLIB_STATIC)
|
|
||||||
+ $(INSTALL_LTLIB_DEV)
|
|
||||||
diff -urN xfsprogs-2.6.36.orig/libxfs/Makefile xfsprogs-2.6.36/libxfs/Makefile
|
|
||||||
--- xfsprogs-2.6.36.orig/libxfs/Makefile 2005-08-01 07:20:50.000000000 -0700
|
|
||||||
+++ xfsprogs-2.6.36/libxfs/Makefile 2005-09-26 17:30:16.000000000 -0700
|
|
||||||
@@ -70,6 +70,7 @@
|
|
||||||
include $(BUILDRULES)
|
|
||||||
|
|
||||||
install: default
|
|
||||||
+ $(INSTALL_LTLIB)
|
|
||||||
|
|
||||||
install-dev: default
|
|
||||||
- $(INSTALL_LTLIB_STATIC)
|
|
||||||
+ $(INSTALL_LTLIB_DEV)
|
|
||||||
diff -urN xfsprogs-2.6.36.orig/libxlog/Makefile xfsprogs-2.6.36/libxlog/Makefile
|
|
||||||
--- xfsprogs-2.6.36.orig/libxlog/Makefile 2005-08-01 07:20:51.000000000 -0700
|
|
||||||
+++ xfsprogs-2.6.36/libxlog/Makefile 2005-09-26 17:30:17.000000000 -0700
|
|
||||||
@@ -48,6 +48,7 @@
|
|
||||||
include $(BUILDRULES)
|
|
||||||
|
|
||||||
install: default
|
|
||||||
+ $(INSTALL_LTLIB)
|
|
||||||
|
|
||||||
install-dev: default
|
|
||||||
- $(INSTALL_LTLIB_STATIC)
|
|
||||||
+ $(INSTALL_LTLIB_DEV)
|
|
||||||
--- xfsprogs-2.6.36.orig/mkfs/Makefile 2005-08-01 07:20:54.000000000 -0700
|
|
||||||
+++ xfsprogs-2.6.36/mkfs/Makefile 2005-09-23 15:17:42.000000000 -0700
|
|
||||||
@@ -51,7 +51,7 @@
|
|
||||||
include $(BUILDRULES)
|
|
||||||
|
|
||||||
$(FSTYP):
|
|
||||||
- $(LTLINK) $@.c -o $@ $(CFLAGS) $(LDFLAGS) $(LIBDISK) $(PLDLIBS)
|
|
||||||
+ $(LTLINK) $@.c -o $@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(LIBDISK) $(PLDLIBS)
|
|
||||||
|
|
||||||
install: default
|
|
||||||
$(INSTALL) -m 755 -d $(PKG_SBIN_DIR)
|
|
Loading…
x
Reference in New Issue
Block a user