feat: better rtc framework which aims to remove single rtc restrictions.
[lunaix-os.git] / lunaix-os / kernel / fs / fs_setup.c
index 74fdef7baa3e929702e9d444893a66b822b3ab1a..0966222a35111769a1b269a86b385debba745a31 100644 (file)
@@ -1,5 +1,8 @@
 #include <lunaix/fs.h>
+#include <lunaix/fs/devfs.h>
+#include <lunaix/fs/iso9660.h>
 #include <lunaix/fs/ramfs.h>
+#include <lunaix/fs/taskfs.h>
 #include <lunaix/fs/twifs.h>
 
 void
@@ -7,5 +10,9 @@ fsm_register_all()
 {
     ramfs_init();
     twifs_init();
-    // Add more fs implementation
+    devfs_init();
+    taskfs_init();
+    iso9660_init();
+
+    // ... more fs implementation
 }
\ No newline at end of file