boot.img提取

来源:互联网 发布:淘宝补单 编辑:程序博客网 时间:2024/06/05 18:34

1、查看分区列表

cat proc/partitions


boot.img大小约为5M多,所以


这个分区

同时在eclipse里可以看到



2、提取

#adb shell cat /dev/mtd/mtd4 > boot.img 这个是旧的提取方式

adb shell cat /dev/block/mmcblk0boot0 > boot0.img

adb shell cat /dev/block/mmcblk0boot1 > boot1.img

0 0