- 积分
- 0
贡献0
飞刀0 FD
注册时间2015-12-16
在线时间0 小时
|
发表于 2011-5-25 08:36:44
|
显示全部楼层
修改bootloader的nand.c
static struct Partition NandPart[] = {
{0, 0x00100000, "boot"}, //128K
{0x00100000, 0x00040000, "bootParam"},//two blocks
{0x00140000, 0x003c0000, "MyApp"}, //4M512K
{0x00500000, 0x00300000, "kernel"}, //3M128K
//{0x00800000, 0x01400000, "fs_cramfs"}, //20M
{0x00800000, 0x07800000, "fs_yaffs"}, //40M
// {0x00500000, 0x03c00000, "wince"}, //60M
{0, 0 , 0}
}; |
|