lelikg Posted July 12, 2019 Posted July 12, 2019 Hi, I've installed armbian for Orange Pi 3 (Buster) Everything works great, and the system boots, I even copied to the EMMC for booting from the Flash. The only problem is that the status LED stays "RED" and doesn't turn "GREEN" right after booting, like it does in the orangePi official debian. How can I make it GREEN? Thanks Leon
Igor Posted July 12, 2019 Posted July 12, 2019 5 hours ago, lelikg said: How can I make it GREEN? It is on you to find out. I am not sure we know that ... This board is still under development.
martinayotte Posted July 12, 2019 Posted July 12, 2019 8 hours ago, lelikg said: he only problem is that the status LED stays "RED" and doesn't turn "GREEN" With Mainline image, I'm doing flashing of both LEDs with this script : #!/bin/bash while true ; do echo 255 > /sys/class/leds/orangepi\:green\:status/brightness echo 0 > /sys/class/leds/orangepi\:red\:power/brightness sleep 0.25 echo 0 > /sys/class/leds/orangepi\:green\:status/brightness echo 255 > /sys/class/leds/orangepi\:red\:power/brightness sleep 0.25 done 1
Recommended Posts