From ff71f8f8e1f2bff5e26d08b5cb4483507eed8edd Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Tue, 16 Jul 2013 10:03:15 +0200 Subject: [PATCH] binutils: exclude binutils versions that don't support EABIhf The ARM EABIhf support was introduced in Binutils 2.22, so earlier versions should not be selected when EABIhf is used. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/binutils/Config.in.host | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/binutils/Config.in.host b/package/binutils/Config.in.host index 3d687fe745..9ddaed7dd8 100644 --- a/package/binutils/Config.in.host +++ b/package/binutils/Config.in.host @@ -14,14 +14,17 @@ choice config BR2_BINUTILS_VERSION_2_20_1 depends on !BR2_avr32 + depends on !BR2_ARM_EABIHF bool "binutils 2.20.1" config BR2_BINUTILS_VERSION_2_21 depends on !BR2_avr32 + depends on !BR2_ARM_EABIHF bool "binutils 2.21" config BR2_BINUTILS_VERSION_2_21_1 depends on !BR2_avr32 + depends on !BR2_ARM_EABIHF bool "binutils 2.21.1" config BR2_BINUTILS_VERSION_2_22 -- 2.30.2