update buildroot to 2017.02.11
This commit is contained in:
15
bsp/buildroot-2017.02.11/package/cifs-utils/Config.in
Normal file
15
bsp/buildroot-2017.02.11/package/cifs-utils/Config.in
Normal file
@@ -0,0 +1,15 @@
|
||||
config BR2_PACKAGE_CIFS_UTILS
|
||||
bool "cifs-utils"
|
||||
# uses fork()
|
||||
depends on BR2_USE_MMU
|
||||
help
|
||||
The in-kernel CIFS filesystem is generally the preferred
|
||||
method for mounting SMB/CIFS shares on Linux. The in-kernel
|
||||
CIFS filesystem relies on a set of user-space tools. That
|
||||
package of tools is called cifs-utils. Although not really
|
||||
part of Samba proper, these tools were originally part of
|
||||
the Samba package. For several reasons, shipping these tools
|
||||
as part of Samba was problematic and it was deemed better to
|
||||
split them off into their own package.
|
||||
|
||||
http://wiki.samba.org/index.php/LinuxCIFS_utils
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 d07152a807de6840566bbcc69a97ff6fa17fca4e09ceb4641d74882a83e67125 cifs-utils-6.6.tar.bz2
|
||||
27
bsp/buildroot-2017.02.11/package/cifs-utils/cifs-utils.mk
Normal file
27
bsp/buildroot-2017.02.11/package/cifs-utils/cifs-utils.mk
Normal file
@@ -0,0 +1,27 @@
|
||||
################################################################################
|
||||
#
|
||||
# cifs-utils
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CIFS_UTILS_VERSION = 6.6
|
||||
CIFS_UTILS_SOURCE = cifs-utils-$(CIFS_UTILS_VERSION).tar.bz2
|
||||
CIFS_UTILS_SITE = http://ftp.samba.org/pub/linux-cifs/cifs-utils
|
||||
CIFS_UTILS_LICENSE = GPLv3+
|
||||
CIFS_UTILS_LICENSE_FILES = COPYING
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_SUPPORTS_PIE),)
|
||||
CIFS_UTILS_CONF_OPTS += --disable-pie
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_KEYUTILS),y)
|
||||
CIFS_UTILS_DEPENDENCIES += keyutils
|
||||
endif
|
||||
|
||||
define CIFS_UTILS_NO_WERROR
|
||||
$(SED) 's/-Werror//' $(@D)/Makefile.in
|
||||
endef
|
||||
|
||||
CIFS_UTILS_POST_PATCH_HOOKS += CIFS_UTILS_NO_WERROR
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user