Date: Sat, 29 Sep 2012 15:08:55 +0000 (UTC) From: "Andrey V. Elsukov" <ae@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r241047 - head/sys/boot/i386/loader Message-ID: <201209291508.q8TF8tLs045093@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209291508.q8TF8tLs045093>