|
发表于 2008-11-30 23:47:55
|
显示全部楼层
Post by neighborinfo;1335828
您好!The Linux MTD,YAFFS Howto上面这样写道:
Erase the mtdblock0
/>eraseall /dev/mtd0
Create the mount directory and mount
/>mkdir -p /mnt/flash0
/>mount -t yaffs /dev/mtdblock0 /mnt/flash0
为什么eraseall对mtd0操作?而不对mtdblock0操作?nand不是块设备嘛,mtdblock就是块设备呀。mtd0,mtd1与mtdblock0,mtdblock1是不是一一对应的?
谢谢!
/dev/mtd/* 或者 /dev/mtd* 这两种表示方式一般表示的是字符设备
eraseall只对字符设备进行操作
/dev/mtdblock/* 或者 /dev/mtdblock* 这两种是块设备的表示方式
mount 的一般都是块设备 |
|