4383c13aee
This patch add ZyXEL NSA325 2-Bay Media Server The ZyXEL NSA325 device is a Kirkwood based NAS: - SoC: Marvell 88F6702 1600Mhz - SDRAM memory: 512MB DDR2 400Mhz - Gigabit ethernet: Marvell Alaska - Flash memory: 128MB - 1 Power button - 1 Power LED (blue) - 5 Status LED (green/red) - 1 Copy/Sync button - 1 Reset button - 2 SATA II ports (internal) - 2 USB 2.0 ports (back) - 1 USB 3.0 port (front) - Fan (fixed speed) - hardware watchdog in a mcu Basically a bigger, more powerful version of NSA310, installation is the same as they share the same flash layout. A notable difference is that there is a hardware watchdog in a mcu on the board, which is disabled by default in the LEDE u-boot. The watchdog is also disabled with a GPIO activation through raw register change when kwbooting or it would reset the board before the new uboot was transferred. Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it> Signed-off-by: Felix Fietkau <nbd@nbd.name> [remove dead code]
57 lines
1.4 KiB
Bash
Executable file
57 lines
1.4 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2012-2015 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
. /lib/kirkwood.sh
|
|
|
|
board_config_update
|
|
|
|
board=$(kirkwood_board_name)
|
|
|
|
case "$board" in
|
|
"dockstar")
|
|
ucidef_set_led_default "health" "health" "status:green:health" "1"
|
|
ucidef_set_led_default "fault" "fault" "status:orange:fault" "1"
|
|
;;
|
|
"linksys-audi")
|
|
ucidef_set_led_default "power" "power" "audi:green:power" "1"
|
|
;;
|
|
"linksys-viper")
|
|
ucidef_set_led_default "health" "health" "viper:white:health" "1"
|
|
ucidef_set_led_default "pulse" "pulse" "viper:white:pulse" "1"
|
|
;;
|
|
"goflexhome" | \
|
|
"goflexnet")
|
|
ucidef_set_led_default "health" "health" "status:green:health" "1"
|
|
ucidef_set_led_default "fault" "fault" "status:orange:fault" "0"
|
|
;;
|
|
"ib62x0")
|
|
ucidef_set_led_default "health" "health" "ib62x0:green:os" "1"
|
|
ucidef_set_led_default "fault" "fault" "ib62x0:red:os" "1"
|
|
;;
|
|
"pogo_e02")
|
|
ucidef_set_led_default "health" "health" "pogo_e02:green:health" "1"
|
|
ucidef_set_led_default "fault" "fault" "pogo_e02:orange:fault" "1"
|
|
;;
|
|
"guruplug-server-plus")
|
|
ucidef_set_led_timer "health" "health" "guruplug:red:health" "200" "800"
|
|
;;
|
|
"nsa310b")
|
|
ucidef_set_led_default "health" "health" "nsa310:green:sys" "1"
|
|
;;
|
|
"nsa325")
|
|
ucidef_set_led_default "health" "health" "nsa325:green:sys" "1"
|
|
;;
|
|
"sheevaplug" | \
|
|
"sheevaplug-esata")
|
|
ucidef_set_led_timer "health" "health" "sheevaplug:blue:health" "200" "800"
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|