git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
feat: mount point flags check
[lunaix-os.git]
/
lunaix-os
/
kernel
/
fs
/
fs_setup.c
1
#include <lunaix/fs.h>
2
#include <lunaix/fs/ramfs.h>
3
#include <lunaix/fs/twifs.h>
4
5
void
6
fsm_register_all()
7
{
8
ramfs_init();
9
twifs_init();
10
// Add more fs implementation
11
}