bfbdeeb3de
Linksys WRT32X (Venom) is identical in hardware to the WRT3200ACM with a different flash layout and boots zImage rather than uImage. Specification: - Marvell Armada 385 88F6820 (2x 1.8GHz) - 256MB of Flash - 512MB of RAM - 2.4GHz (bgn) and 5GHz (an+ac wave 2) - 4x 1Gbps LAN + 1x 1Gbps WAN - 1x USB 3.0 and 1x USB 2.0/eSATA (combo port) Flash instruction: Apply factory image via web-gui. Signed-off-by: Michael Gray <michael.gray@lantisproject.com>
48 lines
801 B
Bash
48 lines
801 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2014-2016 OpenWrt.org
|
|
# Copyright (C) 2016 LEDE-Project.org
|
|
|
|
. /lib/functions.sh
|
|
. /lib/functions/leds.sh
|
|
|
|
get_status_led() {
|
|
case $(board_name) in
|
|
armada-385-linksys-caiman)
|
|
status_led="caiman:white:power"
|
|
;;
|
|
armada-385-linksys-cobra)
|
|
status_led="cobra:white:power"
|
|
;;
|
|
armada-385-linksys-rango)
|
|
status_led="rango:white:power"
|
|
;;
|
|
armada-385-linksys-shelby)
|
|
status_led="shelby:white:power"
|
|
;;
|
|
armada-385-linksys-venom)
|
|
status_led="venom:blue:power"
|
|
;;
|
|
armada-xp-linksys-mamba)
|
|
status_led="mamba:white:power"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
set_state() {
|
|
get_status_led
|
|
|
|
case "$1" in
|
|
preinit)
|
|
status_led_blink_preinit
|
|
;;
|
|
failsafe)
|
|
status_led_blink_failsafe
|
|
;;
|
|
preinit_regular)
|
|
status_led_blink_preinit_regular
|
|
;;
|
|
done)
|
|
status_led_on
|
|
;;
|
|
esac
|
|
}
|