diff options
Diffstat (limited to 'package/busybox/config/util-linux')
-rw-r--r-- | package/busybox/config/util-linux/Config.in | 78 |
1 files changed, 59 insertions, 19 deletions
diff --git a/package/busybox/config/util-linux/Config.in b/package/busybox/config/util-linux/Config.in index 3f67b0b8e..5951e8dec 100644 --- a/package/busybox/config/util-linux/Config.in +++ b/package/busybox/config/util-linux/Config.in @@ -5,9 +5,31 @@ menu "Linux System Utilities" +config BUSYBOX_ACPID + bool "acpid" + default n + help + acpid listens to ACPI events coming either in textual form from + /proc/acpi/event (though it is marked deprecated it is still widely + used and _is_ a standard) or in binary form from specified evdevs + (just use /dev/input/event*). + + It parses the event to retrieve ACTION and a possible PARAMETER. + It then spawns /etc/acpi/<ACTION>[/<PARAMETER>] either via run-parts + (if the resulting path is a directory) or directly as an executable. + + N.B. acpid relies on run-parts so have the latter installed. + +config BUSYBOX_FEATURE_ACPID_COMPAT + bool "Accept and ignore redundant options" + default n + depends on BUSYBOX_ACPID + help + Accept and ignore compatibility options -g -m -s -S -v. + config BUSYBOX_BLKID bool "blkid" - default y + default n select BUSYBOX_VOLUMEID help Lists labels and UUIDs of all filesystems. @@ -211,6 +233,12 @@ config BUSYBOX_FEATURE_MINIX2 this. If you enabled 'mkfs_minix' then you almost certainly want to be using the version 2 filesystem support. +config BUSYBOX_MKFS_VFAT + bool "mkfs_vfat" + default n + help + Utility to create FAT32 filesystems. + config BUSYBOX_GETOPT bool "getopt" default n @@ -222,9 +250,16 @@ config BUSYBOX_GETOPT written by others, this utility may be for you. Most people will wisely leave this disabled. +config BUSYBOX_FEATURE_GETOPT_LONG + bool "Support option -l" + default y if LONG_OPTS + depends on BUSYBOX_GETOPT + help + Enable support for long options (option -l). + config BUSYBOX_HEXDUMP bool "hexdump" - default y + default n help The hexdump utility is used to display binary data in a readable way that is comparable to the output from most hex editors. @@ -248,6 +283,7 @@ config BUSYBOX_HD config BUSYBOX_HWCLOCK bool "hwclock" + default y if ADK_TARGET_WITH_RTC default n help The hwclock utility is used to read and set the hardware clock @@ -258,7 +294,7 @@ config BUSYBOX_HWCLOCK config BUSYBOX_FEATURE_HWCLOCK_LONG_OPTIONS bool "Support long options (--hctosys,...)" default n - depends on BUSYBOX_HWCLOCK && BUSYBOX_GETOPT_LONG + depends on BUSYBOX_HWCLOCK && BUSYBOX_LONG_OPTS help By default, the hwclock utility only uses short options. If you are overly fond of its long options, such as --hctosys, --utc, etc) @@ -278,7 +314,7 @@ config BUSYBOX_FEATURE_HWCLOCK_ADJTIME_FHS config BUSYBOX_IPCRM bool "ipcrm" - default y + default n select BUSYBOX_FEATURE_SUID help The ipcrm utility allows the removal of System V interprocess @@ -287,7 +323,7 @@ config BUSYBOX_IPCRM config BUSYBOX_IPCS bool "ipcs" - default y + default n select BUSYBOX_FEATURE_SUID help The ipcs utility is used to provide information on the currently @@ -295,7 +331,7 @@ config BUSYBOX_IPCS config BUSYBOX_LOSETUP bool "losetup" - default y + default n help losetup is used to associate or detach a loop device with a regular file or block device, and to query the status of a loop device. This @@ -371,19 +407,16 @@ config BUSYBOX_MKSWAP Once you have created swap space using 'mkswap' you need to enable the swap space using the 'swapon' utility. -config BUSYBOX_FEATURE_MKSWAP_V0 - bool "Version 0 support" +config BUSYBOX_FEATURE_MKSWAP_UUID + bool "UUID support" default n depends on BUSYBOX_MKSWAP -# depends on BUSYBOX_MKSWAP && BUSYBOX_DEPRECATED help - Enable support for the old v0 style. - If your kernel is older than 2.1.117, then v0 support is the - only option. + Generate swap spaces with universally unique identifiers. config BUSYBOX_MORE bool "more" - default y + default n help more is a simple utility which allows you to read text one screen sized page at a time. If you want to read text that is larger than @@ -450,7 +483,7 @@ config BUSYBOX_FEATURE_VOLUMEID_JFS config BUSYBOX_FEATURE_VOLUMEID_XFS bool "xfs filesystem" - default y + default n depends on BUSYBOX_VOLUMEID help TODO @@ -651,7 +684,7 @@ config BUSYBOX_FEATURE_MOUNT_HELPERS config BUSYBOX_FEATURE_MOUNT_LABEL bool "Support specifiying devices by label or UUID" - default y + default n depends on BUSYBOX_MOUNT select BUSYBOX_VOLUMEID help @@ -660,7 +693,7 @@ config BUSYBOX_FEATURE_MOUNT_LABEL config BUSYBOX_FEATURE_MOUNT_NFS bool "Support mounting NFS file systems" - default n + default y depends on BUSYBOX_MOUNT select BUSYBOX_FEATURE_HAVE_RPC select BUSYBOX_FEATURE_SYSLOG @@ -669,7 +702,7 @@ config BUSYBOX_FEATURE_MOUNT_NFS config BUSYBOX_FEATURE_MOUNT_CIFS bool "Support mounting CIFS/SMB file systems" - default n + default y depends on BUSYBOX_MOUNT help Enable support for samba mounts. @@ -705,7 +738,7 @@ config BUSYBOX_PIVOT_ROOT config BUSYBOX_RDATE bool "rdate" - default y + default n help The rdate utility allows you to synchronize the date and time of your system clock with the date and time of a remote networked system using @@ -736,6 +769,13 @@ config BUSYBOX_SCRIPT help The script makes typescript of terminal session. +config BUSYBOX_SCRIPTREPLAY + bool "scriptreplay" + default n + help + This program replays a typescript, using timing information + given by script -t. + config BUSYBOX_SETARCH bool "setarch" default n @@ -803,7 +843,7 @@ comment "Common options for mount/umount" config BUSYBOX_FEATURE_MOUNT_LOOP bool "Support loopback mounts" - default y + default n depends on BUSYBOX_MOUNT || BUSYBOX_UMOUNT help Enabling this feature allows automatic mounting of files (containing |