From 1850e0f0a7627b4e0ef18516ff2b25a7c14215ca Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 13 Mar 2015 03:02:28 +0000 Subject: Rename 'atheros' target to 'ath25' Rename 'atheros' target to more precise 'ath25'. Signed-off-by: Sergey Ryazanov SVN-Revision: 44736 --- .../base-files/etc/hotplug.d/button/00-button | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 target/linux/ath25/base-files/etc/hotplug.d/button/00-button (limited to 'target/linux/ath25/base-files/etc/hotplug.d/button/00-button') diff --git a/target/linux/ath25/base-files/etc/hotplug.d/button/00-button b/target/linux/ath25/base-files/etc/hotplug.d/button/00-button new file mode 100644 index 0000000000..63cc217d5d --- /dev/null +++ b/target/linux/ath25/base-files/etc/hotplug.d/button/00-button @@ -0,0 +1,24 @@ +. /lib/functions.sh +do_button () { + local button + local action + local handler + local min + local max + + config_get button $1 button + config_get action $1 action + config_get handler $1 handler + config_get min $1 min + config_get max $1 max + + [ "$ACTION" = "$action" -a "$BUTTON" = "$button" -a -n "$handler" ] && { + [ -z "$min" -o -z "$max" ] && eval $handler + [ -n "$min" -a -n "$max" ] && { + [ $min -le $SEEN -a $max -ge $SEEN ] && eval $handler + } + } +} + +config_load system +config_foreach do_button button -- cgit v1.2.3