Forum Discussion
Altera_Forum
Honored Contributor
21 years agoBoot errors
In trying to get the new distro to load and run, we see boot errors about "attempting to access beyond end of device." We have a 16MB device on the board (8Mx16) that is directly supported by NIOS2, ...
Altera_Forum
Honored Contributor
21 years agoHi thosburke,
When you choose altera 1c12 board, the microtronix mtd map is selected. It is located in kernel source drivers/mtd/maps/microtronix.c, and right now the romfs is allocated 6M, as follows,static struct mtd_partition microtronix_partitions = {
{
.name = "romfs",
.size = 0x600000,
.offset = 0x200000,
},{
.name = "loader/kernel",
.size = 0x200000,
.offset = 0,
}
}; I don't know if you have changed the size of romfs partition. Since you have 16M flash, you can increase that size and have a try. At the same time, I am tring to get the old romfs map to work, and will post that shortly.