historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/skiboot/hdata/test/dtdiff_wrap.sh
2024-01-16 11:20:27 -06:00

13 lines
306 B
Bash

#!/bin/bash
# Takes /dev/stdin as dtb, saves to file, does dtdiff
# Also runs parameter through a dts->dtb->dts conversion
# in order to work around dtc bugs.
T=$(mktemp)
cp /dev/stdin $T.dtb
dtc -I dts -O dtb $1 > $T.orig.dtb
dtdiff $T.orig.dtb $T.dtb
R=$?
if [ $R == 0 ]; then rm -f $T.dtb; fi
exit $R