From 90243d0713d36db5f33d5dc48b7fefb6b3931e83 Mon Sep 17 00:00:00 2001 From: Jon Mason Date: Mon, 12 Oct 2020 11:55:24 -0400 Subject: [PATCH] arm-bsp: fix cortexa32 tune Cortex-A32 is 32bit only, but the recent changes had it working as 64bit (causing build breaks). This reverts that change in this file. Change-Id: I58115096477424127baf99712b96131d2a0b0497 Signed-off-by: Jon Mason --- meta-arm-bsp/conf/machine/include/tune-cortexa32.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arm-bsp/conf/machine/include/tune-cortexa32.inc b/meta-arm-bsp/conf/machine/include/tune-cortexa32.inc index a11ab7bb..e86de6cc 100644 --- a/meta-arm-bsp/conf/machine/include/tune-cortexa32.inc +++ b/meta-arm-bsp/conf/machine/include/tune-cortexa32.inc @@ -9,7 +9,7 @@ require conf/machine/include/arm/arch-armv8a.inc AVAILTUNES += "cortexa32 cortexa32-crypto" ARMPKGARCH_tune-cortexa32 = "cortexa32" ARMPKGARCH_tune-cortexa32-crypto = "cortexa32" -TUNE_FEATURES_tune-cortexa32 = "${TUNE_FEATURES_tune-armv8a-crc} cortexa32" +TUNE_FEATURES_tune-cortexa32 = "armv8a cortexa32 crc" TUNE_FEATURES_tune-cortexa32-crypto = "${TUNE_FEATURES_tune-cortexa32} crypto" PACKAGE_EXTRA_ARCHS_tune-cortexa32 = "${PACKAGE_EXTRA_ARCHS_tune-armv8a-crc} cortexa32" PACKAGE_EXTRA_ARCHS_tune-cortexa32-crypto = "${PACKAGE_EXTRA_ARCHS_tune-armv8a-crc-crypto} cortexa32 cortexa32-crypto"