diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-13 03:02:28 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-13 03:02:28 +0000 |
commit | 1850e0f0a7627b4e0ef18516ff2b25a7c14215ca (patch) | |
tree | 22c612d44a744058d16d50acce527f0d07c9151b /target/linux/atheros/base-files/etc/hotplug.d | |
parent | 558a452e1a50f6195c8839c9828ae94a89ea0308 (diff) | |
download | upstream-1850e0f0a7627b4e0ef18516ff2b25a7c14215ca.tar.gz upstream-1850e0f0a7627b4e0ef18516ff2b25a7c14215ca.tar.bz2 upstream-1850e0f0a7627b4e0ef18516ff2b25a7c14215ca.zip |
Rename 'atheros' target to 'ath25'
Rename 'atheros' target to more precise 'ath25'.
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 44736
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, 0 insertions, 24 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 deleted file mode 100644 index 63cc217d5d..0000000000 --- a/target/linux/atheros/base-files/etc/hotplug.d/button/00-button +++ /dev/null @@ -1,24 +0,0 @@ -. /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 |