72b58f2eb1
This is the oxnas target previously developed at http://gitorious.org/openwrt-oxnas Basically, this consolidates the changes and addtionas from http://github.org/kref/linux-oxnas into a new OpenWrt hardware target 'oxnas' adding support for PLX Technology NAS7820/NAS7821/NAS7825/... formally known as Oxford Semiconductor OXE810SE/OXE815/OX820/... For now there are 4 supported boards: Cloud Engines Pogoplug V3 (without PCIe) fully supported Cloud Engines Pogoplug Pro (with PCIe) fully supported MitraStar STG-212 aka ZyXEL NSA-212, aka Medion Akoya P89625 / P89636 / P89626 / P89630, aka Medion MD 86407 / MD 86805 / MD 86517 / MD 86587 fully supported, see http://wiki.openwrt.org/toh/medion/md86587 Shuttle KD-20 partially supported (S-ATA driver lacks support for 2nd port) Signed-off-by: Daniel Golle <daniel@makrotopia.org> SVN-Revision: 43388
49 lines
834 B
Bash
Executable File
49 lines
834 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
#
|
|
|
|
OXNAS_BOARD_NAME=
|
|
OXNAS_MODEL=
|
|
|
|
oxnas_board_detect() {
|
|
local machine
|
|
local name
|
|
|
|
machine=$(cat /proc/device-tree/model)
|
|
|
|
case "$machine" in
|
|
*"MitraStar Technology Corp. STG-212"*)
|
|
name="stg212"
|
|
;;
|
|
*"Shuttle KD20"*)
|
|
name="kd20"
|
|
;;
|
|
*"Pogoplug Pro"*)
|
|
name="pogoplugpro"
|
|
;;
|
|
*"Pogoplug V3"*)
|
|
name="pogoplugv3"
|
|
;;
|
|
esac
|
|
|
|
[ -z "$name" ] && name="unknown"
|
|
|
|
[ -z "$OXNAS_BOARD_NAME" ] && OXNAS_BOARD_NAME="$name"
|
|
[ -z "$OXNAS_MODEL" ] && OXNAS_MODEL="$machine"
|
|
|
|
[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
|
|
|
|
echo "$OXNAS_BOARD_NAME" > /tmp/sysinfo/board_name
|
|
echo "$OXNAS_MODEL" > /tmp/sysinfo/model
|
|
}
|
|
|
|
oxnas_board_name() {
|
|
local name
|
|
|
|
[ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name)
|
|
[ -z "$name" ] && name="unknown"
|
|
|
|
echo "$name"
|
|
}
|