mini6410 U-Boot FLASH 分配

2014-11-24 09:54:02 · 作者: · 浏览: 0

来分析下U-BOOT 中FLASH如何分配uboot、kernel、文件系统空间的。


case 'V': case 'v': // U-Boot
FriendlyARMGetDataFromUsbAndWriteNand(256 K, 0, 256 K, "U-Boot.bin");
break;


case 'Y': case 'y': //yaffs2-image
FriendlyARMGetDataFromUsbAndWriteNand(126 M, 5 M + 4 * 128 K, (unsigned)-1, "yaffs2-image");
break;


FLASH 里的内容如下图所示



图 1