Merge pull request #2787 from Guozhanxin/nandflash_test
[dfs] fix some bug for uffs filesystem.|修复了一些uffs文件系统的BUG.
This commit is contained in:
commit
34059c40c4
|
@ -226,7 +226,7 @@ static int dfs_uffs_mkfs(rt_device_t dev_id)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*2. then unmount the partition */
|
/*2. then unmount the partition */
|
||||||
uffs_Mount(nand_part[index].mount_path);
|
uffs_UnMount(nand_part[index].mount_path);
|
||||||
mtd = nand_part[index].dev;
|
mtd = nand_part[index].dev;
|
||||||
|
|
||||||
/*3. erase all blocks on the partition */
|
/*3. erase all blocks on the partition */
|
||||||
|
@ -234,11 +234,13 @@ static int dfs_uffs_mkfs(rt_device_t dev_id)
|
||||||
for (; block <= mtd->block_end; block++)
|
for (; block <= mtd->block_end; block++)
|
||||||
{
|
{
|
||||||
rt_mtd_nand_erase_block(mtd, block);
|
rt_mtd_nand_erase_block(mtd, block);
|
||||||
|
#if defined(RT_UFFS_USE_CHECK_MARK_FUNCITON)
|
||||||
if (rt_mtd_nand_check_block(mtd, block) != RT_EOK)
|
if (rt_mtd_nand_check_block(mtd, block) != RT_EOK)
|
||||||
{
|
{
|
||||||
rt_kprintf("found bad block %d\n", block);
|
rt_kprintf("found bad block %d\n", block);
|
||||||
rt_mtd_nand_mark_badblock(mtd, block);
|
rt_mtd_nand_mark_badblock(mtd, block);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/*4. remount it */
|
/*4. remount it */
|
||||||
|
|
Loading…
Reference in New Issue