|
我的光盘里的资料都是200908的
下载了320 240 bmp 后是花屏
我的分区如下
static struct mtd_partition smdk_default_nand_part[] = {
[0] = {
.name = "TQ2440_uboot",
.size = 0x00040000,
.offset = 0,
},
[1] = {
.name = "TQ2440_kernel",
.offset = 0x00200000,
.size = 0x00200000,
},
[2] = {
.name = "TQ2440_yaffs2",
.offset = 0x00400000,
.size = 0xFB80000,
}
};
按这里教程里写了 如果改为如下的分区 那么uboot对应下载的地方不对应起来了 我是不是还要修改uboot ????很疑惑
static struct mtd_partition smdk_default_nand_part[] = {
[0] = {
.name = "TQ2440_uboot",
.size = 0x00040000,
.offset = 0x00000000,
},
[1] = {
.name = "TQ2440_kernel",
.offset = 0x001F0000,
.size = 0x00200000,
},
[2] = {
.name = "TQ2440_yaffs2",
.offset = 0x003F0000,
.size = 0x03C08000,
}
}; |
|