diff options
Diffstat (limited to 'tools/imx9_image.sh')
-rwxr-xr-x | tools/imx9_image.sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tools/imx9_image.sh b/tools/imx9_image.sh new file mode 100755 index 00000000000..6523d1a0ad1 --- /dev/null +++ b/tools/imx9_image.sh @@ -0,0 +1,39 @@ +#!/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 = "m33-oei-ddrfw.bin" ]; then + continue + fi + + if [ $f = "u-boot.bin" ]; 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 |