diff --git a/examples/shell/openwrt/disable_leds_tplinkarcher.sh b/examples/shell/openwrt/disable_leds_tplinkarcher.sh index a133cb6..9b2b034 100644 --- a/examples/shell/openwrt/disable_leds_tplinkarcher.sh +++ b/examples/shell/openwrt/disable_leds_tplinkarcher.sh @@ -1,10 +1,11 @@ #!/bin/sh -for p in `find /sys/devices/platform/leds-gpio/leds -name trigger` +# Put this in rc.local (can be done via LuCI). Avoid using cron or similar hacks for the simple startup task :) +for p in `find /sys/devices/platform/leds/leds -name trigger` do echo none > $p done -for p in `find /sys/devices/platform/leds-gpio/leds -name brightness` +for p in `find /sys/devices/platform/leds/leds -name brightness` do echo 0 > $p done