kumquat-buildroot/package/binutils/Config.in.host
Adam Duskett 48bd50287f package/b*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues
on all of these Config files.  This patch cleans up all warnings
related to the ordering in the Config files for packages starting with
the letter b in the package directory.

The appropriate ordering is: type, default, depends on, select, help
See http://nightly.buildroot.org/#_config_files for more information.

Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-04-29 17:17:57 +02:00

36 lines
780 B
Plaintext

comment "Binutils Options"
choice
prompt "Binutils Version"
default BR2_BINUTILS_VERSION_2_27_X
depends on !BR2_arc
help
Select the version of binutils you wish to use.
config BR2_BINUTILS_VERSION_2_26_X
bool "binutils 2.26.1"
config BR2_BINUTILS_VERSION_2_27_X
bool "binutils 2.27"
config BR2_BINUTILS_VERSION_2_28_X
bool "binutils 2.28"
endchoice
config BR2_BINUTILS_VERSION
string
default "arc-2017.03-rc1" if BR2_arc
default "2.26.1" if BR2_BINUTILS_VERSION_2_26_X
default "2.27" if BR2_BINUTILS_VERSION_2_27_X
default "2.28" if BR2_BINUTILS_VERSION_2_28_X
config BR2_BINUTILS_ENABLE_LTO
bool
config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
string "Additional binutils options"
default ""
help
Any additional binutils options you may want to include.