build system: disable some applets by default

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2010-07-14 08:33:20 +02:00
parent 0e450669d4
commit 6ac37da425
2 changed files with 8 additions and 7 deletions

View File

@ -138,6 +138,7 @@ config UNICODE_USING_LOCALE
help help
With this option on, Unicode support is implemented using libc With this option on, Unicode support is implemented using libc
routines. Otherwise, internal implementation is used. routines. Otherwise, internal implementation is used.
Internal implementation is smaller.
config FEATURE_CHECK_UNICODE_IN_ENV config FEATURE_CHECK_UNICODE_IN_ENV
bool "Check $LANG environment variable" bool "Check $LANG environment variable"

View File

@ -276,28 +276,28 @@ config FBSPLASH
config FLASHCP config FLASHCP
bool "flashcp" bool "flashcp"
default y default n # doesn't build on Ubuntu 8.04
help help
The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7. The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7.
This utility is used to copy images into a MTD device. This utility is used to copy images into a MTD device.
config FLASH_LOCK config FLASH_LOCK
bool "flash_lock" bool "flash_lock"
default y default n # doesn't build on Ubuntu 8.04
help help
The flash_lock binary from mtd-utils as of git head 5ec0c10d0. This The flash_lock binary from mtd-utils as of git head 5ec0c10d0. This
utility locks part or all of the flash device. utility locks part or all of the flash device.
config FLASH_UNLOCK config FLASH_UNLOCK
bool "flash_unlock" bool "flash_unlock"
default y default n # doesn't build on Ubuntu 8.04
help help
The flash_unlock binary from mtd-utils as of git head 5ec0c10d0. This The flash_unlock binary from mtd-utils as of git head 5ec0c10d0. This
utility unlocks part or all of the flash device. utility unlocks part or all of the flash device.
config FLASH_ERASEALL config FLASH_ERASEALL
bool "flash_eraseall" bool "flash_eraseall"
default y default n # doesn't build on Ubuntu 8.04
help help
The flash_eraseall binary from mtd-utils as of git head c4c6a59eb. The flash_eraseall binary from mtd-utils as of git head c4c6a59eb.
This utility is used to erase the whole MTD device. This utility is used to erase the whole MTD device.
@ -311,7 +311,7 @@ config IONICE
config INOTIFYD config INOTIFYD
bool "inotifyd" bool "inotifyd"
default y default n # doesn't build on Knoppix 5
help help
Simple inotify daemon. Reports filesystem changes. Requires Simple inotify daemon. Reports filesystem changes. Requires
kernel >= 2.6.13 kernel >= 2.6.13
@ -549,7 +549,7 @@ config READAHEAD
config RFKILL config RFKILL
bool "rfkill" bool "rfkill"
default n default n # doesn't build on Ubuntu 9.04
help help
Enable/disable wireless devices. Enable/disable wireless devices.
@ -588,7 +588,7 @@ config STRINGS
config TASKSET config TASKSET
bool "taskset" bool "taskset"
default y default n # doesn't build on some non-x86 targets (m68k)
help help
Retrieve or set a processes's CPU affinity. Retrieve or set a processes's CPU affinity.
This requires sched_{g,s}etaffinity support in your libc. This requires sched_{g,s}etaffinity support in your libc.