kboot: Make dosfs support conditional

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2022-12-03 12:48:19 -07:00
parent 59cbe840cf
commit 4f6c506c6f

View File

@ -82,7 +82,9 @@ struct fs_ops *file_system[] = {
#if defined(LOADER_BZIP2_SUPPORT)
&bzipfs_fsops,
#endif
#if defined(LOADER_MSDOS_SUPPORT)
&dosfs_fsops,
#endif
&hostfs_fsops,
NULL
};