|
Hello,
what di I have to do to make partitions in the NAND Flash ?
I modified the file /arch/arm/mach-at91rm9200/board-sam9260.c
static struct mtd_partition __initdata ek_nand_partition[] = {
{
.name = "Partition 1",
.offset = 0,
.size = 256 * 1024,
},
{
.name = "Partition 2",
.offset = 256 * 1024,
.size = 256 * 1024,
},
{
.name = "Partition 3",
.offset = 512 * 1024,
.size = 256 * 1024,
},
{
.name = "Partition 4",
.offset = 768 * 1024,
.size = MTDPART_SIZ_FULL,
},
};
then I rebuild the Kernel.
The Uboot doesn´t recognize the parttions... ?
Thank you
|