diff options
Diffstat (limited to 'libbb/Config.src')
-rw-r--r-- | libbb/Config.src | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/libbb/Config.src b/libbb/Config.src index 85892d3fe..18bdc5151 100644 --- a/libbb/Config.src +++ b/libbb/Config.src | |||
@@ -156,11 +156,30 @@ config FEATURE_COPYBUF_KB | |||
156 | range 1 1024 | 156 | range 1 1024 |
157 | default 4 | 157 | default 4 |
158 | help | 158 | help |
159 | Size of buffer used by cp, mv, install etc. | 159 | Size of buffer used by cp, mv, install, wget etc. |
160 | Buffers which are 4 kb or less will be allocated on stack. | 160 | Buffers which are 4 kb or less will be allocated on stack. |
161 | Bigger buffers will be allocated with mmap, with fallback to 4 kb | 161 | Bigger buffers will be allocated with mmap, with fallback to 4 kb |
162 | stack buffer if mmap fails. | 162 | stack buffer if mmap fails. |
163 | 163 | ||
164 | config FEATURE_SKIP_ROOTFS | ||
165 | bool "Skip rootfs in mount table" | ||
166 | default y | ||
167 | help | ||
168 | Ignore rootfs entry in mount table. | ||
169 | |||
170 | In Linux, kernel has a special filesystem, rootfs, which is initially | ||
171 | mounted on /. It contains initramfs data, if kernel is configured | ||
172 | to have one. Usually, another file system is mounted over / early | ||
173 | in boot process, and therefore most tools which manipulate | ||
174 | mount table, such as df, will skip rootfs entry. | ||
175 | |||
176 | However, some systems do not mount anything on /. | ||
177 | If you need to configure busybox for one of these systems, | ||
178 | you may find useful to turn this option off to make df show | ||
179 | initramfs statistic. | ||
180 | |||
181 | Otherwise, choose Y. | ||
182 | |||
164 | config MONOTONIC_SYSCALL | 183 | config MONOTONIC_SYSCALL |
165 | bool "Use clock_gettime(CLOCK_MONOTONIC) syscall" | 184 | bool "Use clock_gettime(CLOCK_MONOTONIC) syscall" |
166 | default n | 185 | default n |