X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/50b4ecfb1b28e9b1dfc57b6a876fcdf938092152..c043fa535514a76091be87a45ad472a505f9dd33:/lunaix-os/kernel/fs/LConfig?ds=inline diff --git a/lunaix-os/kernel/fs/LConfig b/lunaix-os/kernel/fs/LConfig index 194e186..dfa8fe4 100644 --- a/lunaix-os/kernel/fs/LConfig +++ b/lunaix-os/kernel/fs/LConfig @@ -1,21 +1,18 @@ +from . import ext2 -@Collection("File Systems") +@"File Systems" +@(parent := kernel_feature) def file_system(): """ Config feature related to file system supports """ - add_to_collection(kernel_feature) - - @Term("ext2 support") - def fs_ext2(): + @"ext2 support" + def fs_ext2() -> bool: """ Enable ext2 file system support """ - type(bool) - default(True) + return True - @Term("iso9660 support") - def fs_iso9660(): + @"iso9660 support" + def fs_iso9660() -> bool: """ Enable iso9660 file system support """ - type(bool) - default(True) - + return True