Mathieu Othacehe | 9b832ad | 2023-12-29 12:02:18 +0100 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # SPDX-License-Identifier: GPL-2.0+ |
| 3 | # |
| 4 | # Script to check whether the file exists in mkimage cfg files for the i.MX9. |
| 5 | # |
| 6 | # usage: $0 <file.cfg> |
| 7 | |
| 8 | file=$1 |
| 9 | |
| 10 | blobs=`awk '/^APPEND/ {print $2} /^IMAGE/ || /^DATA/ {print $3}' $file` |
| 11 | for f in $blobs; do |
| 12 | tmp=$srctree/$f |
| 13 | if [ $f = "u-boot-spl-ddr.bin" ]; then |
| 14 | continue |
| 15 | fi |
| 16 | |
| 17 | if [ -f $f ]; then |
| 18 | continue |
| 19 | fi |
| 20 | |
| 21 | if [ ! -f $tmp ]; then |
Mathieu Othacehe | 12ef744 | 2024-02-26 18:37:19 +0100 | [diff] [blame] | 22 | echo "WARNING '$tmp' not found, resulting binary may be not-functional" >&2 |
Mathieu Othacehe | 9b832ad | 2023-12-29 12:02:18 +0100 | [diff] [blame] | 23 | |
| 24 | # Comment-out the lines for un-existing files. This way, |
| 25 | # mkimage can keep working. This allows CI tests to pass even |
| 26 | # if the resulting binary won't boot. |
| 27 | sed -in "/$f/ s/./#&/" $file |
| 28 | fi |
| 29 | done |
| 30 | |
| 31 | exit 0 |