Import buildroot 2016.02.01
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
From 6603cef0f06c450196a1bca06bb143d8fcda5651 Mon Sep 17 00:00:00 2001
|
||||
From: Felix Janda <felix.janda@posteo.de>
|
||||
Date: Fri, 5 Dec 2014 23:19:29 +0100
|
||||
Subject: [PATCH 1/1] mtab.c: include <paths.h> for _PATH_MOUNTED
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Backported from: 6603cef0f06c450196a1bca06bb143d8fcda5651
|
||||
|
||||
Signed-off-by: Felix Janda <felix.janda@posteo.de>
|
||||
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
|
||||
---
|
||||
mtab.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/mtab.c b/mtab.c
|
||||
index 7b365b3..a662a3c 100644
|
||||
--- a/mtab.c
|
||||
+++ b/mtab.c
|
||||
@@ -38,6 +38,7 @@
|
||||
#include <mntent.h>
|
||||
#include <stdlib.h>
|
||||
#include <signal.h>
|
||||
+#include <paths.h>
|
||||
#include "mount.h"
|
||||
#include "config.h"
|
||||
|
||||
--
|
||||
2.5.0
|
||||
|
||||
15
firmware/buildroot/package/cifs-utils/Config.in
Normal file
15
firmware/buildroot/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
|
||||
2
firmware/buildroot/package/cifs-utils/cifs-utils.hash
Normal file
2
firmware/buildroot/package/cifs-utils/cifs-utils.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 38fc63926af435dae4ebcf4406275580a692d9fb9ee3e32170317cf2ba68e6e3 cifs-utils-6.4.tar.bz2
|
||||
23
firmware/buildroot/package/cifs-utils/cifs-utils.mk
Normal file
23
firmware/buildroot/package/cifs-utils/cifs-utils.mk
Normal file
@@ -0,0 +1,23 @@
|
||||
################################################################################
|
||||
#
|
||||
# cifs-utils
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CIFS_UTILS_VERSION = 6.4
|
||||
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_STATIC_LIBS),y)
|
||||
CIFS_UTILS_CONF_OPTS += --disable-pie
|
||||
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