dd if=/dev/zero of=testfat.img bs=1024 count=1024
创建空白文件 大小为1M
busybox mkfs.vfat testfat.img
用vfat格式 格式化 testfat.img
mount testfat.img /data/ota
挂载到目标
umount /data/ota
卸载目标
dd if=/dev/zero of=testfat.img bs=1024 count=1024
创建空白文件 大小为1M
busybox mkfs.vfat testfat.img
用vfat格式 格式化 testfat.img
mount testfat.img /data/ota
挂载到目标
umount /data/ota
卸载目标