aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/i386/loader/conf.c
diff options
context:
space:
mode:
authorAndrey V. Elsukov <ae@FreeBSD.org>2012-09-29 15:08:55 +0000
committerAndrey V. Elsukov <ae@FreeBSD.org>2012-09-29 15:08:55 +0000
commitab945379edb7fc69a0873a420707a4bd42200fa3 (patch)
tree5f2d80796a88e89ee6ef2998b4dcb48efe8fffef /sys/boot/i386/loader/conf.c
parent05eb11cbc40a190f73ed1471d97062cabfc37d54 (diff)
downloadsrc-ab945379edb7fc69a0873a420707a4bd42200fa3.tar.gz
src-ab945379edb7fc69a0873a420707a4bd42200fa3.zip
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.
Notes
Notes: svn path=/head/; revision=241047
Diffstat (limited to 'sys/boot/i386/loader/conf.c')
-rw-r--r--sys/boot/i386/loader/conf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/boot/i386/loader/conf.c b/sys/boot/i386/loader/conf.c
index d925a350f09d..4d44fbb008dd 100644
--- a/sys/boot/i386/loader/conf.c
+++ b/sys/boot/i386/loader/conf.c
@@ -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