#tree #devices #dtb #fdt

app fdtdump

使用fdt-rs库在Rust中实现fdtdump

1个不稳定版本

0.1.0 2020年8月3日

#569操作系统

MIT 许可证

10KB
173

fdtdump

crates.io downloads docs.rs master coveralls.io

fdtdump的Rust版本 - 打印扁平设备树的工具。

安装

只需运行以下命令即可构建和安装

cargo install fdtdump

用法

USAGE:
    fdtdump <dtb-file>

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

ARGS:
    <dtb-file>    Path to dtb file

示例

$ echo '/dts-v1/; / { prop = "hello"; };' | dtc > dtb-file
$ cargo run dtb-file
/dts-v1/;
// magic:		0xd00dfeed
// totalsize:		0x61 (97)
// off_dt_struct:	0x38
// off_dt_strings:	0x5c
// version:		0x11
// boot_cpuid_phys:	0x0
// last_comp_version:	16
// boot_cpuid_phys:	0x0
// size_dt_strings:	0x5
// size_dt_struct:	0x24

/ {
    prop = "hello";
};

依赖项

~3MB
~52K SLoC