Tool to visualize the device tree file (dtb) used by the Linux kernel? [closed]
dtc -O dts sudo apt-get install device-tree-compiler dtc -I dtb -O dts -o a.dts a.dtb gives a well indented textual representation of the device tree a.dtb, which is easy to understand with a text editor. Or dump it to stdout with: dtc -I dtb -O dts -o – a.dtb The source code for dtc is … Read more