From: blogic Date: Thu, 4 Jul 2013 13:31:09 +0000 (+0000) Subject: button-hotplug: Add KEY_POWER handling X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=7955657829ea2511a0b20c341028a4fdd751e231 button-hotplug: Add KEY_POWER handling When running OpenWrt within KVM KEY_POWER is generated from the ACPI button driver when restarting or powering down the VM. Extend button-hotplug to allow user space handlers for these events. Signed-off-by: Helmut Schaa Patchwork: http://patchwork.openwrt.org/patch/3799/ git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37160 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/kernel/button-hotplug/src/button-hotplug.c b/package/kernel/button-hotplug/src/button-hotplug.c index 4a8c4a88ed..684a0c6e3d 100644 --- a/package/kernel/button-hotplug/src/button-hotplug.c +++ b/package/kernel/button-hotplug/src/button-hotplug.c @@ -84,6 +84,7 @@ static struct bh_map button_map[] = { BH_MAP(BTN_8, "BTN_8"), BH_MAP(BTN_9, "BTN_9"), BH_MAP(KEY_RESTART, "reset"), + BH_MAP(KEY_POWER, "power"), #ifdef KEY_WPS_BUTTON BH_MAP(KEY_WPS_BUTTON, "wps"), #endif /* KEY_WPS_BUTTON */