I never looked at in detail yet
If you connect via ssh and list the content of the folder /sys/class/leds
There should be a list of leds defined, please post the content here
I think it will only mention familybox:red:fail
The blue led is set blink on in the kernel I think I can adapt it but also provide a input in the folder mentioned above
But it should already be visible in /sys/devices/platform/leds-ns2l with name familybox:blue:sata
The default trigger is set to timer
this can be changed by writing default-on to the "trigger" file in /sys/devices/platform/leds-ns2l/familybox:blue:sata
after that you should be able to switch it on or of by writing 1 or 0 to the "brightness" file in that same sub folder
To write to these file use the command "cat", for example
- Code: Select all
echo default-on > /sys/devices/platform/leds-ns2l/familybox:blue:sata/trigger
echo 1 > /sys/devices/platform/leds-ns2l/familybox:blue:sata/brightness
or
echo 0 > /sys/devices/platform/leds-ns2l/familybox:blue:sata/brightness