Hi!
I have changed the order of the partitions in altera.c by putting my own partition at the end of the list:
#ifdef CONFIG_ALTERA_STRATIX_II
{
.name = "romfs/jffs2",
.size = 0x500000,
.offset = 0x200000,
},{
.name = "loader/kernel",
.size = 0x200000,
.offset = 0,
},{
.name = "User configuration",
.size = 0x400000,
.offset = 0x800000,
},{
.name = "safe configuration",
.size = 0x400000,
.offset = 0xc00000,
.mask_flags = MTD_WRITEABLE, /* force read-only */
},{
.name = "part1",
.size = 0x100000,
.offset = 0x700000,
}
and so it works.
Bye, Lothar.