Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: aldot at uclibc.org <aldot@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot
Date: Sun,  8 Jul 2007 09:28:54 -0700 (PDT)	[thread overview]
Message-ID: <20070708162854.0BA39A6AAF@busybox.net> (raw)

Author: aldot
Date: 2007-07-08 09:28:54 -0700 (Sun, 08 Jul 2007)
New Revision: 19040

Log:
- populate some BR2_GCC_TARGET_ARCH, BR2_GCC_TARGET_ABI, BR2_GCC_TARGET_TUNE defaults (hand-waving mode, of course untested.. ;)


Modified:
   trunk/buildroot/Config.in


Changeset:
Modified: trunk/buildroot/Config.in
===================================================================
--- trunk/buildroot/Config.in	2007-07-08 16:27:25 UTC (rev 19039)
+++ trunk/buildroot/Config.in	2007-07-08 16:28:54 UTC (rev 19040)
@@ -22,6 +22,8 @@
 	bool "avr32"
 config BR2_cris
 	bool "cris"
+config BR2_ia64
+	bool "ia64"
 config BR2_i386
 	bool "i386"
 config BR2_m68k
@@ -34,6 +36,8 @@
 	bool "nios2"
 config BR2_powerpc
 	bool "powerpc"
+config BR2_s390
+	bool "s390"
 config BR2_sh
 	bool "superh"
 config BR2_sh64
@@ -157,7 +161,7 @@
 choice
 	prompt "Target Architecture Variant"
 	depends BR2_i386
-	default BR2_x86_i686
+	default BR2_x86_i386
 	help
 	  Specific CPU variant to use
 
@@ -169,12 +173,46 @@
 	bool "i586"
 config BR2_x86_i686
 	bool "i686"
+config BR2_x86_pentiumpro
+	bool "pentium pro"
+config BR2_x86_pentium_mmx
+	bool "pentium MMX"
+config BR2_x86_pentium_m
+	bool "pentium mobile"
+config BR2_x86_pentium2
+	bool "pentium2"
+config BR2_x86_pentium3
+	bool "pentium3"
 config BR2_x86_pentium4
 	bool "pentium4"
+config BR2_x86_prescott
+	bool "prescott"
 config BR2_x86_nocona
 	bool "nocona"
 config BR2_x86_core2
 	bool "core2"
+config BR2_x86_k6
+	bool "k6"
+config BR2_x86_k6_2
+	bool "k6-2"
+config BR2_x86_athlon
+	bool "athlon"
+config BR2_x86_athlon_4
+	bool "athlon-4"
+config BR2_x86_opteron
+	bool "opteron"
+config BR2_x86_opteron_sse3
+	bool "opteron w/ SSE3"
+config BR2_x86_barcelona
+	bool "barcelona"
+config BR2_x86_geode
+	bool "geode"
+config BR2_x86_c3
+	bool "cyrix 3 (MMX + 3dNOW!)"
+config BR2_x86_winchip_c6
+	bool "IDT winchip C6 (i486 + slow MMX)"
+config BR2_x86_winchip2
+	bool "IDT winchip2 (i486 +MMX +SSE)"
 endchoice
 
 choice
@@ -184,6 +222,10 @@
 	help
 	  Specific CPU variant to use
 
+config BR2_x86_64_barcelona
+	bool "barcelona"
+config BR2_x86_64_opteron_sse3
+	bool "opteron w/ sse3"
 config BR2_x86_64_opteron
 	bool "opteron"
 config BR2_x86_64_nocona
@@ -192,6 +234,61 @@
 	bool "core2"
 endchoice
 
