Skip to content

Commit

Permalink
fix: cloudshell2 dtbo overlay path in boot.ini
Browse files Browse the repository at this point in the history
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
  • Loading branch information
dangoncalves committed Jun 2, 2024
1 parent dfc7cf4 commit 2b53bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/bootscripts/boot-odroid-xu4.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2b53bd5

Please sign in to comment.