Method of a root fs
Posted: Sat Feb 28, 2009 11:57 am
Should I use Multiboot and have a module that contains the file system, or implement disk drivers and a file system driver and have a "real" root fs mounted from disk?
The Place to Start for Operating System Developers
https://f.osdev.org/
Ok. Thanks for all helpJohnnyTheDon wrote:The second one. If you use a module and don't have a file system driver nothing will be persisted. Every time you boot the system it'll be a blank slate.
The first one's useful early on, but in the long run, as Johnny said, you will want to mount real disks and be able to write to them.imate900 wrote:Should I use Multiboot and have a module that contains the file system, or implement disk drivers and a file system driver and have a "real" root fs mounted from disk?