Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package/sudo
@ 2006-10-03 13:42 aldot at uclibc.org
  0 siblings, 0 replies; 14+ messages in thread
From: aldot at uclibc.org @ 2006-10-03 13:42 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2006-10-03 06:42:42 -0700 (Tue, 03 Oct 2006)
New Revision: 16296

Log:
- late binding isn't a good idea there, i did end up with an empty SOURCE.


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


Changeset:
Modified: trunk/buildroot/package/sudo/sudo.mk
===================================================================
--- trunk/buildroot/package/sudo/sudo.mk	2006-10-03 10:47:35 UTC (rev 16295)
+++ trunk/buildroot/package/sudo/sudo.mk	2006-10-03 13:42:42 UTC (rev 16296)
@@ -5,10 +5,10 @@
 #############################################################
 
 SUDO_VER:=1.6.8p9
+SUDO_SOURCE:=sudo-$(SUDO_VER).tar.gz
+SUDO_SITE:=http://www.courtesan.com/sudo/dist
 SUDO_DIR:=$(BUILD_DIR)/sudo-$(SUDO_VER)
-SUDO_SOURCE:=sudo-$(SUDO_VER).tar.gz
-SUDO_SITE=http://www.courtesan.com/sudo/dist
-SUDO_UNZIP=$(ZCAT)
+SUDO_UNZIP:=$(ZCAT)
 
 $(DL_DIR)/$(SUDO_SOURCE):
 	 $(WGET) -P $(DL_DIR) $(SUDO_SITE)/$(SUDO_SOURCE)

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
@ 2006-12-15 15:15 aldot at uclibc.org
  0 siblings, 0 replies; 14+ messages in thread
From: aldot at uclibc.org @ 2006-12-15 15:15 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2006-12-15 07:15:35 -0800 (Fri, 15 Dec 2006)
New Revision: 16947

Log:
- sudo depends on host-fakeroot


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


