summaryrefslogtreecommitdiffstats
path: root/sys/boot
diff options
context:
space:
mode:
authornyan <nyan@FreeBSD.org>2014-11-15 03:34:34 +0000
committernyan <nyan@FreeBSD.org>2014-11-15 03:34:34 +0000
commitc2b7f6d75678e853889d4cc06bd234ffcaed84c2 (patch)
tree18d899c826bb092984e896f50e6ae01249185dcb /sys/boot
parent28615a880a754c10eccc854b547027a65e54d61f (diff)
downloadFreeBSD-src-c2b7f6d75678e853889d4cc06bd234ffcaed84c2.zip
FreeBSD-src-c2b7f6d75678e853889d4cc06bd234ffcaed84c2.tar.gz
MFi386: r274398
Move NFS and TFTP filesystems before the synthetic filesystems (bzip, gzip, and split).
Diffstat (limited to 'sys/boot')
-rw-r--r--sys/boot/pc98/loader/conf.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/boot/pc98/loader/conf.c b/sys/boot/pc98/loader/conf.c
index ce80cef..d05cd13 100644
--- a/sys/boot/pc98/loader/conf.c
+++ b/sys/boot/pc98/loader/conf.c
@@ -61,19 +61,19 @@ struct fs_ops *file_system[] = {
&ext2fs_fsops,
&dosfs_fsops,
&cd9660_fsops,
- &splitfs_fsops,
-#ifdef LOADER_GZIP_SUPPORT
- &gzipfs_fsops,
-#endif
-#ifdef LOADER_BZIP2_SUPPORT
- &bzipfs_fsops,
-#endif
#ifdef LOADER_NFS_SUPPORT
&nfs_fsops,
#endif
#ifdef LOADER_TFTP_SUPPORT
&tftp_fsops,
#endif
+#ifdef LOADER_GZIP_SUPPORT
+ &gzipfs_fsops,
+#endif
+#ifdef LOADER_BZIP2_SUPPORT
+ &bzipfs_fsops,
+#endif
+ &splitfs_fsops,
NULL
};
OpenPOWER on IntegriCloud