android dtbo.img和dtb.img dtc反编译

  • 反编译dtb.img
dtc -I dtb -O dts dtb.img -o dtsi.txt
  • 反编译dtbo.img
mkdtimg dump dtbo.img -b dtbo
dtc -I dtb -O dts dtbo.00 -o dtsi.txt
  • 批量处理dtbo.xx
 #!/bin/bash
 for file in `ls dtbo.*`
 do
    echo $file
    #echo ${file}_dtsi.txt
    dtc -I dtb -O dts $file -o ${file}_dtsi.txt
 done

  

posted @ 2024-06-05 11:43  轻轻的吻  阅读(483)  评论(0编辑  收藏  举报