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