2004-10-09 03:06:03 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
mainmenu "Buildroot2 Configuration"
|
|
|
|
|
|
|
|
config BR2_HAVE_DOT_CONFIG
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
2007-09-25 13:37:31 +02:00
|
|
|
config BR2_VERSION
|
|
|
|
string
|
|
|
|
default "0.10.0-svn"
|
|
|
|
|
2007-09-28 23:54:36 +02:00
|
|
|
source "target/Config.in.arch"
|
2007-09-26 23:12:38 +02:00
|
|
|
source "target/device/Config.in"
|
2007-07-08 18:28:54 +02:00
|
|
|
|
2004-12-11 14:01:10 +01:00
|
|
|
menu "Build options"
|
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
config BR2_WGET
|
2004-12-11 14:01:10 +01:00
|
|
|
string "Wget command"
|
2004-10-15 09:11:54 +02:00
|
|
|
default "wget --passive-ftp -nd"
|
2004-10-09 03:06:03 +02:00
|
|
|
|
2007-09-19 22:22:58 +02:00
|
|
|
config BR2_SVN_CO
|
2007-08-24 07:31:07 +02:00
|
|
|
string "Subversion (svn) command to download source tree"
|
2005-06-09 11:50:11 +02:00
|
|
|
default "svn co"
|
2005-01-23 12:20:30 +01:00
|
|
|
|
2007-09-19 22:22:58 +02:00
|
|
|
config BR2_SVN_UP
|
|
|
|
string "Subversion (svn) command to update source tree"
|
|
|
|
default "svn up"
|
|
|
|
|
2007-08-24 07:31:07 +02:00
|
|
|
config BR2_GIT
|
|
|
|
string "Git command to download source tree"
|
|
|
|
default "git clone"
|
|
|
|
|
2006-10-01 17:07:45 +02:00
|
|
|
config BR2_ZCAT
|
|
|
|
string "zcat command"
|
2007-03-09 09:26:10 +01:00
|
|
|
default "gzip -d -c"
|
2006-10-01 17:07:45 +02:00
|
|
|
help
|
|
|
|
Command to be used to extract a gzip'ed file to stdout.
|
|
|
|
zcat is identical to gunzip -c except that the former may
|
|
|
|
not be available on your system.
|
2007-03-09 09:26:10 +01:00
|
|
|
Default is "gzip -d -c"
|
|
|
|
Other possible values include "gunzip -c" or "zcat".
|
2006-11-17 16:43:51 +01:00
|
|
|
|
|
|
|
config BR2_BZCAT
|
|
|
|
string "bzcat command"
|
|
|
|
default "bzcat"
|
|
|
|
help
|
|
|
|
Command to be used to extract a bzip2'ed file to stdout.
|
|
|
|
bzcat is identical to bunzip2 -c except that the former may
|
|
|
|
not be available on your system.
|
|
|
|
Default is "bzcat"
|
|
|
|
Other possible values include "bunzip2 -c" or "bzip2 -d -c".
|
2006-10-01 17:07:45 +02:00
|
|
|
|
2005-12-10 15:59:02 +01:00
|
|
|
config BR2_TAR_OPTIONS
|
|
|
|
string "Tar options"
|
2005-12-10 16:36:43 +01:00
|
|
|
default ""
|
|
|
|
help
|
|
|
|
Options to pass to tar when extracting the sources.
|
|
|
|
E.g. " -v --exclude='*.svn*'" to exclude all .svn internal files
|
|
|
|
and to be verbose.
|
2005-12-10 15:59:02 +01:00
|
|
|
|
2005-10-01 02:35:24 +02:00
|
|
|
config BR2_DL_DIR
|
|
|
|
string "Download dir"
|
|
|
|
default "$(BASE_DIR)/dl"
|
|
|
|
help
|
|
|
|
Directory to store all the source files that we need to fetch.
|
2007-08-21 03:28:12 +02:00
|
|
|
If the Linux shell environment has defined the BUILDROOT_DL_DIR
|
|
|
|
environment variable, then this overrides this configuration item.
|
2005-10-01 02:35:24 +02:00
|
|
|
|
2007-09-26 23:12:38 +02:00
|
|
|
The default is $(BASE_DIR)/dl
|
|
|
|
|
2007-09-28 23:54:36 +02:00
|
|
|
source "target/device/Config.in.mirrors"
|
2007-08-28 23:42:44 +02:00
|
|
|
|
2004-12-11 11:25:40 +01:00
|
|
|
config BR2_STAGING_DIR
|
|
|
|
string "Toolchain and header file location?"
|
|
|
|
default "$(BUILD_DIR)/staging_dir"
|
|
|
|
help
|
2007-01-28 13:03:58 +01:00
|
|
|
This is the location where the toolchain will be installed. The
|
|
|
|
toolchain will not work if it is moved from this location.
|
|
|
|
Therefore, if you wish to package up a uClibc toolchain, it is
|
|
|
|
important that is is set to the final location where the toolchain
|
|
|
|
will be used.
|
2004-12-11 11:25:40 +01:00
|
|
|
|
2007-01-28 13:03:58 +01:00
|
|
|
Most people will leave this set to the default value of
|
|
|
|
"$(BUILD_DIR)/staging_dir".
|
2004-12-11 11:25:40 +01:00
|
|
|
|
2007-10-18 14:38:26 +02:00
|
|
|
config BR2_FPU_SUFFIX
|
|
|
|
bool "Add '_nofpu' suffix for softfloat toolchains"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
If the toolchain is configured to use softfloat, then
|
|
|
|
the "_nofpu" suffix will be added to the toolchain build
|
|
|
|
directory name and to any rootfs image name
|
|
|
|
|
2005-09-18 06:41:57 +02:00
|
|
|
config BR2_TOPDIR_PREFIX
|
|
|
|
string "Custom build dir prefix"
|
|
|
|
default ""
|
|
|
|
help
|
2007-01-28 13:03:58 +01:00
|
|
|
Add a custom string to the beginning of the build directories.
|
2005-09-18 06:41:57 +02:00
|
|
|
|
2007-01-28 13:03:58 +01:00
|
|
|
build_ARCH -> [PREFIX]_build_ARCH
|
|
|
|
toolchain_build_ARCH -> [PREFIX]_toolchain_build_ARCH
|
2005-09-18 06:41:57 +02:00
|
|
|
|
|
|
|
config BR2_TOPDIR_SUFFIX
|
|
|
|
string "Custom build dir suffix"
|
|
|
|
default ""
|
|
|
|
help
|
2007-01-28 13:03:58 +01:00
|
|
|
Add a custom string to the end of the build directories.
|
2005-09-18 06:41:57 +02:00
|
|
|
|
2007-01-28 13:03:58 +01:00
|
|
|
build_ARCH -> build_ARCH_[SUFFIX]
|
2007-08-28 23:42:44 +02:00
|
|
|
toolchain_build_ARCH -> toolchain_build_ARCH_[SUFFIX]
|
2005-09-18 06:41:57 +02:00
|
|
|
|
2007-10-07 20:23:01 +02:00
|
|
|
config BR2_ROOTFS_PREFIX
|
|
|
|
string "Custom root fs prefix"
|
|
|
|
default "rootfs"
|
|
|
|
help
|
|
|
|
Add a custom string to the beginning of the root file system name.
|
|
|
|
|
|
|
|
config BR2_ROOTFS_SUFFIX
|
|
|
|
string "Custom root fs suffix"
|
|
|
|
default "$(DATE)" if BR2_TARGET_ATMEL
|
|
|
|
default "" if !BR2_TARGET_ATMEL
|
|
|
|
help
|
|
|
|
Add a custom string to the end of the root file system name.
|
|
|
|
|
2005-12-27 09:42:13 +01:00
|
|
|
config BR2_GNU_BUILD_SUFFIX
|
|
|
|
string "GNU build hostname suffix"
|
|
|
|
default "pc-linux-gnu"
|
|
|
|
help
|
2007-01-28 13:03:58 +01:00
|
|
|
The string used to pass to configure scripts via the
|
|
|
|
--build= option. Just specify the suffix here, the leading
|
|
|
|
arch will be filled in automatically.
|
2005-12-27 09:42:13 +01:00
|
|
|
|
2007-01-28 13:03:58 +01:00
|
|
|
Here's some copy and paste build host options for you:
|
2005-12-27 09:42:13 +01:00
|
|
|
linux: pc-linux-gnu
|
|
|
|
cygwin: pc-cygwin
|
|
|
|
os x: apple-darwin7 / apple-darwin8
|
|
|
|
|
2006-06-05 23:49:44 +02:00
|
|
|
config BR2_GNU_TARGET_SUFFIX
|
|
|
|
string "GNU target suffix"
|
2006-06-06 00:11:01 +02:00
|
|
|
default "linux-uclibcgnueabi" if BR2_ARM_EABI
|
2006-06-05 23:49:44 +02:00
|
|
|
default "linux-uclibc"
|
|
|
|
help
|
2007-01-28 13:03:58 +01:00
|
|
|
The string used to pass to configure scripts via the
|
|
|
|
--target= option. Just specify the suffix here, the leading
|
|
|
|
arch will be filled in automatically.
|
2006-06-05 23:49:44 +02:00
|
|
|
|
2007-01-28 13:03:58 +01:00
|
|
|
Most users will want to stick with the default setting, though
|
|
|
|
other users (most notably ARM EABI) like to add on to this in
|
|
|
|
order to stay in line with gcc conventions.
|
2006-06-05 23:49:44 +02:00
|
|
|
|
2007-01-28 13:03:58 +01:00
|
|
|
Default options are:
|
2006-07-04 13:44:32 +02:00
|
|
|
linux-uclibcgnueabi for ARM EABI
|
|
|
|
linux-uclibc for the rest
|
2007-10-05 13:06:56 +02:00
|
|
|
gnuhurd-uclibc for the hurd
|
2006-07-04 13:44:32 +02:00
|
|
|
|
2004-12-11 14:01:10 +01:00
|
|
|
config BR2_JLEVEL
|
|
|
|
int "Number of jobs to run simultaneously"
|
|
|
|
default "1"
|
|
|
|
help
|
2007-01-28 13:03:58 +01:00
|
|
|
Number of jobs to run simultaneously
|
|
|
|
|
|
|
|
config BR2_PREFER_IMA
|
|
|
|
bool "prefer IMA compiles"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Where possible, compile package with Inter Module Analysis.
|
|
|
|
This potentially uses alot of system resources on your compile
|
|
|
|
host with the benefit of creating smaller binaries for the target.
|
|
|
|
|
|
|
|
If unsure, say No.
|
|
|
|
|
|
|
|
WARNING: This is highly experimental at the moment.
|
|
|
|
|
2007-02-09 14:31:55 +01:00
|
|
|
config BR2_DEPRECATED
|
2007-02-09 14:35:41 +01:00
|
|
|
bool "Show packages that are deprecated or obsolete"
|
2007-02-09 14:31:55 +01:00
|
|
|
default n
|
|
|
|
help
|
2007-02-09 14:35:41 +01:00
|
|
|
This option hides outdated/obsolete versions of packages.
|
2004-12-11 11:25:40 +01:00
|
|
|
|
2007-10-07 20:29:17 +02:00
|
|
|
config BR2_RECENT
|
|
|
|
bool "Show packages that are of the latest major version"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option show recent versions of packages.
|
|
|
|
|
2007-07-31 20:06:50 +02:00
|
|
|
choice
|
|
|
|
prompt "strip"
|
|
|
|
default BR2_STRIP_strip
|
|
|
|
help
|
|
|
|
Select whether to strip binaries and libraries for the target
|
|
|
|
or not.
|
|
|
|
strip is the normal strip command
|
|
|
|
sstrip is a strip that discards more than the normal strip
|
|
|
|
none do not strip (only for debugging!)
|
|
|
|
|
|
|
|
config BR2_STRIP_strip
|
|
|
|
bool "strip"
|
|
|
|
help
|
|
|
|
strip is the normal strip command
|
2007-08-24 07:31:07 +02:00
|
|
|
|
2007-07-31 20:06:50 +02:00
|
|
|
config BR2_STRIP_sstrip
|
|
|
|
bool "sstrip"
|
|
|
|
select BR2_PACKAGE_SSTRIP_HOST
|
|
|
|
help
|
|
|
|
sstrip is a strip that discards more than the normal strip
|
2007-08-24 07:31:07 +02:00
|
|
|
|
2007-07-31 20:06:50 +02:00
|
|
|
config BR2_STRIP_none
|
|
|
|
bool "none"
|
|
|
|
help
|
|
|
|
none do not strip (only for debugging!)
|
|
|
|
endchoice
|
|
|
|
|
2007-06-02 00:16:28 +02:00
|
|
|
config BR2_PREFER_STATIC_LIB
|
|
|
|
bool "prefer static libraries"
|
|
|
|
default n
|
|
|
|
help
|
2007-06-02 18:36:43 +02:00
|
|
|
Where possible, build and use static libraries for the target.
|
|
|
|
This potentially increases your code size and should only be
|
|
|
|
used if you know what you do.
|
|
|
|
The default is to build dynamic libraries and use those on
|
|
|
|
the target filesystem.
|
2007-06-02 00:16:28 +02:00
|
|
|
|
|
|
|
WARNING: This is highly experimental at the moment.
|
|
|
|
|
2007-08-21 16:20:59 +02:00
|
|
|
config BR2_HAVE_MANPAGES
|
|
|
|
bool "manpages on the target"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Leave the manpages on the target.
|
|
|
|
If you say n here, your target will not contain any
|
|
|
|
manpage.
|
|
|
|
|
|
|
|
config BR2_HAVE_INFOPAGES
|
|
|
|
bool "infopages on the target"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Leave the infopages on the target.
|
|
|
|
If you say n here, your target will not contain any
|
|
|
|
infopage.
|
|
|
|
|
|
|
|
source package/gnuconfig/Config.in
|
|
|
|
|
2004-12-11 14:01:10 +01:00
|
|
|
endmenu
|
2004-10-09 03:06:03 +02:00
|
|
|
|
2007-09-25 09:55:45 +02:00
|
|
|
source "toolchain/Config.in"
|
|
|
|
|
|
|
|
source "package/Config.in"
|
|
|
|
|
|
|
|
source "target/Config.in"
|