15130b127bdef1e14999c82e1bf6c1f0376cda08
[openwrt/svn-archive/archive.git] / openwrt / 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 choice
14 prompt "Target Architecture"
15 default BR2_mipsel
16
17 # Supported architectures
18
19 config BR2_i386
20 bool "i386"
21
22 config BR2_mips
23 bool "mips"
24
25 config BR2_mipsel
26 bool "mipsel"
27
28
29 if CONFIG_DEVEL
30
31 # Unsupported architectures
32
33 config BR2_arm
34 bool "arm"
35
36 config BR2_armeb
37 bool "armeb"
38
39 config BR2_cris
40 bool "cris"
41
42 config BR2_m68k
43 bool "m68k"
44
45 config BR2_powerpc
46 bool "powerpc"
47
48 config BR2_sh3
49 bool "sh3"
50
51 config BR2_sh3eb
52 bool "sh3eb"
53
54 config BR2_sh4
55 bool "sh4"
56
57 config BR2_sh4eb
58 bool "sh4eb"
59
60 config BR2_sparc
61 bool "sparc"
62
63 endif
64 endchoice
65
66 config BR2_ARCH
67 string
68 default "arm" if BR2_arm
69 default "armeb" if BR2_armeb
70 default "cris" if BR2_cris
71 default "i386" if BR2_i386
72 default "m68k" if BR2_m68k
73 default "mips" if BR2_mips
74 default "mipsel" if BR2_mipsel || !CONFIG_DEVEL
75 default "powerpc" if BR2_powerpc
76 default "sh3" if BR2_sh3
77 default "sh3eb" if BR2_sh3eb
78 default "sh4" if BR2_sh4
79 default "sh4eb" if BR2_sh4eb
80 default "sparc" if BR2_sparc
81
82
83 config BR2_WGET
84 string
85 default "wget --passive-ftp -nd"
86
87 config BR2_TAR_VERBOSITY
88 bool
89 default n
90
91 config BR2_JLEVEL
92 int
93 default "1"
94
95 source "target/Config.in"
96 source "toolchain/Config.in"
97 source "package/Config.in"
98 source "target/linux/Config.in"