Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
From b3ff26fa182b34b6faa1317f18a9dac4c7963334 Mon Sep 17 00:00:00 2001
|
||||
From: Matt Weber <matthew.weber@rockwellcollins.com>
|
||||
Date: Mon, 2 Oct 2017 09:57:15 -0500
|
||||
Subject: [PATCH] nfs-utils: add missing include of stdint.h
|
||||
|
||||
Glibc bump to 2.26 exposed this missing header when building
|
||||
with the following combination using an i386 internal toolchain.
|
||||
gcc5.4.0
|
||||
bin2.28.1
|
||||
linux4.1.43
|
||||
|
||||
Upstream: https://bugzilla.linux-nfs.org/show_bug.cgi?id=312
|
||||
|
||||
Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
|
||||
---
|
||||
support/nsm/rpc.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/support/nsm/rpc.c b/support/nsm/rpc.c
|
||||
index 4e5f40e..d91c6ea 100644
|
||||
--- a/support/nsm/rpc.c
|
||||
+++ b/support/nsm/rpc.c
|
||||
@@ -40,6 +40,7 @@
|
||||
|
||||
#include <time.h>
|
||||
#include <stdbool.h>
|
||||
+#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
--
|
||||
1.9.1
|
||||
|
||||
@@ -5,13 +5,13 @@ comment "nfs-utils needs a toolchain w/ threads"
|
||||
config BR2_PACKAGE_NFS_UTILS
|
||||
bool "nfs-utils"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libtirpc, rpcbind
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
|
||||
select BR2_PACKAGE_RPCBIND # runtime
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
The NFS Linux kernel server.
|
||||
|
||||
http://sourceforge.net/projects/nfs
|
||||
http://linux-nfs.org/
|
||||
|
||||
if BR2_PACKAGE_NFS_UTILS
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
NFS_UTILS_VERSION = 1.3.3
|
||||
NFS_UTILS_SOURCE = nfs-utils-$(NFS_UTILS_VERSION).tar.xz
|
||||
NFS_UTILS_SITE = https://www.kernel.org/pub/linux/utils/nfs-utils/$(NFS_UTILS_VERSION)
|
||||
NFS_UTILS_LICENSE = GPLv2+
|
||||
NFS_UTILS_LICENSE = GPL-2.0+
|
||||
NFS_UTILS_LICENSE_FILES = COPYING
|
||||
NFS_UTILS_AUTORECONF = YES
|
||||
NFS_UTILS_DEPENDENCIES = host-pkgconf
|
||||
@@ -24,6 +24,20 @@ NFS_UTILS_CONF_OPTS = \
|
||||
--with-statedir=/run/nfs \
|
||||
--with-rpcgen=internal
|
||||
|
||||
HOST_NFS_UTILS_CONF_OPTS = \
|
||||
--disable-nfsv4 \
|
||||
--disable-nfsv41 \
|
||||
--disable-gss \
|
||||
--disable-uuid \
|
||||
--disable-ipv6 \
|
||||
--without-tcp-wrappers \
|
||||
--with-statedir=/run/nfs \
|
||||
--disable-caps \
|
||||
--disable-tirpc \
|
||||
--without-systemd \
|
||||
--with-rpcgen=internal
|
||||
HOST_NFS_UTILS_DEPENDENCIES = host-pkgconf host-libtirpc
|
||||
|
||||
NFS_UTILS_TARGETS_$(BR2_PACKAGE_NFS_UTILS_RPCDEBUG) += usr/sbin/rpcdebug
|
||||
NFS_UTILS_TARGETS_$(BR2_PACKAGE_NFS_UTILS_RPC_LOCKD) += usr/sbin/rpc.lockd
|
||||
NFS_UTILS_TARGETS_$(BR2_PACKAGE_NFS_UTILS_RPC_RQUOTAD) += usr/sbin/rpc.rquotad
|
||||
@@ -89,4 +103,13 @@ endef
|
||||
# nfsiostat is interpreted python, so remove it unless it's in the target
|
||||
NFS_UTILS_POST_INSTALL_TARGET_HOOKS += $(if $(BR2_PACKAGE_PYTHON),,NFS_UTILS_REMOVE_NFSIOSTAT)
|
||||
|
||||
define HOST_NFS_UTILS_BUILD_CMDS
|
||||
$(MAKE) -C $(@D)/tools/rpcgen
|
||||
endef
|
||||
|
||||
define HOST_NFS_UTILS_INSTALL_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/tools/rpcgen/rpcgen $(HOST_DIR)/bin/rpcgen
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
|
||||
Reference in New Issue
Block a user