fdtdump

crates.io downloads docs.rs master coveralls.io

A rust version of fdtdump - a tool for printing flattened device trees.

Installation

Simply run the following to build and install:

cargo install fdtdump

Usage

``` USAGE: fdtdump

FLAGS: -h, --help Prints help information -V, --version Prints version information

ARGS: Path to dtb file ```

Example

``` $ 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"; }; ```