From a96bd565ecb335fbc1909b997b16ccc6654b3ccf Mon Sep 17 00:00:00 2001 From: bengris32 Date: Wed, 19 Apr 2023 23:02:26 +0100 Subject: [PATCH] rosemary: Correct Architecture optimization flags * Instead of setting TARGET_CPU_VARIANT_RUNTIME and TARGET_2ND_CPU_VARIANT_RUNTIME respectively, we are instead setting TARGET_2ND_CPU_VARIANT_RUNTIME twice. * Set TARGET_CPU_VARIANT_RUNTIME to cortex-a76 and TARGET_2ND_CPU_VARIANT_RUNTIME to cortex-a55 so we properly match the CPU setup of MT6785. Signed-off-by: bengris32 Change-Id: Ib15f68063eb1f7a55be62d1aecc893c8751f7765 --- BoardConfig.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BoardConfig.mk b/BoardConfig.mk index 8a229e4..c8a6a9d 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -35,7 +35,7 @@ TARGET_ARCH_VARIANT := armv8-2a-dotprod TARGET_CPU_ABI := arm64-v8a TARGET_CPU_ABI2 := TARGET_CPU_VARIANT := generic -TARGET_2ND_CPU_VARIANT_RUNTIME := cortex-a76 +TARGET_CPU_VARIANT_RUNTIME := cortex-a76 TARGET_2ND_ARCH := arm TARGET_2ND_ARCH_VARIANT := armv8-2a