diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-03-26 08:25:58 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-03-27 14:49:36 +0100 |
commit | bc3e18486441034c02d03ed66760375af5f313ee (patch) | |
tree | 4aeaf96c710cb1dde06d5da21889b7384078c6d2 /package/binutils/Config.in.host | |
parent | 1ce3dfb84f35904e0ffbe27b497ee5952189205b (diff) | |
download | buildroot-novena-bc3e18486441034c02d03ed66760375af5f313ee.tar.gz buildroot-novena-bc3e18486441034c02d03ed66760375af5f313ee.zip |
binutils: add 2.23.2 and remove deprecated 2.20
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/binutils/Config.in.host')
-rw-r--r-- | package/binutils/Config.in.host | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/binutils/Config.in.host b/package/binutils/Config.in.host index 81a4cf7d0..a61a50353 100644 --- a/package/binutils/Config.in.host +++ b/package/binutils/Config.in.host @@ -12,10 +12,6 @@ choice depends on BR2_avr32 bool "binutils 2.18-avr32-1.0.1" - config BR2_BINUTILS_VERSION_2_20 - depends on !BR2_avr32 && BR2_DEPRECATED - bool "binutils 2.20" - config BR2_BINUTILS_VERSION_2_20_1 depends on !BR2_avr32 bool "binutils 2.20.1" @@ -36,17 +32,21 @@ choice depends on !(BR2_avr32 || BR2_UCLIBC_VERSION_0_9_31) bool "binutils 2.23.1" + config BR2_BINUTILS_VERSION_2_23_2 + depends on !(BR2_avr32 || BR2_UCLIBC_VERSION_0_9_31) + bool "binutils 2.23.2" + endchoice config BR2_BINUTILS_VERSION string default "2.18-avr32-1.0.1" if BR2_BINUTILS_VERSION_2_18_AVR32_1_0_1 - default "2.20" if BR2_BINUTILS_VERSION_2_20 default "2.20.1" if BR2_BINUTILS_VERSION_2_20_1 default "2.21" if BR2_BINUTILS_VERSION_2_21 default "2.21.1" if BR2_BINUTILS_VERSION_2_21_1 default "2.22" if BR2_BINUTILS_VERSION_2_22 default "2.23.1" if BR2_BINUTILS_VERSION_2_23_1 + default "2.23.2" if BR2_BINUTILS_VERSION_2_23_2 config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS string "Additional binutils options" |