+choice
+	prompt "Target Architecture Variant"
+	depends BR2_alpha
+	default BR2_alpha_21064
+	help
+	  Specific CPU variant to use
+
+config BR2_alpha_21064
+	bool "21064"
+config BR2_alpha_21164
+	bool "21164"
+config BR2_alpha_21164a
+	bool "21164a"
+config BR2_alpha_21164pc
+	bool "21164pc"
+config BR2_alpha_21264
+	bool "21264"
+config BR2_alpha_21264a
+	bool "21264a"
+endchoice
+
+choice
+	prompt "Target Architecture Variant"
+	depends BR2_s390
+	default BR2_s390_g5
+	help
+	  Specific CPU variant to use
+
+config BR2_s390_g5
+	bool "g5"
+config BR2_s390_g6
+	bool "g6"
+config BR2_s390_z900
+	bool "z900"
+config BR2_s390_z990
+	bool "z990"
+config BR2_s390_z9_109
+	bool "z9_109"
+endchoice
+
+choice
+	prompt "Target Architecture Variant"
+	depends BR2_ia64
+	default BR2_ia64_itanium2
+	help
+	  Specific CPU variant to use
+
+config BR2_ia64_itanium1
+	bool "itanium 1"
+config BR2_ia64_itanium2
+	bool "itanium 2"
+endchoice
+
+
+
 config BR2_ARCH
 	string
 	default "alpha"		if BR2_alpha
@@ -206,11 +303,14 @@
 	default "i686"		if BR2_x86_pentium4
 	default "i686"		if BR2_x86_nocona
 	default "i686"		if BR2_x86_core2
+	default "ia64"		if BR2_ia64
 	default "m68k"		if BR2_m68k
 	default "mips"		if BR2_mips
 	default "mipsel"	if BR2_mipsel
 	default "nios2"		if BR2_nios2
 	default "powerpc"	if BR2_powerpc
+	default "s390"		if BR2_s390
+	default "s390"		if BR2_s390x
 	default "sh2a_nofpueb"	if BR2_sh2a_nofpueb
 	default "sh2eb"		if BR2_sh2eb
 	default "sh3"		if BR2_sh3
@@ -223,7 +323,10 @@
 	default "x86_64"	if BR2_x86_64_nocona
 	default "x86_64"	if BR2_x86_64_core2
 	default "x86_64"	if BR2_x86_64_opteron
+	default "x86_64"	if BR2_x86_64_opteron_sse3
+	default "x86_64"	if BR2_x86_64_barcelona
 
+
 config BR2_ENDIAN
 	string
 	default "LITTLE" if BR2_arm || BR2_cris || BR2_i386 || BR2_mipsel || \
@@ -233,6 +336,188 @@
 	                    BR2_powerpc || BR2_sh2a_nofpueb || BR2_sh2eb || \
 	                    BR2_sh3eb || BR2_sh4eb || BR2_sparc
 
