update openssl to 0.9.8
[openwrt-10.03/.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
63 config BR2_ARCH
64         string
65         default "arm"     if BR2_arm
66         default "armeb"   if BR2_armeb
67         default "cris"    if BR2_cris
68         default "i386"    if BR2_i386
69         default "m68k"    if BR2_m68k
70         default "mips"    if BR2_mips
71         default "mipsel"  if BR2_mipsel || !CONFIG_DEVEL
72         default "powerpc" if BR2_powerpc
73         default "sh3"     if BR2_sh3
74         default "sh3eb"   if BR2_sh3eb
75         default "sh4"     if BR2_sh4
76         default "sh4eb"   if BR2_sh4eb
77         default "sparc"   if BR2_sparc
78
79 source "target/Config.in"
80
81 menu "Build options"
82
83 config BR2_WGET
84         string 
85         prompt "Wget command"
86         default "wget --passive-ftp -nd"
87
88 config BR2_TAR_VERBOSITY
89         bool 
90         prompt "Tar verbose"
91         default n
92
93 config BR2_JLEVEL
94         int
95         prompt "Number of jobs to run simultaneously"
96         default "1"
97         help
98             Number of jobs to run simultanesouly
99
100 endmenu
101
102 source "toolchain/Config.in.devel"
103 source "package/Config.in"
104 source "target/linux/Config.in"