From 285ff7583c87872a6972883b4dcf50fe469c61cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gon=C3=A7alves?= Date: Sun, 2 Jun 2024 17:47:13 +0200 Subject: [PATCH] fix: cloudshell2 dtbo overlay path in boot.ini Currently, dtbo path in boot.ini is wrong. So we cannot load device tree blob overlays for cloudshell2. This commit fix this path in boot.ini --- config/bootscripts/boot-odroid-xu4.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/bootscripts/boot-odroid-xu4.ini b/config/bootscripts/boot-odroid-xu4.ini index 41382e66eb..42a95c35d8 100644 --- a/config/bootscripts/boot-odroid-xu4.ini +++ b/config/bootscripts/boot-odroid-xu4.ini @@ -281,7 +281,7 @@ if test "${cs2enable}" = "true"; then setenv overlays "i2c0 i2c1 hktft-cs-ogst" for overlay in ${overlays}; do - ext4load mmc 0:1 0x60000000 /boot/dtb/overlays/${overlay}.dtbo + ext4load mmc 0:1 0x60000000 /boot/dtb/${overlay}.dtbo fdt apply 0x60000000 done fi