aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/powerpc/uboot/conf.c
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2008-02-23 18:36:13 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2008-02-23 18:36:13 +0000
commitf673ad04f5e4c2d57ef34ba35d54deb786998820 (patch)
treebc9ce527cda607b2c9e37058de6367396685fda6 /sys/boot/powerpc/uboot/conf.c
parente641a443f45ae058fa697a4cc13eca6725cc0f16 (diff)
downloadsrc-f673ad04f5e4c2d57ef34ba35d54deb786998820.tar.gz
src-f673ad04f5e4c2d57ef34ba35d54deb786998820.zip
The NFS file system support is conditional upon LOADER_NFS_SUPPORT,
not LOADER_NET_SUPPORT.
Notes
Notes: svn path=/head/; revision=176485
Diffstat (limited to 'sys/boot/powerpc/uboot/conf.c')
-rw-r--r--sys/boot/powerpc/uboot/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/powerpc/uboot/conf.c b/sys/boot/powerpc/uboot/conf.c
index 6021ec8d8976..8bc307a3e8cd 100644
--- a/sys/boot/powerpc/uboot/conf.c
+++ b/sys/boot/powerpc/uboot/conf.c
@@ -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)