Merged enhancements submitted by Stereo, thanks, closes #188 and #189
[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" if CONFIG_DEVEL
19
20 config BR2_arm
21 bool "arm"
22
23 config BR2_armeb
24 bool "armeb"
25
26 config BR2_cris
27 bool "cris"
28
29 config BR2_i386
30 bool "i386"
31
32 config BR2_m68k
33 bool "m68k"
34
35 config BR2_mips
36 bool "mips"
37
38 config BR2_mipsel
39 bool "mipsel"
40
41 config BR2_powerpc
42 bool "powerpc"
43
44 config BR2_sh3
45 bool "sh3"
46
47 config BR2_sh3eb
48 bool "sh3eb"
49
50 config BR2_sh4
51 bool "sh4"
52
53 config BR2_sh4eb
54 bool "sh4eb"
55
56 config BR2_sparc
57 bool "sparc"
58
59 endchoice
60
61 config BR2_ARCH
62 string
63 default "arm" if BR2_arm
64 default "armeb" if BR2_armeb
65 default "cris" if BR2_cris
66 default "i386" if BR2_i386
67 default "m68k" if BR2_m68k
68 default "mips" if BR2_mips
69 default "mipsel" if BR2_mipsel || !CONFIG_DEVEL
70 default "powerpc" if BR2_powerpc
71 default "sh3" if BR2_sh3
72 default "sh3eb" if BR2_sh3eb
73 default "sh4" if BR2_sh4
74 default "sh4eb" if BR2_sh4eb
75 default "sparc" if BR2_sparc
76
77
78 config BR2_WGET
79 string
80 default "wget --passive-ftp -nd"
81
82 config BR2_TAR_VERBOSITY
83 bool
84 default n
85
86 config BR2_JLEVEL
87 int
88 default "1"
89
90 source "toolchain/Config.in"
91 source "package/Config.in"
92 source "target/Config.in"