当前位置: 首页 > 工具软件 > FDT > 使用案例 >

FDT反编译

凤高澹
2023-12-01

FDT反编译
1、反编译工具 DTC
ubuntu执行DTC命令,如果没有安装会有下面提示
dtc

Command 'dtc' not found, but can be installed with:

sudo snap install device-tree-compiler  # version 1.6.1, or
sudo apt  install device-tree-compiler

See 'snap info device-tree-compiler' for additional versions.

如果是android的话prebuilts和out目录中也有dtc:

prebuilts/misc/linux-x86/dtc

out/host/linux-x86/bin

按提示安装dtc,安装完用dtc -h查看帮助

2、目标文件
可以从设备中获取
/sys/firmware/fdt

3、DTC命令参数
dtc编译器可以把dts文件编译成为dtb,也可把dtb编译成为dts文件,编译命令格式如下:

dtc [-I input-format] [-O output-format][-o output-filename] [-V output_version] input_filename
参数说明:
input-format:

“dtb”: “blob” format

“dts”: “source” format.

output-format:

“dtb”: “blob” format

“dts”: “source” format

output_version:
定义”blob”的版本,在dtb文件的字段中有表示,支持1 2 3和16,默认是3

4、反编译
dtc -I dtb -O dts fdt -o test.dtsi
-I 输入格式 dtb
-O 输出格式 dts
-o 输出文件名 test.dtsi
fdt输入文件

 类似资料: