feat: (twimap) provide an easy way for mapping kernel objects into filesystem
[lunaix-os.git] / lunaix-os / kernel / fs / fs_setup.c
index 74fdef7baa3e929702e9d444893a66b822b3ab1a..6de3f381d7aec49b10c80da02c03efd36c821c65 100644 (file)
@@ -1,4 +1,5 @@
 #include <lunaix/fs.h>
 #include <lunaix/fs.h>
+#include <lunaix/fs/devfs.h>
 #include <lunaix/fs/ramfs.h>
 #include <lunaix/fs/twifs.h>
 
 #include <lunaix/fs/ramfs.h>
 #include <lunaix/fs/twifs.h>
 
@@ -7,5 +8,7 @@ fsm_register_all()
 {
     ramfs_init();
     twifs_init();
 {
     ramfs_init();
     twifs_init();
-    // Add more fs implementation
+    devfs_init();
+
+    // ... more fs implementation
 }
\ No newline at end of file
 }
\ No newline at end of file