dtdiff: Use input format dtb for dtbo files

The file ending .dtbo is typically used for device tree overlays. These
are in the dtb input format, too. So assume this input format for *.dtbo
as is already done for *.dtb.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
This commit is contained in:
Uwe Kleine-König 2025-01-14 11:58:28 +01:00
parent 84d9dd2fcb
commit 69103f7e66

2
dtdiff
View file

@ -17,7 +17,7 @@ source_and_sort () {
*.dts)
IFORMAT=dts
;;
*.dtb)
*.dtb|*.dtbo)
IFORMAT=dtb
;;
esac