Update buidlroot to version 2016.08.1
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
From 14d9e94315cd8144ac72d368c45e70869a66799c Mon Sep 17 00:00:00 2001
|
||||
From: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
Date: Thu, 9 Jun 2016 07:47:03 -0300
|
||||
Subject: [PATCH] fuse2fs: might need librt
|
||||
|
||||
It uses clock_gettime() which in older glibc versions is in librt.
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
[yann.morin.1998@free.fr: properly expand it in the Makefile]
|
||||
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
||||
---
|
||||
Patch status: sent to linux-ext4 ML
|
||||
|
||||
configure.ac | 5 +++++
|
||||
misc/Makefile.in | 3 ++-
|
||||
2 files changed, 7 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 67d7231..a387dfd 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -1162,6 +1162,11 @@ if test "$ac_cv_func_dlopen" = yes ; then
|
||||
fi
|
||||
AC_SUBST(MAGIC_LIB)
|
||||
dnl
|
||||
+dnl Check to see if librt is required for clock_gettime() (glibc < 2.17)
|
||||
+dnl
|
||||
+AC_CHECK_LIB(rt, clock_gettime, [CLOCK_GETTIME_LIB=-lrt])
|
||||
+AC_SUBST(CLOCK_GETTIME_LIB)
|
||||
+dnl
|
||||
dnl Check to see if the FUSE library is -lfuse or -losxfuse
|
||||
dnl
|
||||
FUSE_CMT=
|
||||
diff --git a/misc/Makefile.in b/misc/Makefile.in
|
||||
index 43e3c7e..070a6e3 100644
|
||||
--- a/misc/Makefile.in
|
||||
+++ b/misc/Makefile.in
|
||||
@@ -387,7 +387,8 @@ fuse2fs: $(FUSE2FS_OBJS) $(DEPLIBS) $(DEPLIBBLKID) $(DEPLIBUUID) \
|
||||
$(LIBEXT2FS)
|
||||
$(E) " LD $@"
|
||||
$(Q) $(CC) $(ALL_LDFLAGS) -o fuse2fs $(FUSE2FS_OBJS) $(LIBS) \
|
||||
- $(LIBFUSE) $(LIBBLKID) $(LIBUUID) $(LIBEXT2FS) $(LIBINTL)
|
||||
+ $(LIBFUSE) $(LIBBLKID) $(LIBUUID) $(LIBEXT2FS) $(LIBINTL) \
|
||||
+ $(CLOCK_GETTIME_LIB)
|
||||
|
||||
journal.o: $(srcdir)/../debugfs/journal.c
|
||||
$(E) " CC $@"
|
||||
diff --git a/misc/Makefile.in b/misc/Makefile.in
|
||||
index 43e3c7e..070a6e3 100644
|
||||
--- a/misc/Makefile.in
|
||||
+++ b/misc/Makefile.in
|
||||
@@ -32,6 +32,8 @@
|
||||
|
||||
@FUSE_CMT@FUSE_PROG= fuse2fs
|
||||
|
||||
+CLOCK_GETTIME_LIB = @CLOCK_GETTIME_LIB@
|
||||
+
|
||||
SPROGS= mke2fs badblocks tune2fs dumpe2fs $(BLKID_PROG) logsave \
|
||||
$(E2IMAGE_PROG) @FSCK_PROG@ e2undo
|
||||
USPROGS= mklost+found filefrag e2freefrag $(UUIDD_PROG) \
|
||||
--
|
||||
2.7.3
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
From ff6147dd7197519e561e796d56545c4e11eb43fa Mon Sep 17 00:00:00 2001
|
||||
From: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
Date: Wed, 22 Jun 2016 20:55:35 -0300
|
||||
Subject: [PATCH e2fsprogs] fuse2fs: needs SYSLIBS
|
||||
|
||||
It otherwise leads to build failure when using an unbundled libintl.
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
---
|
||||
Status: sent to ML http://marc.info/?l=linux-ext4&m=146664003825136&w=2
|
||||
|
||||
misc/Makefile.in | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/misc/Makefile.in b/misc/Makefile.in
|
||||
index f67c9c7..e487692 100644
|
||||
--- a/misc/Makefile.in
|
||||
+++ b/misc/Makefile.in
|
||||
@@ -389,7 +389,7 @@ fuse2fs: $(FUSE2FS_OBJS) $(DEPLIBS) $(DEPLIBBLKID) $(DEPLIBUUID) \
|
||||
$(E) " LD $@"
|
||||
$(Q) $(CC) $(ALL_LDFLAGS) -o fuse2fs $(FUSE2FS_OBJS) $(LIBS) \
|
||||
$(LIBFUSE) $(LIBBLKID) $(LIBUUID) $(LIBEXT2FS) $(LIBINTL) \
|
||||
- $(CLOCK_GETTIME_LIB)
|
||||
+ $(CLOCK_GETTIME_LIB) $(SYSLIBS)
|
||||
|
||||
journal.o: $(srcdir)/../debugfs/journal.c
|
||||
$(E) " CC $@"
|
||||
--
|
||||
2.7.3
|
||||
|
||||
@@ -51,7 +51,7 @@ config BR2_PACKAGE_E2FSPROGS_E4DEFRAG
|
||||
depends on !BR2_nios2 # fallocate not implemented
|
||||
depends on !BR2_TOOLCHAIN_USES_UCLIBC # sync_file_range not impl
|
||||
|
||||
comment "e4defrag needs an (e)glibc or musl toolchain"
|
||||
comment "e4defrag needs a glibc or musl toolchain"
|
||||
depends on BR2_TOOLCHAIN_USES_UCLIBC
|
||||
|
||||
config BR2_PACKAGE_E2FSPROGS_FILEFRAG
|
||||
@@ -62,6 +62,15 @@ config BR2_PACKAGE_E2FSPROGS_FSCK
|
||||
bool "fsck"
|
||||
default y
|
||||
|
||||
config BR2_PACKAGE_E2FSPROGS_FUSE2FS
|
||||
bool "fuse2fs"
|
||||
depends on !BR2_STATIC_LIBS # libfuse
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse
|
||||
select BR2_PACKAGE_LIBFUSE
|
||||
|
||||
comment "fuse2fs needs a toolchain w/ threads, dynamic library"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
|
||||
config BR2_PACKAGE_E2FSPROGS_LOGSAVE
|
||||
bool "logsave"
|
||||
default y
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# From https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.42.13/sha256sums.asc
|
||||
sha256 e16474b5a3a30f9197160c4b91bd48d5a463583049c0fcc405b6f0f7075aa0c7 e2fsprogs-1.42.13.tar.xz
|
||||
# From https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.43.1/sha256sums.asc
|
||||
sha256 97e36a029224e2606baa6e9ea693b04a4d192ccd714572a1b50a2df9c687b23d e2fsprogs-1.43.1.tar.xz
|
||||
|
||||
@@ -4,17 +4,27 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
E2FSPROGS_VERSION = 1.42.13
|
||||
E2FSPROGS_VERSION = 1.43.1
|
||||
E2FSPROGS_SOURCE = e2fsprogs-$(E2FSPROGS_VERSION).tar.xz
|
||||
E2FSPROGS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/people/tytso/e2fsprogs/v$(E2FSPROGS_VERSION)
|
||||
E2FSPROGS_LICENSE = GPLv2, libuuid BSD-3c, libss and libet MIT-like with advertising clause
|
||||
E2FSPROGS_LICENSE_FILES = COPYING lib/uuid/COPYING lib/ss/mit-sipb-copyright.h lib/et/internal.h
|
||||
E2FSPROGS_LICENSE_FILES = NOTICE lib/uuid/COPYING lib/ss/mit-sipb-copyright.h lib/et/internal.h
|
||||
E2FSPROGS_INSTALL_STAGING = YES
|
||||
E2FSPROGS_INSTALL_STAGING_OPTS = DESTDIR=$(STAGING_DIR) install-libs
|
||||
E2FSPROGS_DEPENDENCIES = host-pkgconf util-linux
|
||||
# we don't have a host-util-linux
|
||||
HOST_E2FSPROGS_DEPENDENCIES = host-pkgconf
|
||||
|
||||
# For 0002-fuse2fs-might-need-librt.patch
|
||||
# host-gettext for the gettext macro file needed at autoreconf time
|
||||
E2FSPROGS_AUTORECONF = YES
|
||||
E2FSPROGS_DEPENDENCIES += host-gettext
|
||||
HOST_E2FSPROGS_DEPENDENCIES += host-gettext
|
||||
|
||||
# e4defrag doesn't build on older systems like RHEL5.x, and we don't
|
||||
# need it on the host anyway.
|
||||
HOST_E2FSPROGS_CONF_OPTS += --disable-defrag
|
||||
# Disable fuse2fs as well to avoid carrying over deps, and it's unused
|
||||
HOST_E2FSPROGS_CONF_OPTS += --disable-defrag --disable-fuse2fs
|
||||
|
||||
E2FSPROGS_CONF_OPTS = \
|
||||
$(if $(BR2_STATIC_LIBS),,--enable-elf-shlibs) \
|
||||
@@ -30,26 +40,35 @@ E2FSPROGS_CONF_OPTS = \
|
||||
--disable-testio-debug \
|
||||
--disable-rpath
|
||||
|
||||
ifeq ($(BR2_PACKAGE_E2FSPROGS_FUSE2FS),y)
|
||||
E2FSPROGS_CONF_OPTS += --enable-fuse2fs
|
||||
E2FSPROGS_DEPENDENCIES += libfuse
|
||||
else
|
||||
E2FSPROGS_CONF_OPTS += --disable-fuse2fs
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_nios2),y)
|
||||
E2FSPROGS_CONF_ENV += ac_cv_func_fallocate=no
|
||||
endif
|
||||
|
||||
# Some programs are built for the host, but use definitions guessed by
|
||||
# the configure script (i.e with the cross-compiler). Help them by
|
||||
# saying that <sys/stat.h> is available on the host, which is needed
|
||||
# for util/subst.c to build properly.
|
||||
E2FSPROGS_CONF_ENV += BUILD_CFLAGS="-DHAVE_SYS_STAT_H"
|
||||
|
||||
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
||||
# util-linux libuuid pulls in libintl if needed, so ensure we also
|
||||
# link against it, otherwise static linking fails
|
||||
E2FSPROGS_CONF_ENV += LIBS=-lintl
|
||||
endif
|
||||
|
||||
E2FSPROGS_DEPENDENCIES = host-pkgconf util-linux
|
||||
|
||||
E2FSPROGS_MAKE_OPTS = \
|
||||
LDCONFIG=true
|
||||
|
||||
define HOST_E2FSPROGS_INSTALL_CMDS
|
||||
$(HOST_MAKE_ENV) $(MAKE) -C $(@D) install install-libs
|
||||
endef
|
||||
# we don't have a host-util-linux
|
||||
HOST_E2FSPROGS_DEPENDENCIES = host-pkgconf
|
||||
|
||||
# binaries to keep or remove
|
||||
E2FSPROGS_BINTARGETS_$(BR2_PACKAGE_E2FSPROGS_BADBLOCKS) += usr/sbin/badblocks
|
||||
@@ -136,14 +155,5 @@ ifeq ($(BR2_PACKAGE_E2FSPROGS_TUNE2FS),y)
|
||||
E2FSPROGS_POST_INSTALL_TARGET_HOOKS += E2FSPROGS_TARGET_TUNE2FS_SYMLINK
|
||||
endif
|
||||
|
||||
# systemd really wants to have fsck in /sbin
|
||||
define E2FSPROGS_TARGET_FSCK_SYMLINK
|
||||
ln -sf ../usr/sbin/fsck $(TARGET_DIR)/sbin/fsck
|
||||
endef
|
||||
|
||||
ifeq ($(BR2_PACKAGE_E2FSPROGS_FSCK),y)
|
||||
E2FSPROGS_POST_INSTALL_TARGET_HOOKS += E2FSPROGS_TARGET_FSCK_SYMLINK
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
|
||||
Reference in New Issue
Block a user