Forum Discussion
Altera_Forum
Honored Contributor
21 years agoR/W Filesystem?
I'm currently running the stock FS, built following the instructions in the Getting Started manual. Is there any quick way to make this FS read/write? Changing the kernel command line str...
Altera_Forum
Honored Contributor
20 years agoHi!
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.