diff options
author | Denys Vlasenko | 2011-11-10 16:53:35 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-11-10 16:53:35 +0100 |
commit | a86e02492d7700ce8cb4108f53646dfb025c2dff (patch) | |
tree | f14b9aa002cec6351214bbfccdd49bf4a1de9c59 /util-linux/Config.src | |
parent | fae473c81b98a1b2290b7efcd4ee9a8ebbb3b1e6 (diff) | |
download | busybox-a86e02492d7700ce8cb4108f53646dfb025c2dff.zip busybox-a86e02492d7700ce8cb4108f53646dfb025c2dff.tar.gz |
mount: make FEATURE_MOUNT_NFS not needed for Linux 2.6.23+
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/Config.src')
-rw-r--r-- | util-linux/Config.src | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/util-linux/Config.src b/util-linux/Config.src index 888bc8f..57a52ce 100644 --- a/util-linux/Config.src +++ b/util-linux/Config.src @@ -485,13 +485,18 @@ config FEATURE_MOUNT_LABEL This also enables label or uuid support for swapon. config FEATURE_MOUNT_NFS - bool "Support mounting NFS file systems" - default y + bool "Support mounting NFS file systems on Linux < 2.6.23" + default n depends on MOUNT select FEATURE_HAVE_RPC select FEATURE_SYSLOG help - Enable mounting of NFS file systems. + Enable mounting of NFS file systems on Linux kernels prior + to version 2.6.23. Note that in this case mounting of NFS + over IPv6 will not be possible. + + Note that this option links in RPC support from libc, + which is rather large (~10 kbytes on uclibc). config FEATURE_MOUNT_CIFS bool "Support mounting CIFS/SMB file systems" |