git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Rewrite the lunabuild toolchain with enhanced feature (#60)
[lunaix-os.git]
/
lunaix-os
/
kernel
/
fs
/
LConfig
1
from . import ext2
2
3
@"File Systems"
4
@(parent := kernel_feature)
5
def file_system():
6
""" Config feature related to file system supports """
7
8
@"ext2 support"
9
def fs_ext2() -> bool:
10
""" Enable ext2 file system support """
11
12
return True
13
14
@"iso9660 support"
15
def fs_iso9660() -> bool:
16
""" Enable iso9660 file system support """
17
18
return True