All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [pull request] Pull request for branch for-2011.11/cifs-utils
@ 2011-09-19 21:42 Thomas Petazzoni
  2011-09-19 21:42 ` [Buildroot] [PATCH 1/1] cifs-utils: new package Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2011-09-19 21:42 UTC (permalink / raw)
  To: buildroot

The following changes since commit dcb43a0eb0c09ffb84c6c7b4c169a2874cb24cc9:

  barebox: patch-kernel.sh is no more (2011-09-19 10:13:37 +0200)

are available in the git repository at:
  http://free-electrons.com/~thomas/buildroot.git for-2011.11/cifs-utils

Thomas Petazzoni (1):
      cifs-utils: new package

 package/Config.in                |    1 +
 package/cifs-utils/Config.in     |   13 +++++++++++++
 package/cifs-utils/cifs-utils.mk |    5 +++++
 3 files changed, 19 insertions(+), 0 deletions(-)
 create mode 100644 package/cifs-utils/Config.in
 create mode 100644 package/cifs-utils/cifs-utils.mk

Thanks,
-- 
Thomas Petazzoni

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] cifs-utils: new package
  2011-09-19 21:42 [Buildroot] [pull request] Pull request for branch for-2011.11/cifs-utils Thomas Petazzoni
@ 2011-09-19 21:42 ` Thomas Petazzoni
  2011-09-26 20:36   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2011-09-19 21:42 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/Config.in                |    1 +
 package/cifs-utils/Config.in     |   13 +++++++++++++
 package/cifs-utils/cifs-utils.mk |    5 +++++
 3 files changed, 19 insertions(+), 0 deletions(-)
 create mode 100644 package/cifs-utils/Config.in
 create mode 100644 package/cifs-utils/cifs-utils.mk

diff --git a/package/Config.in b/package/Config.in
index 451b271..b480483 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -398,6 +398,7 @@ source "package/bridge-utils/Config.in"
 source "package/bwm-ng/Config.in"
 source "package/can-utils/Config.in"
 source "package/ctorrent/Config.in"
+source "package/cifs-utils/Config.in"
 source "package/cups/Config.in"
 if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 source "package/dhcp/Config.in"
diff --git a/package/cifs-utils/Config.in b/package/cifs-utils/Config.in
new file mode 100644
index 0000000..861aaeb
--- /dev/null
+++ b/package/cifs-utils/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_CIFS_UTILS
+        bool "cifs-utils"
+	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
\ No newline at end of file
diff --git a/package/cifs-utils/cifs-utils.mk b/package/cifs-utils/cifs-utils.mk
new file mode 100644
index 0000000..70c9796
--- /dev/null
+++ b/package/cifs-utils/cifs-utils.mk
@@ -0,0 +1,5 @@
+CIFS_UTILS_VERSION = 5.0
+CIFS_UTILS_SOURCE  = cifs-utils-$(CIFS_UTILS_VERSION).tar.bz2
+CIFS_UTILS_SITE    = ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/
+
+$(eval $(call AUTOTARGETS,package,cifs-utils))
\ No newline at end of file
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] cifs-utils: new package
  2011-09-19 21:42 ` [Buildroot] [PATCH 1/1] cifs-utils: new package Thomas Petazzoni
@ 2011-09-26 20:36   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2011-09-26 20:36 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Thanks, committed with minor fixes (see below):

 Thomas> new file mode 100644
 Thomas> index 0000000..861aaeb
 Thomas> --- /dev/null
 Thomas> +++ b/package/cifs-utils/Config.in
 Thomas> @@ -0,0 +1,13 @@
 Thomas> +config BR2_PACKAGE_CIFS_UTILS
 Thomas> +        bool "cifs-utils"

Wrong indentation.

 Thomas> +	help
 Thomas> +	  The in-kernel CIFS filesystem is generally the preferred
 Thomas> +	  method for mounting SMB/CIFS shares on Linux. The in-kernel
 Thomas> +	  CIFS filesystem relies on a set of user-space tools. That
 Thomas> +	  package of tools is called cifs-utils. Although not really
 Thomas> +	  part of Samba proper, these tools were originally part of
 Thomas> +	  the Samba package. For several reasons, shipping these tools
 Thomas> +	  as part of Samba was problematic and it was deemed better to
 Thomas> +	  split them off into their own package.
 Thomas> +
 Thomas> +	  http://wiki.samba.org/index.php/LinuxCIFS_utils
 Thomas> \ No newline at end of file

..

 Thomas> diff --git a/package/cifs-utils/cifs-utils.mk b/package/cifs-utils/cifs-utils.mk
 Thomas> +$(eval $(call AUTOTARGETS,package,cifs-utils))
 Thomas> \ No newline at end of file

You forgot the newlines again ;)

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-09-26 20:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-19 21:42 [Buildroot] [pull request] Pull request for branch for-2011.11/cifs-utils Thomas Petazzoni
2011-09-19 21:42 ` [Buildroot] [PATCH 1/1] cifs-utils: new package Thomas Petazzoni
2011-09-26 20:36   ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.