All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package/usbmount
@ 2007-02-12 11:36 aldot at uclibc.org
  0 siblings, 0 replies; 6+ messages in thread
From: aldot at uclibc.org @ 2007-02-12 11:36 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-02-12 03:36:27 -0800 (Mon, 12 Feb 2007)
New Revision: 17862

Log:
- update patch for 0.0.14.1. Thanks to Alexander Rigbo.


Added:
   trunk/buildroot/package/usbmount/usbmount-0.0.14.1.patch

Removed:
   trunk/buildroot/package/usbmount/usbmount.patch

Modified:
   trunk/buildroot/package/usbmount/usbmount.mk


Changeset:
Added: trunk/buildroot/package/usbmount/usbmount-0.0.14.1.patch
===================================================================
--- trunk/buildroot/package/usbmount/usbmount-0.0.14.1.patch	                        (rev 0)
+++ trunk/buildroot/package/usbmount/usbmount-0.0.14.1.patch	2007-02-12 11:36:27 UTC (rev 17862)
@@ -0,0 +1,64 @@
+diff -ru usbmount-0.0.14.1/usbmount usbmount-patched/usbmount
+--- usbmount-0.0.14.1/usbmount	2007-01-27 12:22:14.000000000 +0100
++++ usbmount-patched/usbmount	2007-02-07 12:47:16.000000000 +0100
+@@ -11,7 +11,14 @@
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ # PARTICULAR PURPOSE.
++
++#
++# Changed to support config of logfile and vol_id and creating locks
++# without the use of lockfile-create all for embedded use.
++# Joshua D Henderson <jdhende1@rockwellcollins.com>
++# Patch touched by Alexander Rigbo <alexander.rigbo@acgnystrom.se>
+ #
++
+ set -e
+ exec > /dev/null 2>&1
+ 
+@@ -20,7 +27,7 @@
+ log()
+ {
+     if test $1 != debug || expr "$VERBOSE" : "[yY]" > /dev/null; then
+-	logger -p user.$1 -t "usbmount[$$]" -- "$2"
++	echo "usbmount[$$] -- $2" >> $LOGFILE
+     fi
+ }
+ 
+@@ -57,11 +64,11 @@
+ if test "$1" = add; then
+ 
+     # Acquire lock.
+-    log debug "trying to acquire lock /var/run/usbmount/.mount.lock"
+-    lockfile-create --retry 3 /var/run/usbmount/.mount || \
+-	{ log err "cannot acquire lock /var/run/usbmount/.mount.lock"; exit 1; }
+-    trap '( lockfile-remove /var/run/usbmount/.mount )' 0
+-    log debug "acquired lock /var/run/usbmount/.mount.lock"
++#    log debug "trying to acquire lock /var/run/usbmount/.mount.lock"
++#    lockfile-create --retry 3 /var/run/usbmount/.mount || \
++#	{ log err "cannot acquire lock /var/run/usbmount/.mount.lock"; exit 1; }
++#    trap '( lockfile-remove /var/run/usbmount/.mount )' 0
++#    log debug "acquired lock /var/run/usbmount/.mount.lock"
+ 
+     # Try to read from the device.  Some devices need a few seconds
+     # initialization time before they can be accessed.  Give up after
+diff -ru usbmount-0.0.14.1/usbmount.conf usbmount-patched/usbmount.conf
+--- usbmount-0.0.14.1/usbmount.conf	2005-04-08 16:05:10.000000000 +0200
++++ usbmount-patched/usbmount.conf	2007-02-07 12:44:39.000000000 +0100
+@@ -17,7 +17,7 @@
+ # sure all data is written to the medium before you remove it (e.g. run the #
+ # "sync" command in a terminal window).  Otherwise, you *WILL* lose data!   #
+ #############################################################################
+-FILESYSTEMS="ext2 ext3"
++FILESYSTEMS="ext2 ext3 msdos vfat"
+ 
+ # Mount options: Options passed to the mount command with the -o flag.
+ # WARNING!  Removing "sync" from the options is a very bad idea and
+@@ -35,3 +35,7 @@
+ # If set to "yes", more information will be logged via the syslog
+ # facility.
+ VERBOSE="no"
++
++# Location of the log file when verbose is Yes
++LOGFILE="/var/log/usbmount.log"
++

