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