rewrite the lunabuild toolchain with enhanced feature
[lunaix-os.git] / lunaix-os / kernel / fs / LBuild
1 from . import twifs, ramfs
2
3 if config.fs_ext2:
4     from . import ext2
5
6 if config.fs_iso9660:
7     from . import iso9660
8
9 src.c += (
10     "twimap.c",
11     "pcache.c",
12     "mount.c",
13     "xattr.c",
14     "vfs.c",
15     "defaults.c",
16     "path_walk.c",
17     "fsm.c",
18     "fs_export.c",
19 )
20