This book is Volume 2 of the series, FYSOS: Operating System Design, and will describe the process needed to connect a file system to your kernel. It explains the steps to create a file system independent link between a file system residing on the media to your kernel code. Once you have done this, a simple call to fopen("C: filename.txt," OPEN) is all you need to open a file. It then goes into detail, giving examples of what a file system should be, how to create your own, and what to include in that file system. It also explains the process of a simple journaling file system. Part 2 of this...
This book is Volume 2 of the series, FYSOS: Operating System Design, and will describe the process needed to connect a file system to your kernel. It ...