diff options
author | Rob Landley <rob@landley.net> | 2006-02-08 18:50:17 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-02-08 18:50:17 +0000 |
commit | 1ab4c3dc25217ea3a21fe5febf4e7af6d0c04427 (patch) | |
tree | c612f4c5bf25f5777364919b0f20f573ec047fd6 /Config.in | |
parent | 32251b482571d6e76a6a58ee060a1911cb4a1ae2 (diff) | |
download | busybox-w32-1ab4c3dc25217ea3a21fe5febf4e7af6d0c04427.tar.gz busybox-w32-1ab4c3dc25217ea3a21fe5febf4e7af6d0c04427.tar.bz2 busybox-w32-1ab4c3dc25217ea3a21fe5febf4e7af6d0c04427.zip |
Help text update and tweak to defconfig to remove two more things that
the "maximum sane configuration" shouldn't have. (Explicit MTAB support in
mount, which you should only need if you have no /proc, and FEATURE_CLEAN_UP,
which exists to humor valgrind and otherwise just bloats the code).
Diffstat (limited to 'Config.in')
-rw-r--r-- | Config.in | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -80,10 +80,12 @@ config CONFIG_FEATURE_CLEAN_UP | |||
80 | bool "Clean up all memory before exiting (usually not needed)" | 80 | bool "Clean up all memory before exiting (usually not needed)" |
81 | default n | 81 | default n |
82 | help | 82 | help |
83 | As a size optimization, busybox by default does not cleanup memory | 83 | As a size optimization, busybox normally exits without explicitly |
84 | that is dynamically allocated or close files before exiting. This | 84 | freeing dynamically allocated memory or closing files. This saves |
85 | saves space and is usually not needed since the OS will clean up for | 85 | space since the OS will clean up for us, but it can confuse debuggers |
86 | us. Don't enable this unless you have a really good reason to clean | 86 | like valgrind, which report tons of memory and resource leaks. |
87 | |||
88 | Don't enable this unless you have a really good reason to clean | ||
87 | things up manually. | 89 | things up manually. |
88 | 90 | ||
89 | config CONFIG_FEATURE_SUID | 91 | config CONFIG_FEATURE_SUID |