fix page mounting contention (close #57)
[lunaix-os.git] / lunaix-os / kernel / fs / LConfig
1
2 @Collection("File Systems")
3 def file_system():
4     """ Config feature related to file system supports """
5
6     add_to_collection(kernel_feature)
7
8     @Term("ext2 support")
9     def fs_ext2():
10         """ Enable ext2 file system support """
11
12         type(bool)
13         default(True)
14     
15     @Term("iso9660 support")
16     def fs_iso9660():
17         """ Enable iso9660 file system support """
18
19         type(bool)
20         default(True)
21