diff options
author | John Crispin <blogic@openwrt.org> | 2008-08-05 22:17:16 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2008-08-05 22:17:16 +0000 |
commit | b82dd11b1d0e1f3492343b54d64ee6d628e3d74c (patch) | |
tree | ed647aadd52bd89024422262d530631b8fcaa45c /target/linux/atheros/base-files/etc/hotplug.d | |
parent | caedcd715d84f471068de1249cbe9da49d8bce0b (diff) | |
download | upstream-b82dd11b1d0e1f3492343b54d64ee6d628e3d74c.tar.gz upstream-b82dd11b1d0e1f3492343b54d64ee6d628e3d74c.tar.bz2 upstream-b82dd11b1d0e1f3492343b54d64ee6d628e3d74c.zip |
add proper uci/hotplug based button handling on atheros and work around boards, where the gpio release irq does not fire correctly
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12179 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/atheros/base-files/etc/hotplug.d')
-rw-r--r-- | target/linux/atheros/base-files/etc/hotplug.d/button/00-button | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/atheros/base-files/etc/hotplug.d/button/00-button b/target/linux/atheros/base-files/etc/hotplug.d/button/00-button new file mode 100644 index 0000000000..857a59b4a8 --- /dev/null +++ b/target/linux/atheros/base-files/etc/hotplug.d/button/00-button @@ -0,0 +1,24 @@ +. /etc/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 |