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