fix wl0_rate error in wificonf
[openwrt.git] / Config.in.devel
1 #
2 config CONFIG_DEVEL
3         bool
4         default y
5
6 mainmenu "OpenWrt Configuration"
7
8 config MODULES
9         bool
10         default y
11
12 config BR2_HAVE_DOT_CONFIG
13         bool
14         default y
15
16 config BR2_mipsel
17         bool
18         default y
19
20 choice
21         prompt "Target Architecture"
22
23 # Supported architectures
24
25 config BR2_i386
26         bool "i386"
27         
28 config BR2_mips
29         bool "mips"
30
31 config BR2_mipsel
32         bool "mipsel"
33
34
35 if CONFIG_DEVEL
36
37 # Unsupported architectures
38
39 config BR2_arm
40         bool "arm"
41
42 config BR2_armeb
43         bool "armeb"
44
45 config BR2_cris
46         bool "cris"
47
48 config BR2_m68k
49         bool "m68k"
50
51 config BR2_powerpc
52         bool "powerpc"
53
54 config BR2_sh3
55         bool "sh3"
56
57 config BR2_sh3eb
58         bool "sh3eb"
59
60 config BR2_sh4
61         bool "sh4"
62
63 config BR2_sh4eb
64         bool "sh4eb"
65
66 config BR2_sparc
67         bool "sparc"
68
69 endif
70 endchoice
71
72 config BR2_ARCH
73         string
74         default "arm"     if BR2_arm
75         default "armeb"   if BR2_armeb
76         default "cris"    if BR2_cris
77         default "i386"    if BR2_i386
78         default "m68k"    if BR2_m68k
79         default "mips"    if BR2_mips
80         default "mipsel"  if BR2_mipsel || !CONFIG_DEVEL
81         default "powerpc" if BR2_powerpc
82         default "sh3"     if BR2_sh3
83         default "sh3eb"   if BR2_sh3eb
84         default "sh4"     if BR2_sh4
85         default "sh4eb"   if BR2_sh4eb
86         default "sparc"   if BR2_sparc
87
88 source "target/Config.in"
89
90 menu "Build options"
91
92 config BR2_WGET
93         string 
94         prompt "Wget command"
95         default "wget --passive-ftp -nd"
96
97 config BR2_TAR_VERBOSITY
98         bool 
99         prompt "Tar verbose"
100         default n
101
102 config BR2_JLEVEL
103         int
104         prompt "Number of jobs to run simultaneously"
105         default "1"
106         help
107             Number of jobs to run simultanesouly
108
109 endmenu
110
111 source "toolchain/Config.in.devel"
112 source "package/Config.in"
113 source "target/linux/Config.in"