vote up 2 vote down star

I'm building a kernel for an ARM platform running uClinux 2.4 and under "General Setup" in the Linux configuration there is an option called "m68knommu-style attached romfs in RAM support". My ARM assembly skills are somewhat limited but as far as I can tell if I enable this option the ROMFS is copied to the end of the kernels BSS.

What is the purpose of this?

flag

1 Answer

vote up 3 vote down check

As you rightly indicate, this option causes the romfs attached to the kernel image to be relocated to the end of the .bss section. This allows the system to start from the romfs as its root filesystem.

link|flag
Interesting but it already starts from romfs as root without this option enabled. – David Holm Aug 20 at 8:21
1  
Yes, but the option allows you to run with the root filesystem out of RAM rather than out of external storage (potentially improving execution speed). I am assuming that this would not be the case without the option. – Brandon E Taylor Aug 20 at 8:39
1  
By running out of RAM, you can also update the flash without worrying about executing/erasing that sector of flash. – Robert Aug 24 at 18:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.