Skip to content

Commit

Permalink
dtdiff: Use input format dtb for dtbo files
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Uwe Kleine-König committed Jan 14, 2025
1 parent f7b6d53 commit 5c04a2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dtdiff
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ source_and_sort () {
*.dts)
IFORMAT=dts
;;
*.dtb)
*.dtb|*.dtbo)
IFORMAT=dtb
;;
esac
Expand Down

0 comments on commit 5c04a2d

Please sign in to comment.