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]
94 lines
1.5 KiB
Bash
Executable file
94 lines
1.5 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
#
|
|
|
|
KIRKWOOD_BOARD_NAME=
|
|
KIRKWOOD_MODEL=
|
|
|
|
kirkwood_board_detect() {
|
|
local machine
|
|
local name
|
|
|
|
machine=$(cat /proc/device-tree/model)
|
|
|
|
case "$machine" in
|
|
"Seagate FreeAgent Dockstar")
|
|
name="dockstar"
|
|
;;
|
|
|
|
"Seagate GoFlex Home")
|
|
name="goflexhome"
|
|
;;
|
|
|
|
"Seagate GoFlex Net")
|
|
name="goflexnet"
|
|
;;
|
|
|
|
"Iomega Iconnect")
|
|
name="iconnect"
|
|
;;
|
|
|
|
"RaidSonic ICY BOX IB-NAS62x0 (Rev B)")
|
|
name="ib62x0"
|
|
;;
|
|
|
|
"Cloud Engines Pogoplug E02")
|
|
name="pogo_e02"
|
|
;;
|
|
|
|
"Linksys EA3500")
|
|
name="linksys-audi"
|
|
;;
|
|
|
|
"Linksys E4200v2 / EA4500")
|
|
name="linksys-viper"
|
|
;;
|
|
|
|
"Globalscale Technologies Guruplug Server Plus")
|
|
name="guruplug-server-plus"
|
|
;;
|
|
|
|
"Globalscale Technologies SheevaPlug")
|
|
name="sheevaplug"
|
|
;;
|
|
|
|
"Globalscale Technologies eSATA SheevaPlug")
|
|
name="sheevaplug-esata"
|
|
;;
|
|
|
|
"ZyXEL NSA310b")
|
|
name="nsa310b"
|
|
;;
|
|
|
|
"ZyXEL NSA310S")
|
|
name="nsa310s"
|
|
;;
|
|
|
|
"ZyXEL NSA325")
|
|
name="nsa325"
|
|
;;
|
|
|
|
*)
|
|
name="generic"
|
|
;;
|
|
esac
|
|
|
|
[ -z "$KIRKWOOD_BOARD_NAME" ] && KIRKWOOD_BOARD_NAME="$name"
|
|
[ -z "$KIRKWOOD_MODEL" ] && KIRKWOOD_MODEL="$machine"
|
|
|
|
[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
|
|
|
|
echo "$KIRKWOOD_BOARD_NAME" > /tmp/sysinfo/board_name
|
|
echo "$KIRKWOOD_MODEL" > /tmp/sysinfo/model
|
|
}
|
|
|
|
kirkwood_board_name() {
|
|
local name
|
|
|
|
[ -f /tmp/sysinfo/board_name ] || kirkwood_board_detect
|
|
[ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name)
|
|
[ -z "$name" ] && name="unknown"
|
|
|
|
echo "$name"
|
|
}
|