summaryrefslogtreecommitdiff
path: root/misc/buildroot/toolchain/binutils/Config.in
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-02-10 20:24:13 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-02-10 20:24:13 +0000
commit87ebaa9971f8001280ae800b531430aea0f6fc19 (patch)
tree6594ab9aac9abd0f73e0bb62b0814358c3455788 /misc/buildroot/toolchain/binutils/Config.in
parent3a799e882bbeaa2826e759e444d090ec7cef8618 (diff)
downloadnuttx-87ebaa9971f8001280ae800b531430aea0f6fc19.tar.gz
nuttx-87ebaa9971f8001280ae800b531430aea0f6fc19.tar.bz2
nuttx-87ebaa9971f8001280ae800b531430aea0f6fc19.zip
Add support for m9s12x
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3279 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'misc/buildroot/toolchain/binutils/Config.in')
-rw-r--r--misc/buildroot/toolchain/binutils/Config.in16
1 files changed, 11 insertions, 5 deletions
diff --git a/misc/buildroot/toolchain/binutils/Config.in b/misc/buildroot/toolchain/binutils/Config.in
index de740325c..32a9f022a 100644
--- a/misc/buildroot/toolchain/binutils/Config.in
+++ b/misc/buildroot/toolchain/binutils/Config.in
@@ -5,27 +5,33 @@ comment "Binutils Options"
choice
prompt "Binutils Version"
default BR2_BINUTILS_VERSION_2_19_1 if BR2_cortex_m3
- default BR2_BINUTILS_VERSION_2_19 if !BR2_avr32 && !BR2_cortex_m3
- default BR2_BINUTILS_VERSION_2_17 if !BR2_cortex_m3
+ default BR2_BINUTILS_VERSION_2_19 if !BR2_avr32 && !BR2_cortex_m3 && !BR2_m9s12x
+ default BR2_BINUTILS_VERSION_2_18 if BR2_m9s12x
+ default BR2_BINUTILS_VERSION_2_17 if !BR2_cortex_m3 && !BR2_m9s12x
help
Select the version of binutils you wish to use.
config BR2_BINUTILS_VERSION_2_17
- depends !BR2_nios2 && !BR2_cortex_m3
+ depends !BR2_nios2 && !BR2_cortex_m3 && !BR2_m9s12x
bool "binutils 2.17"
- config BR2_BINUTILS_VERSION_2_19
+ config BR2_BINUTILS_VERSION_2_18
depends !BR2_avr32 && !BR2_nios2 && !BR2_cortex_m3
+ bool "binutils 2.18"
+
+ config BR2_BINUTILS_VERSION_2_19
+ depends !BR2_avr32 && !BR2_nios2 && !BR2_cortex_m3 && !BR2_m9s12x
bool "binutils 2.19"
config BR2_BINUTILS_VERSION_2_19_1
- depends !BR2_avr32 && !BR2_nios2
+ depends !BR2_avr32 && !BR2_nios2 && !BR2_m9s12x
bool "binutils 2.19.1"
endchoice
config BR2_BINUTILS_VERSION
string
default "2.17" if BR2_BINUTILS_VERSION_2_17
+ default "2.18" if BR2_BINUTILS_VERSION_2_18
default "2.19" if BR2_BINUTILS_VERSION_2_19
default "2.19.1" if BR2_BINUTILS_VERSION_2_19_1