diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-02-23 21:59:56 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-02-23 22:05:11 +0100 |
commit | f143be8a09c093d94d33e09c547f304305b7b6c4 (patch) | |
tree | 35c523627220db59b42257459b4e8a5ce7917654 | |
parent | ca57e0ba650c9a9596242009393f9501e157dd2e (diff) |
configs: ensure ARM EABIhf is enabled for configurations using cortex A9
Similar to the issue with the Atmel A5 based boards, the VFP is optional on
A9 - So we need to enable it to be able to use EABIhf.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | configs/altera_socdk_defconfig | 2 | ||||
-rw-r--r-- | configs/altera_sockit_defconfig | 2 | ||||
-rw-r--r-- | configs/riotboard_defconfig | 2 | ||||
-rw-r--r-- | configs/udoo_quad_defconfig | 3 | ||||
-rw-r--r-- | configs/via_imx6_vab820_defconfig | 3 | ||||
-rw-r--r-- | configs/xilinx_zc706_defconfig | 2 |
6 files changed, 6 insertions, 8 deletions
diff --git a/configs/altera_socdk_defconfig b/configs/altera_socdk_defconfig index f1916df13..6b05a2703 100644 --- a/configs/altera_socdk_defconfig +++ b/configs/altera_socdk_defconfig @@ -1,7 +1,7 @@ BR2_arm=y BR2_cortex_a9=y -BR2_ARM_EABIHF=y +BR2_ARM_ENABLE_VFP=y BR2_ARM_ENABLE_NEON=y BR2_ARM_FPU_NEON=y BR2_ARM_INSTRUCTIONS_THUMB2=y diff --git a/configs/altera_sockit_defconfig b/configs/altera_sockit_defconfig index d2f219fd2..6bd3a7150 100644 --- a/configs/altera_sockit_defconfig +++ b/configs/altera_sockit_defconfig @@ -1,7 +1,7 @@ BR2_arm=y BR2_cortex_a9=y -BR2_ARM_EABIHF=y +BR2_ARM_ENABLE_VFP=y BR2_ARM_ENABLE_NEON=y BR2_ARM_FPU_NEON=y BR2_ARM_INSTRUCTIONS_THUMB2=y diff --git a/configs/riotboard_defconfig b/configs/riotboard_defconfig index b6d69a80d..73677c7c5 100644 --- a/configs/riotboard_defconfig +++ b/configs/riotboard_defconfig @@ -1,7 +1,7 @@ # architecture BR2_arm=y BR2_cortex_a9=y -BR2_ARM_EABIHF=y +BR2_ARM_ENABLE_VFP=y # system BR2_TARGET_GENERIC_GETTY=y diff --git a/configs/udoo_quad_defconfig b/configs/udoo_quad_defconfig index bcc19231d..6cb05be35 100644 --- a/configs/udoo_quad_defconfig +++ b/configs/udoo_quad_defconfig @@ -1,8 +1,7 @@ # Architceture BR2_arm=y BR2_cortex_a9=y -BR2_ARM_EABIHF=y -BR2_ARM_FPU_VFPV3=y +BR2_ARM_ENABLE_VFP=y # Linux headers same as kernel, a 3.0 series BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_0=y diff --git a/configs/via_imx6_vab820_defconfig b/configs/via_imx6_vab820_defconfig index 268b96e55..d2f62c540 100644 --- a/configs/via_imx6_vab820_defconfig +++ b/configs/via_imx6_vab820_defconfig @@ -1,8 +1,7 @@ # Architecture BR2_arm=y BR2_cortex_a9=y -BR2_ARM_EABIHF=y -BR2_ARM_FPU_VFPV3=y +BR2_ARM_ENABLE_VFP=y # Linux headers same as kernel, a 3.10 series BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_10=y diff --git a/configs/xilinx_zc706_defconfig b/configs/xilinx_zc706_defconfig index 5563dc880..d1a46ca10 100644 --- a/configs/xilinx_zc706_defconfig +++ b/configs/xilinx_zc706_defconfig @@ -1,6 +1,6 @@ BR2_arm=y BR2_cortex_a9=y -BR2_ARM_EABIHF=y +BR2_ARM_ENABLE_VFP=y BR2_ARM_ENABLE_NEON=y # Linux headers same as kernel, a 3.14 series BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_14=y |