A rust version of fdtdump - a tool for printing flattened device trees.
Simply run the following to build and install:
cargo install fdtdump
```
USAGE:
fdtdump
FLAGS: -h, --help Prints help information -V, --version Prints version information
ARGS:
``` $ echo '/dts-v1/; / { prop = "hello"; };' | dtc > dtb-file $ cargo run dtb-file /dts-v1/; // magic: 0xd00dfeed // totalsize: 0x61 (97) // offdtstruct: 0x38 // offdtstrings: 0x5c // version: 0x11 // bootcpuidphys: 0x0 // lastcompversion: 16 // bootcpuidphys: 0x0 // sizedtstrings: 0x5 // sizedtstruct: 0x24
/ { prop = "hello"; }; ```