2021-09-09 21:14:58 +00:00
|
|
|
#!/bin/sh
|
2022-08-24 08:35:55 +00:00
|
|
|
# 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`
|
2021-09-09 21:14:58 +00:00
|
|
|
do
|
|
|
|
echo none > $p
|
|
|
|
done
|
|
|
|
|
2022-08-24 08:35:55 +00:00
|
|
|
for p in `find /sys/devices/platform/leds/leds -name brightness`
|
2021-09-09 21:14:58 +00:00
|
|
|
do
|
|
|
|
echo 0 > $p
|
|
|
|
done
|