如何mount一个jffs2的image

http://www.digitalpeer.com/id/mount
mkdir mtd

modprobe mtdram total_size=24576 erase_size=128

cat /proc/mtd

modprobe mtdblock

dd if=jffs2.img of=/dev/mtdblock0

mount -t jffs2 /dev/mtdblock0 mtd

 

生成jffs2的image

mkfs.jffs2 -r rootfs -o rootfs.jffs2 -e 0x4000 --pad=0x1000000 -s 0x200 -n


生成的rootfs.img可通过u-boot直接烧写至nand flash:

nand erase 0x200000 0x3e00000//擦写

tftp 0x30000000 rootfs.img//下载
nand write.jffs2 0x200000 $(filesize)//烧入

你可能感兴趣的:(image,Flash)