summaryrefslogtreecommitdiffstats
path: root/target/linux/ath25/base-files/etc/hotplug.d
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2016-05-31 13:33:05 +0200
committerJo-Philipp Wich <jo@mein.io>2016-06-08 00:31:09 +0200
commit0a3d721465e10bdc4237b996756b79ff4d868fe1 (patch)
tree45dade6e7afa02784395cc97c87649f5e5c67289 /target/linux/ath25/base-files/etc/hotplug.d
parent7509658220970988e0529c5c33fc08de26de21ee (diff)
downloadmaster-31e0f0ae-0a3d721465e10bdc4237b996756b79ff4d868fe1.tar.gz
master-31e0f0ae-0a3d721465e10bdc4237b996756b79ff4d868fe1.tar.bz2
master-31e0f0ae-0a3d721465e10bdc4237b996756b79ff4d868fe1.zip
ath25: drop target specific button hotplug
The ath25 target has its own unique button action config support, which is not used anywhere except for two example logger statements in UCI. Since there is a generic /etc/rc.button facility since some time already there is no reason at all to keep this target specific mechanism anymore, so simply drop it. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'target/linux/ath25/base-files/etc/hotplug.d')
-rw-r--r--target/linux/ath25/base-files/etc/hotplug.d/button/00-button24
1 files changed, 0 insertions, 24 deletions
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
deleted file mode 100644
index 63cc217d5d..0000000000
--- a/target/linux/ath25/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