使用dd命令分割开发板固件

拿到的16MB固件是整个flash的bin文件

在已经知道分区定义的情况下

使用dd命令分割镜像文件

使用ibs=1把输入设置为按1字节读入

使用count表示读取多少个字节

使用skip跳过前面的其他分区


dd if=f2bin of=dduboot     ibs=1  count=262144
dd if=f2bin of=ddubootenv     ibs=1  count=65536 skip=262144
dd if=f2bin of=ddrootfs     ibs=1  count=14876672 skip=327680
dd if=f2bin of=ddkernel     ibs=1  count=1507328 skip=15204352
dd if=f2bin of=ddart     ibs=1  count=65536 skip=16711680

你可能感兴趣的:(openwrt)