diff options
author | Ron Yorston <rmy@pobox.com> | 2014-12-14 14:20:56 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2014-12-14 14:20:56 +0000 |
commit | 6d6d18d45c145899fce3a39553771cf0af671f30 (patch) | |
tree | 1936d18cbf61b9e0989464aad0a11c52cbeff7b7 /Config.in | |
parent | 0c204dc07b718244c360e0b84df66ce0a012e14f (diff) | |
parent | acb8be721768b54075a51d1859d390904a0f1f6c (diff) | |
download | busybox-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.in | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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 | ||
281 | config 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 | |||
281 | config LONG_OPTS | 294 | config LONG_OPTS |
282 | bool "Support for --long-options" | 295 | bool "Support for --long-options" |
283 | default y | 296 | default y |