toolchain-external: fix visibility and length of Linaro toolchain comment
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tue, 29 Oct 2013 20:54:01 +0000 (21:54 +0100)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 30 Oct 2013 18:10:23 +0000 (19:10 +0100)
Maxime Ripard reported that the Linaro toolchains were not visible
when selecting a Cortex-A, but forgetting to set the EABI to
EABIhf. While this is expected, Buildroot should normally should a
comment in this case. However, the comment is only visible when the
selected ARM architecture is not ARMv7 *and* the EABI is not
EABIhf. Instead, make the comment visible when either the selected
architecture is not ARMv7 *or* when the selected EABI is not EABIhf.

While we're at it, reword the comment text so that it actually fits
within the limits of the menuconfig screen.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reported-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
toolchain/toolchain-external/Config.in

index 646f918be2e14489e91ab6ac001db22394081917..7f9b40adce9f395b2d60b10dc58311bf6c954f4b 100644 (file)
@@ -66,10 +66,9 @@ config BR2_TOOLCHAIN_EXTERNAL_LINARO_2013_07
 
          To use this toolchain, you must disable soft float usage.
 
-comment "Linaro toolchains available for Cortex-A{5,7,8,9,15} and the EABIhf ABI"
+comment "Linaro toolchains available for Cortex-A + EABIhf"
        depends on BR2_arm
-       depends on BR2_GCC_TARGET_ARCH != "armv7-a"
-       depends on !BR2_ARM_EABIHF
+       depends on BR2_GCC_TARGET_ARCH != "armv7-a" || !BR2_ARM_EABIHF
 
 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201305
        bool "Sourcery CodeBench ARM 2013.05"