+config BR2_GCC_TARGET_TUNE
+	string
+	default i386		if BR2_x86_i386
+	default i486		if BR2_x86_i486
+	default i586		if BR2_x86_i586
+	default pentium-mmx	if BR2_x86_pentium_mmx
+	default i686		if BR2_x86_i686
+	default pentiumpro	if BR2_x86_pentiumpro
+	default pentium-m	if BR2_x86_pentium_m
+	default pentium2	if BR2_x86_pentium2
+	default pentium3	if BR2_x86_pentium3
+	default pentium4	if BR2_x86_pentium4
+	default prescott	if BR2_x86_prescott
+	default nocona		if BR2_x86_nocona
+	default core2		if BR2_x86_core2
+	default k8		if BR2_x86_opteron
+	default k8-sse3		if BR2_x86_opteron_sse3
+	default barcelona	if BR2_x86_barcelona
+	default k6		if BR2_x86_k6
+	default k6-2		if BR2_x86_k6_2
+	default athlon		if BR2_x86_athlon
+	default athlon-4	if BR2_x86_athlon_4
+	default winchip-c6	if BR2_x86_winchip_c6
+	default winchip2	if BR2_x86_winchip2
+	default c3		if BR2_x86_c3
+	default geode		if BR2_x86_geode
+	default nocona		if BR2_x86_64_nocona
+	default core2		if BR2_x86_64_core2
+	default k8		if BR2_x86_64_opteron
+	default k8-sse3		if BR2_x86_64_opteron_sse3
+	default barcelona	if BR2_x86_64_barcelona
+	default arm600		if BR2_arm600
+	default arm610		if BR2_arm610
+	default arm620		if BR2_arm620
+	default arm7tdmi	if BR2_arm7tdmi
+	default arm7tdmi	if BR2_arm720t
+	default arm7tdmi	if BR2_arm740t
+	default arm920		if BR2_arm920
+	default arm920t		if BR2_arm920t
+	default arm922t		if BR2_arm922t
+	default arm9tdmi	if BR2_arm926t
+	default arm1136j-s	if BR2_arm1136j_s
+	default arm1136jf-s	if BR2_arm1136jf_s
+	default arm1176jz-s	if BR2_arm1176jz_s
+	default arm1176jzf-s	if BR2_arm1176jzf_s
+	default strongarm110	if BR2_sa110
+	default strongarm1100	if BR2_sa1100
+	default xscale		if BR2_xscale
+	default iwmmxt		if BR2_iwmmxt
+	default v0		if BR2_cris_unknown
+	default v10		if BR2_cris_generic
+	default v3		if BR2_cris_etrax_4
+	default v8		if BR2_cris_etrax_100
+	default v10		if BR2_cris_etrax_100lx
+	default ev4		if BR2_alpha_21064
+	default ev5		if BR2_alpha_21164
+	default ev56		if BR2_alpha_21164a
+	default pca56		if BR2_alpha_21164pc
+	default ev6		if BR2_alpha_21264
+	default ev67		if BR2_alpha_21264a
+	default itanium		if BR2_ia64_itanium1
+	default itanium2	if BR2_ia64_itanium2
+	default 68000		if BR2_m68k_68000
+	default 68010		if BR2_m68k_68010
+	default 68020		if BR2_m68k_68020
+	default 68030		if BR2_m68k_68030
+	default 68040		if BR2_m68k_68040
+	default 68060		if BR2_m68k_68060
+	default mips1		if BR2_mips_1
+	default mips2		if BR2_mips_2
+	default mips3		if BR2_mips_3
+	default mips4		if BR2_mips_4
+	default mips32		if BR2_mips_32
+	default mips32r2	if BR2_mips_32r2
+	default mips64		if BR2_mips_64
+	default mips16		if BR2_mips_16
+	default 401		if BR2_powerpc_401
+	default 403		if BR2_powerpc_403
+	default 405		if BR2_powerpc_405
+	default 405fp		if BR2_powerpc_405fp
+	default 440		if BR2_powerpc_440
+	default 440fp		if BR2_powerpc_440fp
+	default 505		if BR2_powerpc_505
+	default 601		if BR2_powerpc_601
+	default 602		if BR2_powerpc_602
+	default 603		if BR2_powerpc_603
+	default 603e		if BR2_powerpc_603e
+	default 604		if BR2_powerpc_604
+	default 604e		if BR2_powerpc_604e
+	default 620		if BR2_powerpc_620
+	default 630		if BR2_powerpc_630
+	default 740		if BR2_powerpc_740
+	default 7400		if BR2_powerpc_7400
+	default 7450		if BR2_powerpc_7450
+	default 750		if BR2_powerpc_750
+	default 801		if BR2_powerpc_801
+	default 821		if BR2_powerpc_821
+	default 823		if BR2_powerpc_823
+	default 860		if BR2_powerpc_860
+	default 970		if BR2_powerpc_970
+	default 8540		if BR2_powerpc_8540
+	default cypress		if BR2_sparc_cypress
+	default supersparc	if BR2_sparc_supersparc
+	default hypersparc	if BR2_sparc_hypersparc
+	default f930		if BR2_sparc_f930
+	default f934		if BR2_sparc_f934
+	default sparclite86x	if BR2_sparc_sparclite86x
+	default tsc701		if BR2_sparc_tsc701
+	default ultrasparc	if BR2_sparc_ultrasparc
+	default ultrasparc3	if BR2_sparc_ultrasparc3
+	default niagara		if BR2_sparc_niagara
+	default g5		if BR2_s390_g5
+	default g6		if BR2_s390_g6
+	default z900		if BR2_s390_z900
+	default z990		if BR2_s390_z990
+	default z9-109		if BR2_s390_z9_109
+
+config BR2_GCC_TARGET_ARCH
+	string
+	default i386		if BR2_x86_i386
+	default i486		if BR2_x86_i486
+	default i586		if BR2_x86_i586
+	default pentium-mmx	if BR2_x86_pentium_mmx
+	default i686		if BR2_x86_i686
+	default pentiumpro	if BR2_x86_pentiumpro
+	default pentium-m	if BR2_x86_pentium_m
+	default pentium2	if BR2_x86_pentium2
+	default pentium3	if BR2_x86_pentium3
+	default pentium4	if BR2_x86_pentium4
+	default prescott	if BR2_x86_prescott
+	default nocona		if BR2_x86_nocona
+	default core2		if BR2_x86_core2
+	default k8		if BR2_x86_opteron
+	default k8-sse3		if BR2_x86_opteron_sse3
+	default barcelona	if BR2_x86_barcelona
+	default k6		if BR2_x86_k6
+	default k6-2		if BR2_x86_k6_2
+	default athlon		if BR2_x86_athlon
+	default athlon-4	if BR2_x86_athlon_4
+	default winchip-c6	if BR2_x86_winchip_c6
+	default winchip2	if BR2_x86_winchip2
+	default c3		if BR2_x86_c3
+	default geode		if BR2_x86_geode
+	default iwmmxt		if BR2_iwmmxt
+	default v0		if BR2_cris_unknown
+	default v10		if BR2_cris_generic
+	default v3		if BR2_cris_etrax_4
+	default v8		if BR2_cris_etrax_100
+	default v10		if BR2_cris_etrax_100lx
+	default 68000		if BR2_m68k_68000
+	default 68010		if BR2_m68k_68010
+	default 68020		if BR2_m68k_68020
+	default 68030		if BR2_m68k_68030
+	default 68040		if BR2_m68k_68040
+	default 68060		if BR2_m68k_68060
+	default g5		if BR2_s390_g5
+	default g6		if BR2_s390_g6
+	default z900		if BR2_s390_z900
+	default z990		if BR2_s390_z990
+	default z9-109		if BR2_s390_z9_109
+
+config BR2_GCC_TARGET_ABI
+	string
+	default apcs-gnu	if BR2_arm_dunno
+	default atpcs		if BR2_arm_dunno
+	default aapcs		if BR2_arm_dunno
+	default aapcs-linux	if BR2_arm_dunno
+	default iwmmxt		if BR2_iwmmxt
+	default 32		if BR2_mipsel && BR2_OABI
+	default n32		if BR2_mipsel && BR2_EABI
+	default o64		if BR2_mips && BR2_OABI
+	default 64		if BR2_mips && BR2_ABI64
+	default eabi		if BR2_mips && BR2_EABI
+	default mmixware	if BR2_mmix && BR2_ABI_native
+	default gnu		if BR2_mmix && !BR2_ABI_native
+	default altivec		if BR2_powerpc && BR2_ABI_altivec
+	default no-altivec	if BR2_powerpc && BR2_ABI_no-altivec
+	default spe		if BR2_powerpc && BR2_ABI_spe
+	default no-spe		if BR2_powerpc && BR2_ABI_no-spe
+	default ibmlongdouble	if BR2_powerpc && BR2_ABI_ibmlongdouble
+	default ieeelongdouble	if BR2_powerpc && BR2_ABI_ieeelongdouble
+
 menu "Build options"
 
 config BR2_WGET
