diff options
| author | Ezequiel GarcĂa <ezequiel@vanguardiasur.com.ar> | 2016-02-21 10:12:10 -0300 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2016-02-22 09:31:42 +0100 |
| commit | 027b7ca0f240d3c7a51f3b2ea151c04329c4b569 (patch) | |
| tree | 51111787dcdfcd7bd4d6d950b3fb2ab776b7ad33 /package/binutils | |
| parent | ddc2285ff2be6841e5144d3a5749d14fa21ea425 (diff) | |
| download | buildroot-027b7ca0f240d3c7a51f3b2ea151c04329c4b569.tar.gz buildroot-027b7ca0f240d3c7a51f3b2ea151c04329c4b569.zip | |
arch/arm: add the cortex A17 variant supported by gcc 5.x
Add the Cortex A17 variant. This core is considered a replacement
of the Cortex A12 and is supported by gcc 5 / binutils 2.25+
Suggested-by: Ross Green <greenfross@netscape.net>
Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/binutils')
| -rw-r--r-- | package/binutils/Config.in.host | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/binutils/Config.in.host b/package/binutils/Config.in.host index df3c385de5..07574e42ca 100644 --- a/package/binutils/Config.in.host +++ b/package/binutils/Config.in.host @@ -12,6 +12,8 @@ choice !BR2_powerpc64le && !BR2_nios2 # Unsupported for MIPS R6 depends on !BR2_mips_32r6 && !BR2_mips_64r6 + # Unsupported ARM cores + depends on !BR2_cortex_a17 bool "binutils 2.23.2" config BR2_BINUTILS_VERSION_2_24_X @@ -19,6 +21,8 @@ choice depends on !BR2_nios2 && !BR2_powerpc64le # Unsupported for MIPS R6 depends on !BR2_mips_32r6 && !BR2_mips_64r6 + # Unsupported ARM cores + depends on !BR2_cortex_a17 bool "binutils 2.24" config BR2_BINUTILS_VERSION_2_25_X |

