add fini crt compat option to mipsel uclibc config
[openwrt/svn-archive/archive.git] / openwrt / Config.in.devel
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 config CONFIG_DEVEL
14 bool
15 default y
16
17 choice
18 prompt "Target Architecture" if CONFIG_DEVEL
19 default BR2_mipsel
20 help
21 Stuff
22
23 config BR2_arm
24 bool "arm"
25
26 config BR2_armeb
27 bool "armeb"
28
29 config BR2_cris
30 bool "cris"
31
32 config BR2_i386
33 bool "i386"
34
35 config BR2_m68k
36 bool "m68k"
37
38 config BR2_mips
39 bool "mips"
40
41 config BR2_mipsel
42 bool "mipsel"
43
44 config BR2_powerpc
45 bool "powerpc"
46
47 config BR2_sh3
48 bool "sh3"
49
50 config BR2_sh3eb
51 bool "sh3eb"
52
53 config BR2_sh4
54 bool "sh4"
55
56 config BR2_sh4eb
57 bool "sh4eb"
58
59 config BR2_sparc
60 bool "sparc"
61
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
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
81 menu "Build options"
82
83 config BR2_WGET
84 string "Wget command"
85 default "wget --passive-ftp -nd"
86
87 config BR2_TAR_VERBOSITY
88 bool "Tar verbose"
89 default n
90
91 config BR2_STAGING_DIR
92 string "Toolchain and header file location?"
93 default "$(BASE_DIR)/staging_dir_$(ARCH)$(ARCH_FPU_SUFFIX)"
94 help
95 This is the location where the toolchain will be installed.
96 Since the toolchain will not work if it is moved from this
97 location, it is important for people wishing to package up
98 a uClibc toolchain that this be set to the location in which
99 the toolchain will be used.
100
101 Most people will leave this set to the default value of
102 "$(BASE_DIR)/staging_dir_$(ARCH)$(ARCH_FPU_SUFFIX)".
103
104 config BR2_JLEVEL
105 int "Number of jobs to run simultaneously"
106 default "1"
107 help
108 Number of jobs to run simultanesouly
109
110 endmenu
111
112 source "toolchain/Config.in.devel"
113 source "package/Config.in"
114 source "target/Config.in"