diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-29 09:05:50 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-29 09:05:50 +0000 |
commit | d16950ded91446a23a6ceef35fb3e100400301d9 (patch) | |
tree | 038faff9ea801e5d7f022b75256fc52e66186b75 /util-linux/Config.in | |
parent | f7d87f9b183aa28777ce09d40222fbe221d15c91 (diff) | |
download | busybox-w32-d16950ded91446a23a6ceef35fb3e100400301d9.tar.gz busybox-w32-d16950ded91446a23a6ceef35fb3e100400301d9.tar.bz2 busybox-w32-d16950ded91446a23a6ceef35fb3e100400301d9.zip |
acpid: new applet by Vladimir. +737 bytes
Diffstat (limited to 'util-linux/Config.in')
-rw-r--r-- | util-linux/Config.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/util-linux/Config.in b/util-linux/Config.in index 976507b68..3bba2e26d 100644 --- a/util-linux/Config.in +++ b/util-linux/Config.in | |||
@@ -5,6 +5,28 @@ | |||
5 | 5 | ||
6 | menu "Linux System Utilities" | 6 | menu "Linux System Utilities" |
7 | 7 | ||
8 | config ACPID | ||
9 | bool "acpid" | ||
10 | default n | ||
11 | help | ||
12 | acpid listens to ACPI events coming either in textual form from | ||
13 | /proc/acpi/event (though it is marked deprecated it is still widely | ||
14 | used and _is_ a standard) or in binary form from specified evdevs | ||
15 | (just use /dev/input/event*). | ||
16 | |||
17 | It parses the event to retrieve ACTION and a possible PARAMETER. | ||
18 | It then spawns /etc/acpi/<ACTION>[/<PARAMETER>] either via run-parts | ||
19 | (if the resulting path is a directory) or directly as an executable. | ||
20 | |||
21 | N.B. acpid relies on run-parts so have the latter installed. | ||
22 | |||
23 | config FEATURE_ACPID_COMPAT | ||
24 | bool "Accept and ignore redundant options" | ||
25 | default n | ||
26 | depends on ACPID | ||
27 | help | ||
28 | Accept and ignore compatibility options -g -m -s -S -v. | ||
29 | |||
8 | config BLKID | 30 | config BLKID |
9 | bool "blkid" | 31 | bool "blkid" |
10 | default n | 32 | default n |