1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-24 11:29:10 +00:00

The NFS file system support is conditional upon LOADER_NFS_SUPPORT,

not LOADER_NET_SUPPORT.
This commit is contained in:
Marcel Moolenaar 2008-02-23 18:36:13 +00:00
parent e641a443f4
commit f673ad04f5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176485

View File

@ -65,7 +65,7 @@ struct fs_ops *file_system[] = {
#if defined(LOADER_EXT2FS_SUPPORT)
&ext2fs_fsops,
#endif
#if defined(LOADER_NET_SUPPORT)
#if defined(LOADER_NFS_SUPPORT)
&nfs_fsops,
#endif
#if defined(LOADER_TFTP_SUPPORT)