Changeset:
Modified: trunk/buildroot/package/sudo/sudo.mk
===================================================================
--- trunk/buildroot/package/sudo/sudo.mk	2006-12-15 14:40:55 UTC (rev 16946)
+++ trunk/buildroot/package/sudo/sudo.mk	2006-12-15 15:15:35 UTC (rev 16947)
@@ -17,7 +17,6 @@
 
 $(SUDO_DIR)/.unpacked: $(DL_DIR)/$(SUDO_SOURCE)
 	$(SUDO_UNZIP) $(DL_DIR)/$(SUDO_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
-	# Allow sudo patches.
 	toolchain/patch-kernel.sh $(SUDO_DIR) package/sudo sudo\*.patch
 	touch $(SUDO_DIR)/.unpacked
 
@@ -60,7 +59,7 @@
 		> $(STAGING_DIR)/.fakeroot.sudo
 	touch -c $(TARGET_DIR)/usr/bin/sudo
 
-sudo: uclibc $(TARGET_DIR)/usr/bin/sudo
+sudo: uclibc host-fakeroot $(TARGET_DIR)/usr/bin/sudo
 
 sudo-clean:
 	rm -f $(TARGET_DIR)/usr/bin/sudo

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
@ 2006-12-21 13:52 aldot at uclibc.org
  0 siblings, 0 replies; 14+ messages in thread
From: aldot at uclibc.org @ 2006-12-21 13:52 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2006-12-21 05:52:43 -0800 (Thu, 21 Dec 2006)
New Revision: 17031

Log:
- bump version and make it work


Added:
   trunk/buildroot/package/sudo/sudo_1.6.8p12-1ubuntu6.patch
   trunk/buildroot/package/sudo/sudo_1.6.8p12-2-no-cxx-configcheck.patch

Removed:
   trunk/buildroot/package/sudo/sudo_1.6.8p9-2ubuntu2.3.patch

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


Changeset:

Sorry, the patch is too large to include (7163 lines).
Please use ViewCVS to see it!

http://uclibc.org/cgi-bin/viewcvs.cgi?view=rev&root=svn&rev=17031

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
@ 2008-03-06 18:26 ninevoltz at uclibc.org
  0 siblings, 0 replies; 14+ messages in thread
From: ninevoltz at uclibc.org @ 2008-03-06 18:26 UTC (permalink / raw)
  To: buildroot

Author: ninevoltz
Date: 2008-03-06 10:26:10 -0800 (Thu, 06 Mar 2008)
New Revision: 21230

Log:
cleanup sudo makefile

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


Changeset:
Modified: trunk/buildroot/package/sudo/sudo.mk
===================================================================
--- trunk/buildroot/package/sudo/sudo.mk	2008-03-06 18:25:46 UTC (rev 21229)
+++ trunk/buildroot/package/sudo/sudo.mk	2008-03-06 18:26:10 UTC (rev 21230)
@@ -19,7 +19,7 @@
 	$(SUDO_UNZIP) $(DL_DIR)/$(SUDO_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
 	toolchain/patch-kernel.sh $(SUDO_DIR) package/sudo sudo\*.patch
 	$(CONFIG_UPDATE) $(SUDO_DIR)
-	touch $(SUDO_DIR)/.unpacked
+	touch $@
 
 $(SUDO_DIR)/.configured: $(SUDO_DIR)/.unpacked $(SUDO_CONFIG_FILE)
 	(cd $(SUDO_DIR); rm -rf config.cache; \
@@ -50,11 +50,11 @@
 		$(SUDO_EXTRA_CONFIG) \
 	)
 
-	touch $(SUDO_DIR)/.configured
+	touch $@
 
 $(SUDO_DIR)/sudo: $(SUDO_DIR)/.configured
 	$(MAKE) -C $(SUDO_DIR)
-	touch -c $(SUDO_DIR)/sudo
+	touch -c $@
 
 $(TARGET_DIR)/usr/bin/sudo: $(SUDO_DIR)/sudo
 	$(INSTALL) -m 4555 -D $(SUDO_DIR)/sudo $(TARGET_DIR)/usr/bin/sudo

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
@ 2008-08-27 20:18 jacmet at uclibc.org
  0 siblings, 0 replies; 14+ messages in thread
From: jacmet at uclibc.org @ 2008-08-27 20:18 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-08-27 13:18:43 -0700 (Wed, 27 Aug 2008)
New Revision: 23250

Log:
sudo: fix long help text lines

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


Changeset:
Modified: trunk/buildroot/package/sudo/Config.in
===================================================================
--- trunk/buildroot/package/sudo/Config.in	2008-08-27 20:18:40 UTC (rev 23249)
+++ trunk/buildroot/package/sudo/Config.in	2008-08-27 20:18:43 UTC (rev 23250)
@@ -1,7 +1,7 @@
 config BR2_PACKAGE_SUDO
 	bool "sudo"
 	help
-	 Sudo is a program designed to allow a sysadmin to give limited root
-	 privileges to users and log root activity.  The basic philosophy is to give
-	 as few privileges as possible but still allow people to get their work done.
-
+	  Sudo is a program designed to allow a sysadmin to give
+	  limited root privileges to users and log root activity.  The
+	  basic philosophy is to give as few privileges as possible
+	  but still allow people to get their work done.

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
@ 2009-01-11 19:58 ulf at uclibc.org
  0 siblings, 0 replies; 14+ messages in thread
From: ulf at uclibc.org @ 2009-01-11 19:58 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2009-01-11 19:58:51 +0000 (Sun, 11 Jan 2009)
New Revision: 24752

Log:
Move SUDO_SITE to ATMEL_MIRROR, No cross-compiler patches for later versions which does not build without, fix installation

Added:
   trunk/buildroot/package/sudo/sudo-1.6.8p12-001-ubuntu6.patch
   trunk/buildroot/package/sudo/sudo-1.6.8p12-002-no-cxx-configcheck.patch
   trunk/buildroot/package/sudo/sudo-1.6.8p12-003-cross-compile.patch

Removed:
   trunk/buildroot/package/sudo/sudo-crosscompile.patch
   trunk/buildroot/package/sudo/sudo_1.6.8p12-1ubuntu6.patch
   trunk/buildroot/package/sudo/sudo_1.6.8p12-2-no-cxx-configcheck.patch

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


Changeset:

Sorry, the patch is too large to include (28579 lines).
Please use ViewCVS to see it!

http://uclibc.org/cgi-bin/viewcvs.cgi?view=rev&root=svn&rev=24752

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
@ 2009-01-11 20:36 jacmet at uclibc.org
  2009-01-11 22:24 ` Ulf Samuelsson
  0 siblings, 1 reply; 14+ messages in thread
From: jacmet at uclibc.org @ 2009-01-11 20:36 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2009-01-11 20:36:17 +0000 (Sun, 11 Jan 2009)
New Revision: 24763

Log:
sudo: use Debian as upstream

As we are using a Debian/Ubuntu patch, it makes more sense to get the
tarball from there as well.

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


Changeset:
Modified: trunk/buildroot/package/sudo/sudo.mk
===================================================================
--- trunk/buildroot/package/sudo/sudo.mk	2009-01-11 20:35:34 UTC (rev 24762)
+++ trunk/buildroot/package/sudo/sudo.mk	2009-01-11 20:36:17 UTC (rev 24763)
@@ -5,15 +5,13 @@
 #############################################################
 
 SUDO_VERSION:=1.6.8p12
-#SUDO_SITE:=ftp://ftp.sudo.ws/pub/sudo/
-SUDO_SITE:=$(BR2_ATMEL_MIRROR)
+SUDO_SITE:=$(BR2_DEBIAN_MIRROR)/debian/pool/main/s/sudo
 
 #SUDO_VERSION:=1.7.0
 #SUDO_SITE:=http://www.courtesan.com/sudo/dist
 # 1.7.0 Needs update Cross-Compiler patches
 
-
-SUDO_SOURCE:=sudo-$(SUDO_VERSION).tar.gz
+SUDO_SOURCE:=sudo_$(SUDO_VERSION).orig.tar.gz
 SUDO_DIR:=$(BUILD_DIR)/sudo-$(SUDO_VERSION)
 SUDO_UNZIP:=$(ZCAT)
 

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
  2009-01-11 20:36 jacmet at uclibc.org
@ 2009-01-11 22:24 ` Ulf Samuelsson
  2009-01-12  6:26   ` Peter Korsgaard
  0 siblings, 1 reply; 14+ messages in thread
From: Ulf Samuelsson @ 2009-01-11 22:24 UTC (permalink / raw)
  To: buildroot

s?n 2009-01-11 klockan 20:36 +0000 skrev jacmet at uclibc.org:
> Author: jacmet
> Date: 2009-01-11 20:36:17 +0000 (Sun, 11 Jan 2009)
> New Revision: 24763
> 
> Log:
> sudo: use Debian as upstream
> 
> As we are using a Debian/Ubuntu patch, it makes more sense to get the
> tarball from there as well.
> 

?I am pretty sure you id NOT test that...
Please remove any such tarball from your download directory
and try building sudo, and you will see.
Not since they obsoleted that version.
Either you update to a newer version AND
create a patchset that compiled or you
revert that patch.

?


> Modified:
>    trunk/buildroot/package/sudo/sudo.mk
> 
> 
> Changeset:
> Modified: trunk/buildroot/package/sudo/sudo.mk
> ===================================================================
> --- trunk/buildroot/package/sudo/sudo.mk	2009-01-11 20:35:34 UTC (rev 24762)
> +++ trunk/buildroot/package/sudo/sudo.mk	2009-01-11 20:36:17 UTC (rev 24763)
> @@ -5,15 +5,13 @@
>  #############################################################
>  
>  SUDO_VERSION:=1.6.8p12
> -#SUDO_SITE:=ftp://ftp.sudo.ws/pub/sudo/
> -SUDO_SITE:=$(BR2_ATMEL_MIRROR)
> +SUDO_SITE:=$(BR2_DEBIAN_MIRROR)/debian/pool/main/s/sudo
>  
>  #SUDO_VERSION:=1.7.0
>  #SUDO_SITE:=http://www.courtesan.com/sudo/dist
>  # 1.7.0 Needs update Cross-Compiler patches
>  
> -
> -SUDO_SOURCE:=sudo-$(SUDO_VERSION).tar.gz
> +SUDO_SOURCE:=sudo_$(SUDO_VERSION).orig.tar.gz
>  SUDO_DIR:=$(BUILD_DIR)/sudo-$(SUDO_VERSION)
>  SUDO_UNZIP:=$(ZCAT)
>  
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
@ 2009-01-11 22:31 ulf at uclibc.org
  0 siblings, 0 replies; 14+ messages in thread
From: ulf at uclibc.org @ 2009-01-11 22:31 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2009-01-11 22:31:25 +0000 (Sun, 11 Jan 2009)
New Revision: 24776

Log:
revert patch to allow downloading sudo from an EXISTING location

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


Changeset:
Modified: trunk/buildroot/package/sudo/sudo.mk
===================================================================
--- trunk/buildroot/package/sudo/sudo.mk	2009-01-11 22:11:29 UTC (rev 24775)
+++ trunk/buildroot/package/sudo/sudo.mk	2009-01-11 22:31:25 UTC (rev 24776)
@@ -5,13 +5,14 @@
 #############################################################
 
 SUDO_VERSION:=1.6.8p12
-SUDO_SITE:=$(BR2_DEBIAN_MIRROR)/debian/pool/main/s/sudo
+SUDO_SITE:=$(BR2_ATMEL_MIRROR)
 
 #SUDO_VERSION:=1.7.0
 #SUDO_SITE:=http://www.courtesan.com/sudo/dist
 # 1.7.0 Needs update Cross-Compiler patches
 
-SUDO_SOURCE:=sudo_$(SUDO_VERSION).orig.tar.gz
+
+SUDO_SOURCE:=sudo-$(SUDO_VERSION).tar.gz
 SUDO_DIR:=$(BUILD_DIR)/sudo-$(SUDO_VERSION)
 SUDO_UNZIP:=$(ZCAT)
 

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
@ 2009-01-12  0:06 ulf at uclibc.org
  2009-01-12  6:27 ` Peter Korsgaard
  0 siblings, 1 reply; 14+ messages in thread
From: ulf at uclibc.org @ 2009-01-12  0:06 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2009-01-12 00:06:49 +0000 (Mon, 12 Jan 2009)
New Revision: 24777

Log:
Sudo source package IS at DEBIAN, but with a different name

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


Changeset:
Modified: trunk/buildroot/package/sudo/sudo.mk
===================================================================
--- trunk/buildroot/package/sudo/sudo.mk	2009-01-11 22:31:25 UTC (rev 24776)
+++ trunk/buildroot/package/sudo/sudo.mk	2009-01-12 00:06:49 UTC (rev 24777)
@@ -5,14 +5,14 @@
 #############################################################
 
 SUDO_VERSION:=1.6.8p12
-SUDO_SITE:=$(BR2_ATMEL_MIRROR)
+SUDO_SITE:=$(BR2_DEBIAN_MIRROR)/debian/pool/main/s/sudo
+SUDO_SOURCE:=sudo_$(SUDO_VERSION).orig.tar.gz
 
 #SUDO_VERSION:=1.7.0
 #SUDO_SITE:=http://www.courtesan.com/sudo/dist
 # 1.7.0 Needs update Cross-Compiler patches
+# SUDO_SOURCE:=sudo-$(SUDO_VERSION).tar.gz
 
-
-SUDO_SOURCE:=sudo-$(SUDO_VERSION).tar.gz
 SUDO_DIR:=$(BUILD_DIR)/sudo-$(SUDO_VERSION)
 SUDO_UNZIP:=$(ZCAT)
 

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
  2009-01-11 22:24 ` Ulf Samuelsson
@ 2009-01-12  6:26   ` Peter Korsgaard
  0 siblings, 0 replies; 14+ messages in thread
From: Peter Korsgaard @ 2009-01-12  6:26 UTC (permalink / raw)
  To: buildroot

>>>>> "Ulf" == Ulf Samuelsson <ulf.samuelsson@atmel.com> writes:

Hi,

 >> As we are using a Debian/Ubuntu patch, it makes more sense to get the
 >> tarball from there as well.
 >> 

 Ulf> ?I am pretty sure you id NOT test that...

Ofcourse I did - Try it.

 Ulf> Please remove any such tarball from your download directory
 Ulf> and try building sudo, and you will see.
 Ulf> Not since they obsoleted that version.
 Ulf> Either you update to a newer version AND
 Ulf> create a patchset that compiled or you
 Ulf> revert that patch.

But
http://ftp.debian.org/debian/pool/main/s/sudo/sudo_1.6.8p12.orig.tar.gz
exists, so maybe just give it a try, before you complain - will you? ;)

-- 
Bye, Peter Korsgaard

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
  2009-01-12  0:06 [Buildroot] svn commit: trunk/buildroot/package/sudo ulf at uclibc.org
@ 2009-01-12  6:27 ` Peter Korsgaard
  2009-01-12  8:42   ` Ulf Samuelsson
  0 siblings, 1 reply; 14+ messages in thread
From: Peter Korsgaard @ 2009-01-12  6:27 UTC (permalink / raw)
  To: buildroot

>>>>> "ulf" == ulf  <ulf@uclibc.org> writes:

 ulf> Author: ulf
 ulf> Date: 2009-01-12 00:06:49 +0000 (Mon, 12 Jan 2009)
 ulf> New Revision: 24777

 ulf> Log:
 ulf> Sudo source package IS at DEBIAN, but with a different name

Ok, so this reverts your revert and we're now back to my 24763
version?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
  2009-01-12  6:27 ` Peter Korsgaard
@ 2009-01-12  8:42   ` Ulf Samuelsson
  2009-01-12  9:01     ` Peter Korsgaard
  0 siblings, 1 reply; 14+ messages in thread
From: Ulf Samuelsson @ 2009-01-12  8:42 UTC (permalink / raw)
  To: buildroot



>>>>>> "ulf" == ulf  <ulf@uclibc.org> writes:
> 
> ulf> Author: ulf
> ulf> Date: 2009-01-12 00:06:49 +0000 (Mon, 12 Jan 2009)
> ulf> New Revision: 24777
> 
> ulf> Log:
> ulf> Sudo source package IS at DEBIAN, but with a different name
> 
> Ok, so this reverts your revert and we're now back to my 24763
> version?
> 

No, your patch breaks the build, because the filename has changed
from the original name.

Best Regards
Ulf Samuelsson


> -- 
> Bye, Peter Korsgaard
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>

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

* [Buildroot] svn commit: trunk/buildroot/package/sudo
  2009-01-12  8:42   ` Ulf Samuelsson
@ 2009-01-12  9:01     ` Peter Korsgaard
  0 siblings, 0 replies; 14+ messages in thread
From: Peter Korsgaard @ 2009-01-12  9:01 UTC (permalink / raw)
  To: buildroot

>>>>> "Ulf" == Ulf Samuelsson <ulf.samuelsson@atmel.com> writes:

 >> Ok, so this reverts your revert and we're now back to my 24763
 >> version?
 >> 

 Ulf> No, your patch breaks the build, because the filename has changed
 Ulf> from the original name.

Huh, it built here.

Are you saying that sudo_1.6.8p12.orig.tar.gz doesn't exist on your
Debian mirror of choice?

Here's r24763 again for your reference.

commit 5c3d918e2f5cbf48aba250c2da1d9c9a3eb440b8
Author: jacmet <jacmet@69ca8d6d-28ef-0310-b511-8ec308f3f277>
Date:   Sun Jan 11 20:36:17 2009 +0000

    sudo: use Debian as upstream
    
    As we are using a Debian/Ubuntu patch, it makes more sense to get the
    tarball from there as well.
    
    git-svn-id: svn+ssh://uclibc.org/svn/trunk/buildroot at 24763 69ca8d6d-28ef-0310-b511-8ec308f3f277

diff --git a/package/sudo/sudo.mk b/package/sudo/sudo.mk
index d36b531..fc76955 100644
--- a/package/sudo/sudo.mk
+++ b/package/sudo/sudo.mk
@@ -5,15 +5,13 @@
 #############################################################
 
 SUDO_VERSION:=1.6.8p12
-#SUDO_SITE:=ftp://ftp.sudo.ws/pub/sudo/
-SUDO_SITE:=$(BR2_ATMEL_MIRROR)
+SUDO_SITE:=$(BR2_DEBIAN_MIRROR)/debian/pool/main/s/sudo
 
 #SUDO_VERSION:=1.7.0
 #SUDO_SITE:=http://www.courtesan.com/sudo/dist
 # 1.7.0 Needs update Cross-Compiler patches
 
-
-SUDO_SOURCE:=sudo-$(SUDO_VERSION).tar.gz
+SUDO_SOURCE:=sudo_$(SUDO_VERSION).orig.tar.gz
 SUDO_DIR:=$(BUILD_DIR)/sudo-$(SUDO_VERSION)
 SUDO_UNZIP:=$(ZCAT)

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2009-01-12  9:01 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-12  0:06 [Buildroot] svn commit: trunk/buildroot/package/sudo ulf at uclibc.org
2009-01-12  6:27 ` Peter Korsgaard
2009-01-12  8:42   ` Ulf Samuelsson
2009-01-12  9:01     ` Peter Korsgaard
  -- strict thread matches above, loose matches on Subject: below --
2009-01-11 22:31 ulf at uclibc.org
2009-01-11 20:36 jacmet at uclibc.org
2009-01-11 22:24 ` Ulf Samuelsson
2009-01-12  6:26   ` Peter Korsgaard
2009-01-11 19:58 ulf at uclibc.org
2008-08-27 20:18 jacmet at uclibc.org
2008-03-06 18:26 ninevoltz at uclibc.org
2006-12-21 13:52 aldot at uclibc.org
2006-12-15 15:15 aldot at uclibc.org
2006-10-03 13:42 aldot at uclibc.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox