aboutsummaryrefslogtreecommitdiff
path: root/target/linux/ramips/mt7621/base-files/etc/rc.button/lights_toggle
blob: c008b633a4e07724b586980e9a8d5797fc403a8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

[[ "${ACTION}" = "released" ]] || exit 0

. /lib/functions.sh

case "$(board_name)" in
tplink,ec330-g5u-v1)
	led_light="/sys/class/gpio/led-light/value"
	echo "$((!$(cat $led_light)))" > "$led_light"
;;
	*)
;;
esac

return 0