From 203590d0aa265aeb9d8985b21b7a6b82accd26df Mon Sep 17 00:00:00 2001 From: Quentin Schulz Date: Fri, 31 May 2024 11:25:09 +0200 Subject: [PATCH] rk3066: fix MACHINEOVERRIDES order The SOC_FAMILY OVERRIDES should come after the TUNE one, so it needs to be defined before. before: MACHINEOVERRIDES="rk3066:armv7a:marsboard-rk3066" after: MACHINEOVERRIDES="armv7a:rk3066:marsboard-rk3066" Signed-off-by: Quentin Schulz --- conf/machine/include/rk3066.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/include/rk3066.inc b/conf/machine/include/rk3066.inc index 3510df2..a2685af 100644 --- a/conf/machine/include/rk3066.inc +++ b/conf/machine/include/rk3066.inc @@ -3,8 +3,8 @@ SOC_FAMILY = "rk3066" -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;ttyS2"