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