From e516a48a444c78e9098720f459d8efc2bcfe63e8 Mon Sep 17 00:00:00 2001 From: Nolen Johnson Date: Sun, 9 Jan 2022 20:10:24 -0500 Subject: [PATCH] g12: Move architecture flags to generic variant * Some recent native crashes on b4s4 have led me to believe that we're all better off doing generic archs, as silent crashing code sucks... * Additionally, we are `cortex-a53` and not `cortex-a53.a57` so, remedy that as well. Change-Id: I5f4b0c3c68baf9f311cb37a6c163b9e7d5a0b57d --- BoardConfigCommon.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index b8a12d0..1248169 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -23,7 +23,8 @@ TARGET_ARCH := arm TARGET_ARCH_VARIANT := armv8-a TARGET_CPU_ABI := armeabi-v7a TARGET_CPU_ABI2 := armeabi -TARGET_CPU_VARIANT := cortex-a53.a57 +TARGET_CPU_VARIANT := generic +TARGET_CPU_VARIANT_RUNTIME := cortex-a53 TARGET_KERNEL_ARCH := arm64 ## Audio -- 2.20.1