diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-14 08:33:20 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-14 08:33:20 +0200 |
commit | 6ac37da4256a248b8b8046d3b356a3b9c4831c97 (patch) | |
tree | 4edac1c4a03fd7b5cbb0c6f93b99e310f7edb60f | |
parent | 0e450669d455e4f8dab97c26b4009a9700cd677b (diff) | |
download | busybox-w32-6ac37da4256a248b8b8046d3b356a3b9c4831c97.tar.gz busybox-w32-6ac37da4256a248b8b8046d3b356a3b9c4831c97.tar.bz2 busybox-w32-6ac37da4256a248b8b8046d3b356a3b9c4831c97.zip |
build system: disable some applets by default
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | Config.in | 1 | ||||
-rw-r--r-- | miscutils/Config.src | 14 |
2 files changed, 8 insertions, 7 deletions
@@ -138,6 +138,7 @@ config UNICODE_USING_LOCALE | |||
138 | help | 138 | help |
139 | With this option on, Unicode support is implemented using libc | 139 | With this option on, Unicode support is implemented using libc |
140 | routines. Otherwise, internal implementation is used. | 140 | routines. Otherwise, internal implementation is used. |
141 | Internal implementation is smaller. | ||
141 | 142 | ||
142 | config FEATURE_CHECK_UNICODE_IN_ENV | 143 | config FEATURE_CHECK_UNICODE_IN_ENV |
143 | bool "Check $LANG environment variable" | 144 | bool "Check $LANG environment variable" |
diff --git a/miscutils/Config.src b/miscutils/Config.src index 012132e7b..2f7c50271 100644 --- a/miscutils/Config.src +++ b/miscutils/Config.src | |||
@@ -276,28 +276,28 @@ config FBSPLASH | |||
276 | 276 | ||
277 | config FLASHCP | 277 | config FLASHCP |
278 | bool "flashcp" | 278 | bool "flashcp" |
279 | default y | 279 | default n # doesn't build on Ubuntu 8.04 |
280 | help | 280 | help |
281 | The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7. | 281 | The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7. |
282 | This utility is used to copy images into a MTD device. | 282 | This utility is used to copy images into a MTD device. |
283 | 283 | ||
284 | config FLASH_LOCK | 284 | config FLASH_LOCK |
285 | bool "flash_lock" | 285 | bool "flash_lock" |
286 | default y | 286 | default n # doesn't build on Ubuntu 8.04 |
287 | help | 287 | help |
288 | The flash_lock binary from mtd-utils as of git head 5ec0c10d0. This | 288 | The flash_lock binary from mtd-utils as of git head 5ec0c10d0. This |
289 | utility locks part or all of the flash device. | 289 | utility locks part or all of the flash device. |
290 | 290 | ||
291 | config FLASH_UNLOCK | 291 | config FLASH_UNLOCK |
292 | bool "flash_unlock" | 292 | bool "flash_unlock" |
293 | default y | 293 | default n # doesn't build on Ubuntu 8.04 |
294 | help | 294 | help |
295 | The flash_unlock binary from mtd-utils as of git head 5ec0c10d0. This | 295 | The flash_unlock binary from mtd-utils as of git head 5ec0c10d0. This |
296 | utility unlocks part or all of the flash device. | 296 | utility unlocks part or all of the flash device. |
297 | 297 | ||
298 | config FLASH_ERASEALL | 298 | config FLASH_ERASEALL |
299 | bool "flash_eraseall" | 299 | bool "flash_eraseall" |
300 | default y | 300 | default n # doesn't build on Ubuntu 8.04 |
301 | help | 301 | help |
302 | The flash_eraseall binary from mtd-utils as of git head c4c6a59eb. | 302 | The flash_eraseall binary from mtd-utils as of git head c4c6a59eb. |
303 | This utility is used to erase the whole MTD device. | 303 | This utility is used to erase the whole MTD device. |
@@ -311,7 +311,7 @@ config IONICE | |||
311 | 311 | ||
312 | config INOTIFYD | 312 | config INOTIFYD |
313 | bool "inotifyd" | 313 | bool "inotifyd" |
314 | default y | 314 | default n # doesn't build on Knoppix 5 |
315 | help | 315 | help |
316 | Simple inotify daemon. Reports filesystem changes. Requires | 316 | Simple inotify daemon. Reports filesystem changes. Requires |
317 | kernel >= 2.6.13 | 317 | kernel >= 2.6.13 |
@@ -549,7 +549,7 @@ config READAHEAD | |||
549 | 549 | ||
550 | config RFKILL | 550 | config RFKILL |
551 | bool "rfkill" | 551 | bool "rfkill" |
552 | default n | 552 | default n # doesn't build on Ubuntu 9.04 |
553 | help | 553 | help |
554 | Enable/disable wireless devices. | 554 | Enable/disable wireless devices. |
555 | 555 | ||
@@ -588,7 +588,7 @@ config STRINGS | |||
588 | 588 | ||
589 | config TASKSET | 589 | config TASKSET |
590 | bool "taskset" | 590 | bool "taskset" |
591 | default y | 591 | default n # doesn't build on some non-x86 targets (m68k) |
592 | help | 592 | help |
593 | Retrieve or set a processes's CPU affinity. | 593 | Retrieve or set a processes's CPU affinity. |
594 | This requires sched_{g,s}etaffinity support in your libc. | 594 | This requires sched_{g,s}etaffinity support in your libc. |