@@ -419,3 +704,5 @@
 source "package/Config.in"
 
 source "target/Config.in"
+
+

             reply	other threads:[~2007-07-08 16:28 UTC|newest]

Thread overview: 211+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-08 16:28 aldot at uclibc.org [this message]
  -- strict thread matches above, loose matches on Subject: below --
2009-02-12  9:02 [Buildroot] svn commit: trunk/buildroot jacmet at uclibc.org
2009-01-31 20:38 ulf at uclibc.org
2009-01-29  9:34 ulf at uclibc.org
2009-01-29 10:21 ` Peter Korsgaard
2009-01-29 18:04   ` Ulf Samuelsson
2009-01-29 19:00     ` Peter Korsgaard
2009-01-28  7:59 jacmet at uclibc.org
2009-01-26 19:42 jacmet at uclibc.org
2009-01-26 19:37 ulf at uclibc.org
2009-01-26 19:39 ` Peter Korsgaard
2009-01-26 21:22   ` Ulf Samuelsson
2009-01-25 23:01 ulf at uclibc.org
2009-01-26  6:19 ` Peter Korsgaard
2009-01-26 11:23   ` Ulf Samuelsson
2009-01-26 12:21     ` Peter Korsgaard
2009-01-22 23:03 ulf at uclibc.org
2009-01-16 14:56 jacmet at uclibc.org
2009-01-16 10:27 jacmet at uclibc.org
2009-01-15 19:36 jacmet at uclibc.org
2009-01-08 13:16 egtvedt at uclibc.org
2008-11-07  8:58 jacmet at uclibc.org
2008-11-05 11:39 egtvedt at uclibc.org
2008-11-04 12:50 jacmet at uclibc.org
2008-11-04 23:30 ` hartleys
2008-11-04 23:36   ` Roberto A. Foglietta
2008-11-04 23:44     ` hartleys
2008-11-04 23:53       ` Roberto A. Foglietta
2008-11-05  0:00         ` hartleys
2008-11-05  0:53           ` Roberto A. Foglietta
2008-11-05  1:01             ` hartleys
2008-11-05  1:37               ` Roberto A. Foglietta
2008-11-05  6:16               ` Peter Korsgaard
2008-11-03 20:11 jacmet at uclibc.org
2008-11-04  7:23 ` Thomas Petazzoni
2008-11-04  9:41   ` Peter Korsgaard
2008-11-04 17:14     ` Thomas Petazzoni
2008-11-04 19:17       ` Peter Korsgaard
2008-09-18  9:22 jacmet at uclibc.org
2008-09-11  2:22 hamish at uclibc.org
2008-07-07 23:20 ulf at uclibc.org
2008-07-08  5:34 ` Peter Korsgaard
2008-07-08  5:52   ` Ulf Samuelsson
2008-07-08  7:14   ` Hamish Moffatt
2008-07-08  8:18     ` Peter Korsgaard
2008-07-08 13:21       ` Thiago A. Corrêa
2008-07-08 15:41         ` Ulf Samuelsson
2008-07-07 18:32 ulf at uclibc.org
2008-07-07 18:41 ` Bernhard Fischer
2008-07-07 18:26 ulf at uclibc.org
2008-07-07 17:48 ulf at uclibc.org
2008-07-07 18:05 ` Bernhard Fischer
2008-07-06  7:34 ulf at uclibc.org
2008-07-07 12:41 ` Bernhard Fischer
2008-07-07 13:14   ` Ulf Samuelsson
2008-07-07 13:23     ` Bernhard Fischer
2008-07-07 13:35       ` Ulf Samuelsson
2008-07-07 14:38         ` Peter Korsgaard
2008-07-07 17:28           ` Ulf Samuelsson
2008-07-07 19:00             ` Peter Korsgaard
2008-07-07 22:37               ` Ulf Samuelsson
2008-07-08  1:38                 ` Hamish Moffatt
2008-07-08  6:35                   ` Ulf Samuelsson
2008-07-08  5:39                 ` Peter Korsgaard
2008-07-08  7:12                   ` Hamish Moffatt
2008-07-08  9:59                     ` Ulf Samuelsson
2008-07-08 10:25                       ` Peter Korsgaard
2008-07-07 13:16   ` Peter Korsgaard
2008-07-05  9:22 ulf at uclibc.org
2008-07-06 19:57 ` Peter Korsgaard
     [not found]   ` <48714AA0.8000809@atmel.com>
