diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-04-26 08:49:54 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-04-26 08:49:54 +0200 |
commit | 40897a4cf230654a1b3b3d8d717fbf0b135e2f36 (patch) | |
tree | 5e45b0525ab6d1b20ac2ab4509e23ec0a65d635a | |
parent | f1b4753e5a41e585809e0d9c95a917b4e9f04ed7 (diff) |
move thumb mode to toolchain options
-rw-r--r-- | target/config/Config.in | 15 | ||||
-rw-r--r-- | toolchain/Config.in | 14 |
2 files changed, 14 insertions, 15 deletions
diff --git a/target/config/Config.in b/target/config/Config.in index a36881519..96cce9aba 100644 --- a/target/config/Config.in +++ b/target/config/Config.in @@ -365,21 +365,6 @@ endchoice endmenu -choice -prompt "Use ARM thumb mode" -depends on ADK_CPU_CORTEX_A9 - -config ADK_LINUX_ARM_WITHOUT_THUMB - boolean "disabled" - select ADK_mode_arm - -config ADK_LINUX_ARM_WITH_THUMB - boolean "enabled" - select ADK_mode_thumb - select ADK_KERNEL_THUMB2_KERNEL - -endchoice - # hardware features, do not use for qemu config ADK_TARGET_WITH_USB boolean diff --git a/toolchain/Config.in b/toolchain/Config.in index 3a0306ac4..6a41140b8 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -44,4 +44,18 @@ config ADK_TOOLCHAIN_USE_GOLD depends on ADK_TOOLCHAIN_GOLD default n +choice +prompt "Use ARM thumb mode" +depends on ADK_CPU_CORTEX_A9 + +config ADK_LINUX_ARM_WITHOUT_THUMB + boolean "disabled" + select ADK_mode_arm + +config ADK_LINUX_ARM_WITH_THUMB + boolean "enabled" + select ADK_mode_thumb + select ADK_KERNEL_THUMB2_KERNEL + +endchoice endmenu |