This is an old revision of the document!
An LED will first blink fast red, the fast yellow. If successful the LEDs will be solid green, otherwise red.
The STATUS LED will be green and after inserting the USB Stick the WLAN1 LED will also start blinking. Afer a few seconds all LEDs will blink green together. When the update is done the LEDs will be in a stare where STATUS LED is solid yellow and WLAN1 LED is blinking yellow green. All other LEDs are solid red.
You can now reboot the device and check the status of the licenses with the command:
cli status license
$1$LVOmS4hg$h3X0lt8xMrlElRyqXODLC/ e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0876dfca6d6fedf99b2ab87b6e2fed4bd4051ede78a8a9135b500b2e94d99b88 d6414f06abe9d25df078def16971fc48a0c18fb5da799c141cc8c555683467a7
#!/bin/ash/ set -xv echo "SLOW GREEN" > /tmp/status/led-manager/led3 eval $(/usr/local/sbin/cli status -s ) sleep 3 cp /mnt/media/autorun/$SERIAL_NUMBER\.lic /tmp/ || echo "FAST RED" > /tmp/status/led-manager/led3 cli update license file:///tmp/$SERIAL_NUMBER\.lic || echo "FAST YELLOW" > /tmp/status/led-manager/led3 sleep 5 eval $(/usr/local/sbin/cli status -s ) if [ "$FEATURE_WLAN" != licensed ]; then for i in $(ls /sys/class/leds/*green/brightness); do echo 1 > $i; done else for i in $(ls /sys/class/leds/*red/brightness); do echo 1 > $i; done fi