diff options
author | ae <ae@FreeBSD.org> | 2012-09-29 15:08:55 +0000 |
---|---|---|
committer | ae <ae@FreeBSD.org> | 2012-09-29 15:08:55 +0000 |
commit | 56dc079ef658f099773c68abf36bec0905b04fa6 (patch) | |
tree | 5f2d80796a88e89ee6ef2998b4dcb48efe8fffef /sys/boot/i386 | |
parent | fba61ef227067b4f30ac71dee816dd39abee1c8e (diff) | |
download | FreeBSD-src-56dc079ef658f099773c68abf36bec0905b04fa6.zip FreeBSD-src-56dc079ef658f099773c68abf36bec0905b04fa6.tar.gz |
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.
Diffstat (limited to 'sys/boot/i386')
-rw-r--r-- | sys/boot/i386/loader/conf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/boot/i386/loader/conf.c b/sys/boot/i386/loader/conf.c index d925a35..4d44fbb 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 |