hooks: writer.ti-k3_mount: Correct the u-boot file to write

We need u-boot.img not u-boot.img.bin to be copied over.

Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini
2024-03-07 08:46:25 -05:00
committed by Simon Glass
parent 7ddd4a2014
commit ea62a157ec

View File

@@ -31,6 +31,6 @@ if [ -z "${tispl}" -o -z "${uboot}" -o -z "${tiboot3}" ]; then
fi
echo "Writing to ${mount_dir} from build at ${build}"
sudo cp -v ${build}/${tispl} ${mount_dir}/tispl.bin
sudo cp -v ${build}/${uboot} ${mount_dir}/u-boot.img.bin
sudo cp -v ${build}/${uboot} ${mount_dir}/u-boot.img
sudo cp -v ${build/_a??/_r5}/${tiboot3} ${mount_dir}/tiboot3.bin
[ ! -z "${sysfw}" ] && sudo cp -v ${build/_a??/_r5}/${sysfw} ${mount_dir}/sysfw.itb