diff options
author | John Crispin <john@openwrt.org> | 2015-03-15 06:35:13 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-03-15 06:35:13 +0000 |
commit | b1953bdf27c0193251bf56dc7a71f8f84cf8b254 (patch) | |
tree | 07d965d825bf34f2e9cc5ea9799afe2a98b5e0be /config/Config-kernel.in | |
parent | 17fdf5fb85a67da9b785b80d46f2c2f8612084e5 (diff) | |
download | upstream-b1953bdf27c0193251bf56dc7a71f8f84cf8b254.tar.gz upstream-b1953bdf27c0193251bf56dc7a71f8f84cf8b254.tar.bz2 upstream-b1953bdf27c0193251bf56dc7a71f8f84cf8b254.zip |
kernel: enable open by fhandle syscalls
This is needed by many services to function properly and as
all modern distributions got it enabled, it starts to be a
de-facto standard, i.e. user-space starts to silently depend
on it.
This also pulls in EXPORTFS, however, the kernel binary size
increases only a little.
On ARM systems comes down to 800 bytes uncompressed and about
200 bytes compressed size.
On MIPS systems it's about 1.2 kB size increase of the LZMA
compressed kernel.
v2: use menuconfig option instead of just enabling the option
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
SVN-Revision: 44765
Diffstat (limited to 'config/Config-kernel.in')
-rw-r--r-- | config/Config-kernel.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in index a0bd13e49c..34e07bd8ab 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -481,3 +481,9 @@ config KERNEL_SECCOMP_FILTER default n help Build kernel with support for seccomp BPF programs. + +config KERNEL_FHANDLE + bool "Enable open by fhandle syscalls" + default n + help + Build kernel with support for open by fhandle syscalls |