diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-21 05:51:42 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-21 05:51:42 +0200 |
commit | 368c18fc9fa36903b26db36d589baec4e4f6915e (patch) | |
tree | fe11dcd82e4da1771bc165b8b98aa11576dffbf5 /target/config/Config.in.binutils | |
parent | 0fc812292d1c91611e49b4dbcc6a27c1165b0c4c (diff) |
remove unneeded split in choice and default, remove ADK_TARGET_KERNEL_VERSION (unused)
Diffstat (limited to 'target/config/Config.in.binutils')
-rw-r--r-- | target/config/Config.in.binutils | 45 |
1 files changed, 43 insertions, 2 deletions
diff --git a/target/config/Config.in.binutils b/target/config/Config.in.binutils index ac91aff4d..3ab18c8cb 100644 --- a/target/config/Config.in.binutils +++ b/target/config/Config.in.binutils @@ -1,5 +1,46 @@ # This file is part of the OpenADK project. OpenADK is copyrighted # material, please see the LICENCE file in the top-level directory. -source target/config/Config.in.binutils.choice -source target/config/Config.in.binutils.default +choice +prompt "Binutils version" +default ADK_TOOLCHAIN_BINUTILS_2_20_1 if ADK_TARGET_ARCH_AVR32 +default ADK_TOOLCHAIN_BINUTILS_2_22 if ADK_TARGET_ARCH_BFIN +default ADK_TOOLCHAIN_BINUTILS_2_23_ARC if ADK_TARGET_ARCH_ARC +default ADK_TOOLCHAIN_BINUTILS_2_25_1 + +config ADK_TOOLCHAIN_BINUTILS_GIT + bool "git" + depends on !ADK_TARGET_ARCH_ARC + depends on !ADK_TARGET_ARCH_AVR32 + depends on !ADK_TARGET_ARCH_CRIS + +config ADK_TOOLCHAIN_BINUTILS_2_25_1 + bool "2.25.1" + depends on !ADK_TARGET_ARCH_BFIN + depends on !ADK_TARGET_ARCH_ARC + depends on !ADK_TARGET_ARCH_AVR32 + depends on !ADK_TARGET_ARCH_H8300 + depends on !ADK_CPU_CRIS_V10 + +config ADK_TOOLCHAIN_BINUTILS_2_24 + bool "2.24" + depends on !ADK_TARGET_ARCH_BFIN + depends on !ADK_TARGET_ARCH_ARC + depends on !ADK_TARGET_ARCH_AVR32 + depends on !ADK_TARGET_ARCH_CRIS + depends on !ADK_TARGET_ARCH_H8300 + +config ADK_TOOLCHAIN_BINUTILS_2_23_ARC + bool "2.23-arc" + depends on ADK_TARGET_ARCH_ARC + +config ADK_TOOLCHAIN_BINUTILS_2_22 + bool "2.22" + depends on ADK_TARGET_ARCH_BFIN \ + || ADK_CPU_CRIS_V10 + +config ADK_TOOLCHAIN_BINUTILS_2_20_1 + bool "2.20.1" + depends on ADK_TARGET_ARCH_AVR32 + +endchoice |