From 461f08072f0ae06c98ae5e72ef2dbb266a2672f9 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Tue, 21 Oct 2014 22:26:57 +0200 Subject: [PATCH] nettle: use the BR2_ARM_CPU_ARM* options Adjust the nettle package to use the BR2_ARM_CPU_ARM* option to disable the usage of assembly code on ARMv4 and ARMv5. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/nettle/nettle.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/nettle/nettle.mk b/package/nettle/nettle.mk index e73a71831..a25bb2432 100644 --- a/package/nettle/nettle.mk +++ b/package/nettle/nettle.mk @@ -15,7 +15,7 @@ NETTLE_LICENSE_FILES = COPYING.LIB NETTLE_CONF_OPTS = --disable-openssl # ARM assembly requires v6+ ISA -ifeq ($(BR2_arm920t)$(BR2_arm922t)$(BR2_arm926t)$(BR2_fa526)$(BR2_strongarm)$(BR2_xscale)$(BR2_iwmmxt),y) +ifeq ($(BR2_ARM_CPU_ARMV4)$(BR2_ARM_CPU_ARMV5),y) NETTLE_CONF_OPTS += --disable-assembler endif