From 3660c51c405f2efe64db9b78d8e5fa0fffea4530 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Sat, 12 Nov 2011 23:39:56 +0000 Subject: lantiq: adds hotplug handler for handling buttons and makes w303v work with it SVN-Revision: 28999 --- .../base-files/etc/hotplug.d/button/10-generic.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh (limited to 'target/linux/lantiq/base-files') diff --git a/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh b/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh new file mode 100644 index 0000000000..b2fdda23f8 --- /dev/null +++ b/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +[ "${ACTION}" = "released" ] || exit 0 + +. /lib/functions.sh + +case "${BUTTON}" in + BTN_0) + logger "reset pressed" + sync + reboot + ;; + BTN_1) + logger "factory pressed" + jffs2_mark_erase "rootfs_data" + sync + reboot + ;; + *) + logger "unknown button ${BUTTON}" + ;; +esac -- cgit v1.2.3