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) #if defined(LOADER_BZIP2_SUPPORT)
&bzipfs_fsops, &bzipfs_fsops,
#endif #endif
#if defined(LOADER_MSDOS_SUPPORT)
&dosfs_fsops, &dosfs_fsops,
#endif
&hostfs_fsops, &hostfs_fsops,
NULL NULL
}; };