Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 15 Nov 2014 03:34:35 +0000 (UTC)
From:      Takahashi Yoshihiro <nyan@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r274537 - head/sys/boot/pc98/loader
Message-ID:  <201411150334.sAF3YZnH039064@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nyan
Date: Sat Nov 15 03:34:34 2014
New Revision: 274537
URL: https://svnweb.freebsd.org/changeset/base/274537

Log:
  MFi386: r274398
  
    Move NFS and TFTP filesystems before the synthetic filesystems (bzip,
    gzip, and split).

Modified:
  head/sys/boot/pc98/loader/conf.c

Modified: head/sys/boot/pc98/loader/conf.c
==============================================================================
--- head/sys/boot/pc98/loader/conf.c	Sat Nov 15 02:58:17 2014	(r274536)
+++ head/sys/boot/pc98/loader/conf.c	Sat Nov 15 03:34:34 2014	(r274537)
@@ -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
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411150334.sAF3YZnH039064>