from . import ext2 @"File Systems" @(parent := kernel_feature) def file_system(): """ Config feature related to file system supports """ @"ext2 support" def fs_ext2() -> bool: """ Enable ext2 file system support """ return True @"iso9660 support" def fs_iso9660() -> bool: """ Enable iso9660 file system support """ return True