diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-04-03 14:41:07 -0500 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-04-03 14:41:07 -0500 |
commit | 21b8f713db4b71cdf1e329afb3372aadec88f1e7 (patch) | |
tree | e9e9fd057ce7b6ec8d797374addd949842f49423 /target/linux/config | |
parent | bf46ae546e86c39e2b0f900610b9a72076af35b4 (diff) |
rework FPU support for ARM again
With this commit I broke Kodi support for cubox-i:
4f93b213f2d3393fbb0b7ca200988f475e6cef83
I found following info regarding VFP and NEON:
http://community.arm.com/groups/tools/blog/2013/04/15/arm-cortex-a-processors-and-gcc-command-lines
Try to implement with this table in mind.
Diffstat (limited to 'target/linux/config')
-rw-r--r-- | target/linux/config/Config.in.kernel | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/config/Config.in.kernel b/target/linux/config/Config.in.kernel index 9583beeff..95904d9af 100644 --- a/target/linux/config/Config.in.kernel +++ b/target/linux/config/Config.in.kernel @@ -198,11 +198,11 @@ config ADK_KERNEL_VFPv4 config ADK_KERNEL_NEON bool - default y if ADK_TARGET_CPU_WITH_NEON + default y if ADK_TARGET_ARCH_ARM_WITH_NEON config ADK_KERNEL_MODE_NEON bool - default y if ADK_TARGET_CPU_WITH_NEON + default y if ADK_TARGET_ARCH_ARM_WITH_NEON config ADK_TARGET_NO_CMDLINE bool "Do not builtin any kernel cmdline" |