svn commit: r241047 - head/sys/boot/i386/loader

Andrey V. Elsukov ae at FreeBSD.org
Sat Sep 29 15:08:56 UTC 2012


Author: ae
Date: Sat Sep 29 15:08:55 2012
New Revision: 241047
URL: http://svn.freebsd.org/changeset/base/241047

Log:
  Disable splitfs support, since we aren't support floppies for a long
  time. This slightly reduces an overhead, when loader tries to open
  file that doesn't exist.

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

Modified: head/sys/boot/i386/loader/conf.c
==============================================================================
--- head/sys/boot/i386/loader/conf.c	Sat Sep 29 11:54:34 2012	(r241046)
+++ head/sys/boot/i386/loader/conf.c	Sat Sep 29 15:08:55 2012	(r241047)
@@ -80,7 +80,9 @@ struct fs_ops *file_system[] = {
 #if defined(LOADER_NANDFS_SUPPORT)
     &nandfs_fsops,
 #endif
+#ifdef LOADER_SPLIT_SUPPORT
     &splitfs_fsops,
+#endif
 #ifdef LOADER_GZIP_SUPPORT
     &gzipfs_fsops,
 #endif


More information about the svn-src-all mailing list