2008-07-07  6:36     ` Peter Korsgaard
2008-07-07 11:18       ` Ulf Samuelsson
2008-07-07 11:59         ` Peter Korsgaard
2008-07-05  6:58 ulf at uclibc.org
2008-07-04 22:29 ulf at uclibc.org
2008-07-06 19:55 ` Peter Korsgaard
2008-07-07 12:13   ` Ulf Samuelsson
2008-07-07 12:36     ` Bernhard Fischer
2008-07-07 12:57       ` Ulf Samuelsson
2008-07-07 13:11         ` Bernhard Fischer
2008-07-07 13:28           ` Bernhard Fischer
2008-07-07 13:44             ` Ulf Samuelsson
2008-07-07 14:53               ` Peter Korsgaard
2008-07-07 17:33                 ` Ulf Samuelsson
2008-07-07 14:50           ` Peter Korsgaard
2008-07-07 14:47         ` Peter Korsgaard
2008-07-07 14:44       ` Peter Korsgaard
2008-07-07 15:25         ` Bernhard Fischer
2008-07-07 17:39           ` Peter Korsgaard
2008-07-09 13:08           ` Peter Korsgaard
2008-07-09 14:45             ` Ulf Samuelsson
2008-07-07 14:41     ` Peter Korsgaard
2008-07-07 17:30       ` Ulf Samuelsson
2008-07-07 19:08         ` Peter Korsgaard
2008-07-07 13:21 ` Peter Korsgaard
2008-07-07 13:25   ` Ulf Samuelsson
2008-07-07 13:41     ` Bernhard Fischer
2008-07-07 13:47       ` Ulf Samuelsson
2008-07-07 14:07         ` Bernhard Fischer
2008-07-07 17:24           ` Ulf Samuelsson
2008-07-07 14:55       ` Peter Korsgaard
2008-07-07 14:58     ` Peter Korsgaard
2008-07-01 12:04 jacmet at uclibc.org
2008-06-23 13:47 jacmet at uclibc.org
2008-05-31  7:27 jacmet at uclibc.org
2008-05-11  6:55 ulf at uclibc.org
2008-04-04  7:12 jacmet at uclibc.org
2008-04-03 21:06 jacmet at uclibc.org
2008-03-31  9:06 jacmet at uclibc.org
2008-03-30 21:49 ulf at uclibc.org
2008-03-30 21:53 ` Nigel Kukard
2008-03-30 20:52 jacmet at uclibc.org
2008-03-30 20:48 jacmet at uclibc.org
2008-03-30  6:38 ulf at uclibc.org
2008-03-30  6:29 ulf at uclibc.org
2008-03-28  7:31 ulf at uclibc.org
2008-03-28  2:50 jspence at uclibc.org
2008-03-28  7:42 ` Peter Korsgaard
2008-03-31  9:04   ` Peter Korsgaard
2008-04-04  5:52     ` J. Spence
2008-03-18  8:37 jacmet at uclibc.org
2008-03-18  0:29 hamish at uclibc.org
2008-03-16 13:26 ninevoltz at uclibc.org
2008-03-12 13:11 ninevoltz at uclibc.org
2008-03-12 11:23 ninevoltz at uclibc.org
2008-03-10 16:34 ninevoltz at uclibc.org
2008-03-06 19:01 ninevoltz at uclibc.org
2008-03-04 12:19 jacmet at uclibc.org
2008-03-04 12:30 ` Ulf Samuelsson
2008-03-04 13:13   ` Peter Korsgaard
2008-03-04 15:21     ` Ulf Samuelsson
2007-10-07 18:23 ulf at uclibc.org
2007-09-29 13:58 aldot at uclibc.org
2007-09-28 20:52 aldot at uclibc.org
2007-09-28 19:46 ulf at uclibc.org
2007-09-27 21:24 aldot at uclibc.org
2007-09-25 11:51 aldot at uclibc.org
2007-09-25  8:28 aldot at uclibc.org
2007-09-23 14:36 ulf at uclibc.org
2007-09-23 10:57 ulf at uclibc.org
2007-09-23 11:19 ` Bernhard Fischer
2007-09-23 14:23   ` Ulf Samuelsson
2007-09-24  6:05     ` Hans-Christian Egtvedt
2007-09-22 14:19 aldot at uclibc.org
2007-09-18 13:12 aldot at uclibc.org
2007-09-17 12:40 ulf at uclibc.org
2007-09-15 12:16 aldot at uclibc.org
2007-09-01 18:21 aldot at uclibc.org
2007-09-01 17:10 aldot at uclibc.org
2007-08-27 21:51 aldot at uclibc.org
2007-08-27 21:40 aldot at uclibc.org
2007-08-24  5:31 ulf at uclibc.org
2007-08-21 10:56 aldot at uclibc.org
2007-08-21 10:53 aldot at uclibc.org
2007-08-21 10:42 aldot at uclibc.org
2007-08-21  1:28 ulf at uclibc.org
2007-08-16 11:18 ulf at uclibc.org
2007-08-16  5:44 ulf at uclibc.org
2007-08-15  9:47 ulf at uclibc.org
2007-08-14 11:59 jacmet at uclibc.org
2007-08-14  7:24 ulf at uclibc.org
2007-07-31 18:25 aldot at uclibc.org
2007-07-31 15:02 aldot at uclibc.org
2007-07-29  6:51 ulf at uclibc.org
2007-07-27 15:29 aldot at uclibc.org
2007-07-27 14:57 aldot at uclibc.org
2007-07-27 14:16 aldot at uclibc.org
2007-07-27 13:08 aldot at uclibc.org
2007-07-23 19:04 ulf at uclibc.org
2007-07-23 21:13 ` Bernhard Fischer
2007-07-23 11:29 aldot at uclibc.org
2007-07-23  7:59 ulf at uclibc.org
2007-07-13 12:21 aldot at uclibc.org
2007-07-13 13:43 ` Julien Letessier
2007-07-12 16:57 ulf at uclibc.org
2007-07-12 15:29 ulf at uclibc.org
2007-07-09 18:23 aldot at uclibc.org
2007-07-09  8:06 aldot at uclibc.org
2007-07-09  5:04 ulf at uclibc.org
2007-07-09  4:29 ulf at uclibc.org
2007-07-09  4:26 ulf at uclibc.org
2007-07-08 12:20 aldot at uclibc.org
2007-07-06 12:19 ulf at uclibc.org
2007-06-25 10:56 aldot at uclibc.org
2007-06-24 12:27 aldot at uclibc.org
2007-06-19 15:19 jacmet at uclibc.org
2007-06-07 12:57 aldot at uclibc.org
2007-06-07 12:54 aldot at uclibc.org
2007-06-06 21:05 aldot at uclibc.org
2007-06-02 16:36 aldot at uclibc.org
2007-06-02  9:05 aldot at uclibc.org
2007-06-02  8:49 aldot at uclibc.org
2007-05-07  3:56 sjhill at uclibc.org
2007-04-28 18:53 Ulf Samuelsson
2007-04-28 17:09 sjhill at uclibc.org
2007-03-20 14:42 aldot at uclibc.org
2007-03-09  8:26 aldot at uclibc.org
2007-02-09 13:35 aldot at uclibc.org
2007-01-28 15:15 aldot at uclibc.org
2007-01-19 18:00 aldot at uclibc.org
2007-01-17 13:54 aldot at uclibc.org
2007-01-17 13:05 aldot at uclibc.org
2007-01-10  6:55 andersen at uclibc.org
2006-12-13  7:33 andersen at uclibc.org
2006-12-13  6:59 andersen at uclibc.org
2006-12-13  6:26 andersen at uclibc.org
2006-12-02 19:01 aldot at uclibc.org
2006-12-04 18:47 ` Erik Andersen
2006-11-15 21:00 andersen at uclibc.org
2006-10-01 15:07 aldot at uclibc.org
2006-08-28  6:52 lethal at uclibc.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070708162854.0BA39A6AAF@busybox.net \
    --to=aldot@uclibc.org \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox