diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-20 00:21:05 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-20 00:21:05 +0100 |
commit | b357b7bef1cdf64045e946238ad405cb7f66a706 (patch) | |
tree | 9ce4d1824a44d001f83f83a0b11203b83e877850 /target/config | |
parent | 5e8a2d036461a852d18d4586af7b5374cffc3e5b (diff) |
add fpu settings, fix symlinks
Diffstat (limited to 'target/config')
-rw-r--r-- | target/config/Config.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/target/config/Config.in b/target/config/Config.in index 38004d7e3..05f495449 100644 --- a/target/config/Config.in +++ b/target/config/Config.in @@ -37,6 +37,12 @@ config ADK_soft_float config ADK_hard_float boolean +config ADK_fpu_neon + boolean + +config ADK_fpu_vfp + boolean + config ADK_mode_arm boolean @@ -48,6 +54,11 @@ config ADK_TARGET_FLOAT default "hard" if ADK_hard_float default "soft" if ADK_soft_float +config ADK_TARGET_FPU + string + default "vfp" if ADK_fpu_vfp + default "neon" if ADK_fpu_neon + config ADK_TARGET_ARM_MODE depends on ADK_LINUX_ARM string |