mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
867f97e1c4
If the optional `tee.bin` OP-TEE binary is missing, the image will still be functional. Adapt the warning message accordingly. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
31 lines
732 B
Bash
Executable file
31 lines
732 B
Bash
Executable file
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Script to check whether the file exists in mkimage cfg files for the i.MX9.
|
|
#
|
|
# usage: $0 <file.cfg>
|
|
|
|
file=$1
|
|
|
|
blobs=`awk '/^APPEND/ {print $2} /^IMAGE/ || /^DATA/ {print $3}' $file`
|
|
for f in $blobs; do
|
|
tmp=$srctree/$f
|
|
if [ $f = "u-boot-spl-ddr.bin" ]; then
|
|
continue
|
|
fi
|
|
|
|
if [ -f $f ]; then
|
|
continue
|
|
fi
|
|
|
|
if [ ! -f $tmp ]; then
|
|
echo "WARNING '$tmp' not found, resulting binary may be not-functional" >&2
|
|
|
|
# Comment-out the lines for un-existing files. This way,
|
|
# mkimage can keep working. This allows CI tests to pass even
|
|
# if the resulting binary won't boot.
|
|
sed -in "/$f/ s/./#&/" $file
|
|
fi
|
|
done
|
|
|
|
exit 0
|