make target selection nicer, choose arch automatically
[openwrt.git] / Config.in
1 #
2
3 mainmenu "OpenWrt Configuration"
4
5 config MODULES
6         bool
7         default y
8
9 config BR2_HAVE_DOT_CONFIG
10         bool
11         default y
12
13 # Supported architectures
14
15 config BR2_i386
16         tristate
17         
18 config BR2_mips
19         tristate
20
21 config BR2_mipsel
22         tristate
23
24 # Unsupported architectures
25
26 if CONFIG_DEVEL
27
28 config BR2_arm
29         tristate
30
31 config BR2_armeb
32         tristate
33
34 config BR2_cris
35         tristate
36
37 config BR2_m68k
38         tristate
39
40 config BR2_powerpc
41         tristate
42
43 config BR2_sh3
44         tristate
45
46 config BR2_sh3eb
47         tristate
48
49 config BR2_sh4
50         tristate
51
52 config BR2_sh4eb
53         tristate
54
55 config BR2_sparc
56         tristate
57
58 endif
59
60 config BR2_ARCH
61         string
62         default "arm"     if BR2_arm
63         default "armeb"   if BR2_armeb
64         default "cris"    if BR2_cris
65         default "i386"    if BR2_i386
66         default "m68k"    if BR2_m68k
67         default "mips"    if BR2_mips
68         default "mipsel"  if BR2_mipsel || !CONFIG_DEVEL
69         default "powerpc" if BR2_powerpc
70         default "sh3"     if BR2_sh3
71         default "sh3eb"   if BR2_sh3eb
72         default "sh4"     if BR2_sh4
73         default "sh4eb"   if BR2_sh4eb
74         default "sparc"   if BR2_sparc
75
76
77 config BR2_WGET
78         string 
79         default "wget --passive-ftp -nd"
80
81 config BR2_TAR_VERBOSITY
82         bool 
83         default n
84
85 config BR2_JLEVEL
86         int
87         default "1"
88
89 source "target/Config.in"
90 source "toolchain/Config.in"
91 source "package/Config.in"
92 source "target/linux/Config.in"