aboutsummaryrefslogtreecommitdiff
path: root/Config.in
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2014-12-14 14:20:56 +0000
committerRon Yorston <rmy@pobox.com>2014-12-14 14:20:56 +0000
commit6d6d18d45c145899fce3a39553771cf0af671f30 (patch)
tree1936d18cbf61b9e0989464aad0a11c52cbeff7b7 /Config.in
parent0c204dc07b718244c360e0b84df66ce0a012e14f (diff)
parentacb8be721768b54075a51d1859d390904a0f1f6c (diff)
downloadbusybox-w32-6d6d18d45c145899fce3a39553771cf0af671f30.tar.gz
busybox-w32-6d6d18d45c145899fce3a39553771cf0af671f30.tar.bz2
busybox-w32-6d6d18d45c145899fce3a39553771cf0af671f30.zip
Merge branch 'busybox' into merge
Conflicts: archival/libarchive/open_transformer.c libbb/lineedit.c miscutils/man.c
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in13
1 files changed, 13 insertions, 0 deletions
diff --git a/Config.in b/Config.in
index 61e4088bf..c6aad4210 100644
--- a/Config.in
+++ b/Config.in
@@ -278,6 +278,19 @@ config PAM
278 Use PAM in some busybox applets (currently login and httpd) instead 278 Use PAM in some busybox applets (currently login and httpd) instead
279 of direct access to password database. 279 of direct access to password database.
280 280
281config FEATURE_USE_SENDFILE
282 bool "Use sendfile system call"
283 default y
284 select PLATFORM_LINUX
285 help
286 When enabled, busybox will use the kernel sendfile() function
287 instead of read/write loops to copy data between file descriptors
288 (for example, cp command does this a lot).
289 If sendfile() doesn't work, copying code falls back to read/write
290 loop. sendfile() was originally implemented for faster I/O
291 from files to sockets, but since Linux 2.6.33 it was extended
292 to work for many more file types.
293
281config LONG_OPTS 294config LONG_OPTS
282 bool "Support for --long-options" 295 bool "Support for --long-options"
283 default y 296 default y