From c5c1b780803972980a4fc1e4356f1c7520b64f41 Mon Sep 17 00:00:00 2001 From: Quentin Schulz Date: Fri, 31 May 2024 11:25:10 +0200 Subject: [PATCH] rk3188: fix MACHINEOVERRIDES order The SOC_FAMILY OVERRIDES should come after the TUNE one, so it needs to be defined before. before: MACHINEOVERRIDES="rk3188:armv7a:radxarock" after: MACHINEOVERRIDES="armv7a:rk3188:radxarock" Signed-off-by: Quentin Schulz --- conf/machine/include/rk3188.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/include/rk3188.inc b/conf/machine/include/rk3188.inc index 830f908..c85710d 100644 --- a/conf/machine/include/rk3188.inc +++ b/conf/machine/include/rk3188.inc @@ -3,8 +3,8 @@ SOC_FAMILY = "rk3188" -require conf/machine/include/arm/armv7a/tune-cortexa9.inc require conf/machine/include/soc-family.inc +require conf/machine/include/arm/armv7a/tune-cortexa9.inc require conf/machine/include/rockchip-defaults.inc SERIAL_CONSOLES = "115200;ttyFIQ0"