0

I am developing an operating system using C, Assembler and the GCC Cross Compiler. I have already implemented a working kernel that prints to the screen and allows the user to type in some simple commands. I have already looked into some file systems such as FAT32 and LFS. What other options do I have about implementing my very own filesystem?

Razor
  • 1,778
  • 4
  • 19
  • 36

1 Answers1

3

There's always Practical File System Design with the Be File System (PDF).

harald
  • 5,976
  • 1
  • 24
  • 41
  • This eBook has lots of info about file system concepts. It seems to provide me with lots of code as well. – Razor May 21 '16 at 09:06