diff options
author | Denys Vlasenko | 2011-07-08 08:49:40 +0200 |
---|---|---|
committer | Denys Vlasenko | 2011-07-08 08:49:40 +0200 |
commit | 14bd16ac56e81e4912341cb731dc54af0dbe9e6c (patch) | |
tree | 729afe775b6a0b5f15e67ad93909d539aaf0429e /util-linux/acpid.c | |
parent | acff3733bae6a9928d0109d5e4f93c32e82969d8 (diff) | |
download | busybox-14bd16ac56e81e4912341cb731dc54af0dbe9e6c.zip busybox-14bd16ac56e81e4912341cb731dc54af0dbe9e6c.tar.gz |
more tweak for bionic
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/acpid.c')
-rw-r--r-- | util-linux/acpid.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/util-linux/acpid.c b/util-linux/acpid.c index 2f27cfd..6e7321b 100644 --- a/util-linux/acpid.c +++ b/util-linux/acpid.c @@ -33,6 +33,25 @@ #include <syslog.h> #include <linux/input.h> +#ifndef EV_SW +# define EV_SW 0x05 +#endif +#ifndef EV_KEY +# define EV_KEY 0x01 +#endif +#ifndef SW_LID +# define SW_LID 0x00 +#endif +#ifndef SW_RFKILL_ALL +# define SW_RFKILL_ALL 0x03 +#endif +#ifndef KEY_POWER +# define KEY_POWER 116 /* SC System Power Down */ +#endif +#ifndef KEY_SLEEP +# define KEY_SLEEP 142 /* SC System Sleep */ +#endif + enum { OPT_c = (1 << 0), OPT_d = (1 << 1), |