diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-11-14 10:06:44 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-11-14 10:06:44 +0000 |
commit | 204821c56c9b54c9babc118cdfaed4d3e78857a7 (patch) | |
tree | 81f85522900595b21ef1d2938934449c16786313 /target/device/Config.in.toolchain | |
parent | 0eba4ce2fd83999893e35542a20e9df8ecb7c1c8 (diff) | |
download | buildroot-novena-204821c56c9b54c9babc118cdfaed4d3e78857a7.tar.gz buildroot-novena-204821c56c9b54c9babc118cdfaed4d3e78857a7.zip |
target/Config.in.toolchain: cleanup
Diffstat (limited to 'target/device/Config.in.toolchain')
-rw-r--r-- | target/device/Config.in.toolchain | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/target/device/Config.in.toolchain b/target/device/Config.in.toolchain index 8db60e94f..2528ed88c 100644 --- a/target/device/Config.in.toolchain +++ b/target/device/Config.in.toolchain @@ -156,35 +156,33 @@ endif config BR2_EXT_GCC_VERSION_4_1_2 bool - default y if !BR2_TOOLCHAIN_EXTERNAL_SOURCE - default n if BR2_TOOLCHAIN_EXTERNAL_SOURCE + default !BR2_TOOLCHAIN_EXTERNAL_SOURCE config BR2_EXT_GCC_VERSION_4_2_1 bool - default y if !BR2_TOOLCHAIN_EXTERNAL_SOURCE - default n if BR2_TOOLCHAIN_EXTERNAL_SOURCE + default !BR2_TOOLCHAIN_EXTERNAL_SOURCE config BR2_EXT_GCC_VERSION_4_2_2 bool - default y if !BR2_TOOLCHAIN_EXTERNAL_SOURCE - default n if BR2_TOOLCHAIN_EXTERNAL_SOURCE + default !BR2_TOOLCHAIN_EXTERNAL_SOURCE config BR2_EXT_GCC_VERSION_4_2_3 bool - default y if !BR2_TOOLCHAIN_EXTERNAL_SOURCE - default n if BR2_TOOLCHAIN_EXTERNAL_SOURCE + default !BR2_TOOLCHAIN_EXTERNAL_SOURCE config BR2_EXT_BINUTILS_VERSION_2_17 bool - default y if !BR2_TOOLCHAIN_EXTERNAL_SOURCE - default n if BR2_TOOLCHAIN_EXTERNAL_SOURCE + default !BR2_TOOLCHAIN_EXTERNAL_SOURCE + +config BR2_EXT_UCLIBC_VERSION_0_9_28_3 + bool + default !BR2_TOOLCHAIN_EXTERNAL_SOURCE config BR2_EXT_UCLIBC_VERSION_0_9_29 bool - default y if !BR2_TOOLCHAIN_EXTERNAL_SOURCE - default n if BR2_TOOLCHAIN_EXTERNAL_SOURCE + default !BR2_TOOLCHAIN_EXTERNAL_SOURCE -config BR2_EXT_UCLIBC_VERSION_0_9_28_3 +config BR2_EXT_UCLIBC_VERSION_0_9_30 bool - default y if !BR2_TOOLCHAIN_EXTERNAL_SOURCE - default n if BR2_TOOLCHAIN_EXTERNAL_SOURCE + default !BR2_TOOLCHAIN_EXTERNAL_SOURCE + |