Modified: trunk/buildroot/package/usbmount/usbmount.mk
===================================================================
--- trunk/buildroot/package/usbmount/usbmount.mk	2007-02-12 10:41:59 UTC (rev 17861)
+++ trunk/buildroot/package/usbmount/usbmount.mk	2007-02-12 11:36:27 UTC (rev 17862)
@@ -18,7 +18,7 @@
 
 $(USBMOUNT_DIR)/.unpacked: $(DL_DIR)/$(USBMOUNT_SOURCE)
 	$(USBMOUNT_CAT) $(DL_DIR)/$(USBMOUNT_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
-	toolchain/patch-kernel.sh $(USBMOUNT_DIR) package/usbmount \*.patch
+	toolchain/patch-kernel.sh $(USBMOUNT_DIR) package/usbmount usbmount-$(USBMOUNT_VERSION).patch
 	touch $@
 
 $(TARGET_DIR)/$(USBMOUNT_TARGET_BINARY): $(USBMOUNT_DIR)/.unpacked

Deleted: trunk/buildroot/package/usbmount/usbmount.patch
===================================================================
--- trunk/buildroot/package/usbmount/usbmount.patch	2007-02-12 10:41:59 UTC (rev 17861)
+++ trunk/buildroot/package/usbmount/usbmount.patch	2007-02-12 11:36:27 UTC (rev 17862)
@@ -1,87 +0,0 @@
-diff -ur usbmount-0.0.14/usbmount usbmount-0.0.14-patched/usbmount
---- usbmount-0.0.14/usbmount	2005-07-08 11:51:02.000000000 -0500
-+++ usbmount-0.0.14-patched/usbmount	2006-11-28 09:13:42.000000000 -0600
-@@ -11,16 +11,20 @@
- # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
- # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- # PARTICULAR PURPOSE.
-+
-+#
-+# Changed to support config of logfile and vol_id and creating locks
-+# without the use of lockfile-create all for embedded use.
-+# Joshua D Henderson <jdhende1@rockwellcollins.com>
- #
- set -e
- exec > /dev/null 2>&1
- 
--
- # Log a string via the syslog facility.
- log()
- {
-     if test $1 != debug || expr "$VERBOSE" : "[yY]" > /dev/null; then
--	logger -p user.$1 -t "usbmount[$$]" -- "$2"
-+	echo "usbmount[$$] -- $2" >> $LOGFILE
-     fi
- }
- 
-@@ -37,7 +41,7 @@
- 
- 
- # Test if /sbin/vol_id is executable.
--test -x /sbin/vol_id || { log err "cannnot execute /sbin/vol_id"; exit 1; }
-+test -x $VOLID || { log err "cannnot execute $VOLID"; exit 1; }
- 
- # Default values for configuration variables.
- MOUNTPOINTS=""
-@@ -57,11 +61,11 @@
- if test "$1" = add; then
- 
-     # Acquire lock.
--    log debug "trying to acquire lock /var/run/usbmount/.mount.lock"
--    lockfile-create --retry 3 /var/run/usbmount/.mount || \
--	{ log err "cannot acquire lock /var/run/usbmount/.mount.lock"; exit 1; }
--    trap '( lockfile-remove /var/run/usbmount/.mount )' 0
--    log debug "acquired lock /var/run/usbmount/.mount.lock"
-+#    log debug "trying to acquire lock /var/lock/usbmount/.mount.lock"
-+#    lockfile-create --retry 3 /var/lock/usbmount/.mount || \
-+#	{ log err "cannot acquire lock /var/lock/usbmount/.mount.lock"; exit 1; }
-+#    trap '( lockfile-remove /var/lock/usbmount/.mount )' 0
-+#    log debug "acquired lock /var/lock/usbmount/.mount.lock"
- 
-     # Try to read from the device.  Some devices need a few seconds
-     # initialization time before they can be accessed.  Give up after
-@@ -85,10 +89,10 @@
-     # Test if the device contains a filesystem.  If it doesn't, no
-     # further action is required, but calling vol_id has the side effect
-     # that the partition table is read and partition devices are created.
--    if /sbin/vol_id "$DEVNAME" | egrep -q '^ID_FS_USAGE=(filesystem|disklabel)$'; then
-+    if $VOLID "$DEVNAME" | egrep -q '^ID_FS_USAGE=(filesystem|disklabel)$'; then
- 	log debug "$DEVNAME contains a filesystem or disklabel"
- 
--	fstype="`/sbin/vol_id -t \"$DEVNAME\"`"
-+	fstype="`$VOLID -t \"$DEVNAME\"`"
- 	log debug "$DEVNAME contains filesystem type $fstype"
- 
- 	# Test if the filesystem type is in the list of filesystem
-diff -ur usbmount-0.0.14/usbmount.conf usbmount-0.0.14-patched/usbmount.conf
---- usbmount-0.0.14/usbmount.conf	2005-04-08 09:05:10.000000000 -0500
-+++ usbmount-0.0.14-patched/usbmount.conf	2006-11-28 09:14:52.000000000 -0600
-@@ -17,7 +17,7 @@
- # sure all data is written to the medium before you remove it (e.g. run the #
- # "sync" command in a terminal window).  Otherwise, you *WILL* lose data!   #
- #############################################################################
--FILESYSTEMS="ext2 ext3"
-+FILESYSTEMS="ext2 ext3 vfat msdos"
- 
- # Mount options: Options passed to the mount command with the -o flag.
- # WARNING!  Removing "sync" from the options is a very bad idea and
-@@ -35,3 +35,9 @@
- # If set to "yes", more information will be logged via the syslog
- # facility.
- VERBOSE="no"
-+
-+# Location of vol_id
-+VOLID="/lib/udev/vol_id"
-+
-+# Location of the log file when verbose is Yes
-+LOGFILE="/var/log/usbmount.log"

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

* [Buildroot] svn commit: trunk/buildroot/package/usbmount
@ 2007-07-17  0:22 sjhill at uclibc.org
  0 siblings, 0 replies; 6+ messages in thread
From: sjhill at uclibc.org @ 2007-07-17  0:22 UTC (permalink / raw)
  To: buildroot

Author: sjhill
Date: 2007-07-16 17:22:16 -0700 (Mon, 16 Jul 2007)
New Revision: 19118

Log:
Do not use wildcard for patches.


Modified:
   trunk/buildroot/package/usbmount/usbmount.mk


Changeset:
Modified: trunk/buildroot/package/usbmount/usbmount.mk
===================================================================
--- trunk/buildroot/package/usbmount/usbmount.mk	2007-07-17 00:21:16 UTC (rev 19117)
+++ trunk/buildroot/package/usbmount/usbmount.mk	2007-07-17 00:22:16 UTC (rev 19118)
@@ -18,7 +18,7 @@
 
 $(USBMOUNT_DIR)/.unpacked: $(DL_DIR)/$(USBMOUNT_SOURCE)
 	$(USBMOUNT_CAT) $(DL_DIR)/$(USBMOUNT_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
-	toolchain/patch-kernel.sh $(USBMOUNT_DIR) package/usbmount usbmount-$(USBMOUNT_VERSION)\*.patch
+	toolchain/patch-kernel.sh $(USBMOUNT_DIR) package/usbmount usbmount-$(USBMOUNT_VERSION).patch
 	touch $@
 
 $(TARGET_DIR)/$(USBMOUNT_TARGET_BINARY): $(USBMOUNT_DIR)/.unpacked

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

* [Buildroot] svn commit: trunk/buildroot/package/usbmount
@ 2007-05-07  4:03 sjhill at uclibc.org
  0 siblings, 0 replies; 6+ messages in thread
From: sjhill at uclibc.org @ 2007-05-07  4:03 UTC (permalink / raw)
  To: buildroot

Author: sjhill
Date: 2007-05-06 21:03:42 -0700 (Sun, 06 May 2007)
New Revision: 18579

Log:
Modify the main script to use the lockfile program utilities. Mounting and un-mounting do not work reliably without them.


Modified:
   trunk/buildroot/package/usbmount/Config.in
   trunk/buildroot/package/usbmount/usbmount-0.0.14.1.patch


Changeset:
Modified: trunk/buildroot/package/usbmount/Config.in
===================================================================
--- trunk/buildroot/package/usbmount/Config.in	2007-05-07 04:02:31 UTC (rev 18578)
+++ trunk/buildroot/package/usbmount/Config.in	2007-05-07 04:03:42 UTC (rev 18579)
@@ -2,6 +2,8 @@
 	bool "usbmount"
 	default n
 	select BR2_PACKAGE_UDEV_VOLUME_ID
+	select BR2_PACKAGE_UDEV_SCSI_ID
+	select BR2_PACKAGE_LOCKFILE_PROGS
 	help
 	  The usbmount package automatically mounts USB mass storage devices
 	  when they are plugged in, and unmounts them when they are removed.

Modified: trunk/buildroot/package/usbmount/usbmount-0.0.14.1.patch
===================================================================
--- trunk/buildroot/package/usbmount/usbmount-0.0.14.1.patch	2007-05-07 04:02:31 UTC (rev 18578)
+++ trunk/buildroot/package/usbmount/usbmount-0.0.14.1.patch	2007-05-07 04:03:42 UTC (rev 18579)
@@ -1,22 +1,7 @@
-diff -ru usbmount-0.0.14.1/usbmount usbmount-patched/usbmount
---- usbmount-0.0.14.1/usbmount	2007-01-27 12:22:14.000000000 +0100
-+++ usbmount-patched/usbmount	2007-02-07 12:47:16.000000000 +0100
-@@ -11,7 +11,14 @@
- # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
- # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- # PARTICULAR PURPOSE.
-+
-+#
-+# Changed to support config of logfile and vol_id and creating locks
-+# without the use of lockfile-create all for embedded use.
-+# Joshua D Henderson <jdhende1@rockwellcollins.com>
-+# Patch touched by Alexander Rigbo <alexander.rigbo@acgnystrom.se>
- #
-+
- set -e
- exec > /dev/null 2>&1
- 
-@@ -20,7 +27,7 @@
+diff -ur usbmount-0.0.14.1/usbmount usbmount-0.0.14.1-patched/usbmount
+--- usbmount-0.0.14.1/usbmount	2007-01-27 05:22:14.000000000 -0600
++++ usbmount-0.0.14.1-patched/usbmount	2007-03-15 07:25:18.000000000 -0500
+@@ -20,7 +20,7 @@
  log()
  {
      if test $1 != debug || expr "$VERBOSE" : "[yY]" > /dev/null; then
@@ -25,7 +10,7 @@
      fi
  }
  
-@@ -57,11 +64,11 @@
+@@ -57,11 +57,11 @@
  if test "$1" = add; then
  
      # Acquire lock.
@@ -34,17 +19,25 @@
 -	{ log err "cannot acquire lock /var/run/usbmount/.mount.lock"; exit 1; }
 -    trap '( lockfile-remove /var/run/usbmount/.mount )' 0
 -    log debug "acquired lock /var/run/usbmount/.mount.lock"
-+#    log debug "trying to acquire lock /var/run/usbmount/.mount.lock"
-+#    lockfile-create --retry 3 /var/run/usbmount/.mount || \
-+#	{ log err "cannot acquire lock /var/run/usbmount/.mount.lock"; exit 1; }
-+#    trap '( lockfile-remove /var/run/usbmount/.mount )' 0
-+#    log debug "acquired lock /var/run/usbmount/.mount.lock"
++    log debug "trying to acquire lock /var/run/.usbmount.lock"
++    lockfile-create --retry 5 /var/run/.usbmount || \
++	{ log err "cannot acquire lock /var/run/.usbmount.lock"; exit 1; }
++    trap '( lockfile-remove /var/run/.usbmount )' 0
++    log debug "acquired lock /var/run/.usbmount.lock"
  
      # Try to read from the device.  Some devices need a few seconds
      # initialization time before they can be accessed.  Give up after
-diff -ru usbmount-0.0.14.1/usbmount.conf usbmount-patched/usbmount.conf
---- usbmount-0.0.14.1/usbmount.conf	2005-04-08 16:05:10.000000000 +0200
-+++ usbmount-patched/usbmount.conf	2007-02-07 12:44:39.000000000 +0100
+@@ -184,6 +184,7 @@
+ 		log info "executing command: run-parts /etc/usbmount/umount.d"
+ 		run-parts /etc/usbmount/umount.d || :
+ 	    fi
++	    lockfile-remove /var/run/.usbmount
+ 	    break
+ 	fi
+     done < /proc/mounts
+diff -ur usbmount-0.0.14.1/usbmount.conf usbmount-0.0.14.1-patched/usbmount.conf
+--- usbmount-0.0.14.1/usbmount.conf	2005-04-08 09:05:10.000000000 -0500
++++ usbmount-0.0.14.1-patched/usbmount.conf	2007-03-15 07:21:33.000000000 -0500
 @@ -17,7 +17,7 @@
  # sure all data is written to the medium before you remove it (e.g. run the #
  # "sync" command in a terminal window).  Otherwise, you *WILL* lose data!   #

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

* [Buildroot] svn commit: trunk/buildroot/package/usbmount
  2007-02-12 10:14 aldot at uclibc.org
@ 2007-02-12 10:19 ` Alexander Rigbo
  0 siblings, 0 replies; 6+ messages in thread
From: Alexander Rigbo @ 2007-02-12 10:19 UTC (permalink / raw)
  To: buildroot

Hi,

I sent an email to the list earlier, please see it here:

http://buildroot.uclibc.org/lists/buildroot/2007-February/001513.html

Best Regards
Alexander

On Monday 12 February 2007 11.14.12 aldot at uclibc.org wrote:
> Author: aldot
> Date: 2007-02-12 02:14:12 -0800 (Mon, 12 Feb 2007)
> New Revision: 17860
>
> Log:
> - bump version as noticed by xride
>
>
> Modified:
>    trunk/buildroot/package/usbmount/usbmount.mk
>
>
> Changeset:
> Modified: trunk/buildroot/package/usbmount/usbmount.mk
> ===================================================================
> --- trunk/buildroot/package/usbmount/usbmount.mk	2007-02-12 10:10:44 UTC
> (rev 17859) +++ trunk/buildroot/package/usbmount/usbmount.mk	2007-02-12
> 10:14:12 UTC (rev 17860) @@ -3,10 +3,11 @@
>  # usbmount
>  #
>  #############################################################
> -USBMOUNT_SOURCE:=usbmount_0.0.14.tar.gz
> +USBMOUNT_VERSION=0.0.14.1
> +USBMOUNT_SOURCE:=usbmount_$(USBMOUNT_VERSION).tar.gz
>  USBMOUNT_SITE:=http://usbmount.alioth.debian.org/package/
>  USBMOUNT_CAT:=$(ZCAT)
> -USBMOUNT_DIR:=$(BUILD_DIR)/usbmount-0.0.14
> +USBMOUNT_DIR:=$(BUILD_DIR)/usbmount-$(USBMOUNT_VERSION)
>  USBMOUNT_BINARY:=usbmount
>  USBMOUNT_TARGET_BINARY:=sbin/usbmount
>
> @@ -18,7 +19,7 @@
>  $(USBMOUNT_DIR)/.unpacked: $(DL_DIR)/$(USBMOUNT_SOURCE)
>  	$(USBMOUNT_CAT) $(DL_DIR)/$(USBMOUNT_SOURCE) | tar -C $(BUILD_DIR)
> $(TAR_OPTIONS) - toolchain/patch-kernel.sh $(USBMOUNT_DIR) package/usbmount
> \*.patch -	touch $(USBMOUNT_DIR)/.unpacked
> +	touch $@
>
>  $(TARGET_DIR)/$(USBMOUNT_TARGET_BINARY): $(USBMOUNT_DIR)/.unpacked
>  	$(INSTALL) -m 0755 -D $(USBMOUNT_DIR)/usbmount
> $(TARGET_DIR)/$(USBMOUNT_TARGET_BINARY)
>
> _______________________________________________
> buildroot mailing list
> buildroot at uclibc.org
> http://busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] svn commit: trunk/buildroot/package/usbmount
@ 2007-02-12 10:14 aldot at uclibc.org
  2007-02-12 10:19 ` Alexander Rigbo
  0 siblings, 1 reply; 6+ messages in thread
From: aldot at uclibc.org @ 2007-02-12 10:14 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-02-12 02:14:12 -0800 (Mon, 12 Feb 2007)
New Revision: 17860

Log:
- bump version as noticed by xride


Modified:
   trunk/buildroot/package/usbmount/usbmount.mk


Changeset:
Modified: trunk/buildroot/package/usbmount/usbmount.mk
===================================================================
--- trunk/buildroot/package/usbmount/usbmount.mk	2007-02-12 10:10:44 UTC (rev 17859)
+++ trunk/buildroot/package/usbmount/usbmount.mk	2007-02-12 10:14:12 UTC (rev 17860)
@@ -3,10 +3,11 @@
 # usbmount
 #
 #############################################################
-USBMOUNT_SOURCE:=usbmount_0.0.14.tar.gz
+USBMOUNT_VERSION=0.0.14.1
+USBMOUNT_SOURCE:=usbmount_$(USBMOUNT_VERSION).tar.gz
 USBMOUNT_SITE:=http://usbmount.alioth.debian.org/package/
 USBMOUNT_CAT:=$(ZCAT)
-USBMOUNT_DIR:=$(BUILD_DIR)/usbmount-0.0.14
+USBMOUNT_DIR:=$(BUILD_DIR)/usbmount-$(USBMOUNT_VERSION)
 USBMOUNT_BINARY:=usbmount
 USBMOUNT_TARGET_BINARY:=sbin/usbmount
 
@@ -18,7 +19,7 @@
 $(USBMOUNT_DIR)/.unpacked: $(DL_DIR)/$(USBMOUNT_SOURCE)
 	$(USBMOUNT_CAT) $(DL_DIR)/$(USBMOUNT_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
 	toolchain/patch-kernel.sh $(USBMOUNT_DIR) package/usbmount \*.patch
-	touch $(USBMOUNT_DIR)/.unpacked
+	touch $@
 
 $(TARGET_DIR)/$(USBMOUNT_TARGET_BINARY): $(USBMOUNT_DIR)/.unpacked
 	$(INSTALL) -m 0755 -D $(USBMOUNT_DIR)/usbmount $(TARGET_DIR)/$(USBMOUNT_TARGET_BINARY)

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

* [Buildroot] svn commit: trunk/buildroot/package/usbmount
@ 2007-02-06 18:11 sjhill at uclibc.org
  0 siblings, 0 replies; 6+ messages in thread
From: sjhill at uclibc.org @ 2007-02-06 18:11 UTC (permalink / raw)
  To: buildroot

Author: sjhill
Date: 2007-02-06 10:11:59 -0800 (Tue, 06 Feb 2007)
New Revision: 17796

Log:
Satisfy dependency.


Modified:
   trunk/buildroot/package/usbmount/Config.in


Changeset:
Modified: trunk/buildroot/package/usbmount/Config.in
===================================================================
--- trunk/buildroot/package/usbmount/Config.in	2007-02-06 18:09:54 UTC (rev 17795)
+++ trunk/buildroot/package/usbmount/Config.in	2007-02-06 18:11:59 UTC (rev 17796)
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_USBMOUNT
 	bool "usbmount"
 	default n
+	select BR2_PACKAGE_UDEV_VOLUME_ID
 	help
 	  The usbmount package automatically mounts USB mass storage devices
 	  when they are plugged in, and unmounts them when they are removed.

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

end of thread, other threads:[~2007-07-17  0:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-12 11:36 [Buildroot] svn commit: trunk/buildroot/package/usbmount aldot at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2007-07-17  0:22 sjhill at uclibc.org
2007-05-07  4:03 sjhill at uclibc.org
2007-02-12 10:14 aldot at uclibc.org
2007-02-12 10:19 ` Alexander Rigbo
2007-02-06 18:11 sjhill at uclibc.org

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.