hide experimental/developer options from the user. can be reenabled by using make...
[openwrt.git] / Config.in
1 #
2
3 mainmenu "OpenWRT Configuration"
4
5 config MODULES
6         bool
7         default y
8
9 config BR2_HAVE_DOT_CONFIG
10         bool
11         default y
12
13 choice
14         default BR2_mipsel
15         help
16           Stuff
17
18 config BR2_arm
19         bool "arm"
20
21 config BR2_armeb
22         bool "armeb"
23
24 config BR2_cris
25         bool "cris"
26
27 config BR2_i386
28         bool "i386"
29
30 config BR2_m68k
31         bool "m68k"
32
33 config BR2_mips
34         bool "mips"
35
36 config BR2_mipsel
37         bool "mipsel"
38
39 config BR2_powerpc
40         bool "powerpc"
41
42 config BR2_sh3
43         bool "sh3"
44
45 config BR2_sh3eb
46         bool "sh3eb"
47
48 config BR2_sh4
49         bool "sh4"
50
51 config BR2_sh4eb
52         bool "sh4eb"
53
54 config BR2_sparc
55         bool "sparc"
56
57 endchoice
58
59 config BR2_ARCH
60         string
61         default "arm"     if BR2_arm
62         default "armeb"   if BR2_armeb
63         default "cris"    if BR2_cris
64         default "i386"    if BR2_i386
65         default "m68k"    if BR2_m68k
66         default "mips"    if BR2_mips
67         default "mipsel"  if BR2_mipsel || !CONFIG_DEVEL
68         default "powerpc" if BR2_powerpc
69         default "sh3"     if BR2_sh3
70         default "sh3eb"   if BR2_sh3eb
71         default "sh4"     if BR2_sh4
72         default "sh4eb"   if BR2_sh4eb
73         default "sparc"   if BR2_sparc
74
75
76 config BR2_WGET
77         string 
78         default "wget --passive-ftp -nd"
79
80 config BR2_TAR_VERBOSITY
81         bool 
82         default n
83
84 config BR2_STAGING_DIR
85         string
86         default "$(BASE_DIR)/staging_dir_$(ARCH)$(ARCH_FPU_SUFFIX)"
87
88 config BR2_JLEVEL
89         int
90         default "1"
91
92 source "toolchain/Config.in"
93 source "package/Config.in"
94 source "target/Config.in"