aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-03-04 10:13:01 -0500
committerTom Rini <trini@konsulko.com>2024-03-04 10:25:47 -0500
commitbd465ada0e1172910f64feac6035f2344449c381 (patch)
treee749428436685ab25dcfe109309adee6f45cdf39 /scripts
parentbdbbf1d7b55434973402c390a822490ce6e14994 (diff)
parent68c4d3098b9cf59a20c470df385eb5422fe32bbe (diff)
downloadu-boot-bd465ada0e1172910f64feac6035f2344449c381.zip
u-boot-bd465ada0e1172910f64feac6035f2344449c381.tar.gz
u-boot-bd465ada0e1172910f64feac6035f2344449c381.tar.bz2
Merge branch '2024-03-02-assorted-updates' into next
- Assorted MediaTek, ASPEED, xenguest, s5p4418 and qemu-arm fixes - Assorted test fixes/updates/additions. - A few bootstd/related fixes. - Remove common.h from some files - Drop reiserfs - A few other assorted fixes throughout the tree.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dtc-version.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dtc-version.sh b/scripts/dtc-version.sh
index 53ff868..18c59ac 100755
--- a/scripts/dtc-version.sh
+++ b/scripts/dtc-version.sh
@@ -15,7 +15,7 @@ if [ ${#dtc} -eq 0 ]; then
exit 1
fi
-if ! which $dtc >/dev/null ; then
+if ! which $dtc > /dev/null 2>&1 ; then
echo "Error: Cannot find dtc: $dtc"
exit 1
fi