3 mainmenu "Buildroot2 Configuration"
5 config BR2_HAVE_DOT_CONFIG
10 prompt "Target Architecture"
42 # Keep the variants seperate, there's no need to clutter everything else.
43 # sh is fairly "special" in this regard, as virtually everyone else has
44 # things kept down to a _sensible_ number of target variants. No such
48 prompt "Target Architecture Variant"
51 config BR2_sh2a_nofpueb
66 # gcc builds libstdc++ differently depending on the
67 # host tuplet given to it, so let people choose
70 prompt "Target Architecture Variant"
85 default "alpha" if BR2_alpha
86 default "arm" if BR2_arm
87 default "armeb" if BR2_armeb
88 default "cris" if BR2_cris
89 default "i386" if BR2_x86_i386
90 default "i486" if BR2_x86_i486
91 default "i586" if BR2_x86_i586
92 default "i686" if BR2_x86_i686
93 default "m68k" if BR2_m68k
94 default "mips" if BR2_mips
95 default "mipsel" if BR2_mipsel
96 default "powerpc" if BR2_powerpc
97 default "sh2a_nofpueb" if BR2_sh2a_nofpueb
98 default "sh2eb" if BR2_sh2eb
99 default "sh3" if BR2_sh3
100 default "sh3eb" if BR2_sh3eb
101 default "sh4" if BR2_sh4
102 default "sh4eb" if BR2_sh4eb
103 default "sparc" if BR2_sparc
104 default "x86_64" if BR2_x86_64
108 default "LITTLE" if BR2_arm || BR2_cris || BR2_i386 || BR2_mipsel || \
109 BR2_sh3 || BR2_sh4 || BR2_x86_64
110 default "BIG" if BR2_alpha || BR2_armeb || BR2_m68k || BR2_mips || \
111 BR2_powerpc || BR2_sh2a_nofpueb || BR2_sh2eb || \
112 BR2_sh3eb || BR2_sh4eb || BR2_sparc
117 string "Wget command"
118 default "wget --passive-ftp -nd"
121 string "Subversion (svn) checkout command"
124 config BR2_TAR_VERBOSITY
128 config BR2_SOURCEFORGE_MIRROR
129 string "Sourceforge mirror site"
132 Sourceforge has a system of mirror sites. Some sites may be closer
133 to your location, and sometimes mirror sites go down and are no longer
134 available. This option allows you to select your preferred Sourceforge
137 The list of mirrors is available here:
138 http://prdownloads.sourceforge.net/index-sf.html?download
140 config BR2_STAGING_DIR
141 string "Toolchain and header file location?"
142 default "$(BUILD_DIR)/staging_dir"
144 This is the location where the toolchain will be installed. The
145 toolchain will not work if it is moved from this location.
146 Therefore, if you wish to package up a uClibc toolchain, it is
147 important that is is set to the final location where the toolchain
150 Most people will leave this set to the default value of
151 "$(BUILD_DIR)/staging_dir".
153 config BR2_TOPDIR_PREFIX
154 string "Custom build dir prefix"
157 Add a custom string to the beginning of the build directories.
159 build_ARCH -> [PREFIX]_build_ARCH
160 toolchain_build_ARCH -> [PREFIX]_toolchain_build_ARCH
162 config BR2_TOPDIR_SUFFIX
163 string "Custom build dir suffix"
166 Add a custom string to the end of the build directories.
168 build_ARCH -> build_ARCH_[SUFFIX]
169 toolchain_build_ARCH -> toolchain_build_ARCH_[SUFFIX]
172 int "Number of jobs to run simultaneously"
175 Number of jobs to run simultanesouly
179 source "toolchain/Config.in"
181 source "package/Config.in"
183 source "target/Config.in"