f4afa00862
This target currently only supports Moschip's MCS8140 SoC, but support for other chips in the same family (MCS8142, MCS8144) will be easy to add. Target support is entirely using Device Tree for probing peripherals. Drivers support include: - PCI - USB 1 & 2 - watchdog - random number generator - UART - timer - internal Ethernet PHY - Ethernet MAC core Support for the following boards is included using Device Tree - Devolo dLAN USB Extender - Tigal RBT-832 SVN-Revision: 32462
43 lines
769 B
Bash
43 lines
769 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2012 OpenWrt.org
|
|
#
|
|
|
|
MCS814X_BOARD_NAME=
|
|
MCS814X_MODEL=
|
|
|
|
mcs814x_board_detect() {
|
|
local machine
|
|
local name
|
|
|
|
machine=$(cat /proc/device-tree/model)
|
|
|
|
case "$machine" in
|
|
*"Devolo dLAN USB Extender")
|
|
name="dlan-usb-extender"
|
|
;;
|
|
*"Tigal RBT-832")
|
|
name="rbt-832"
|
|
;;
|
|
esac
|
|
|
|
[ -z "$name" ] && name="unknown"
|
|
|
|
[ -z "$MCS814X_BOARD_NAME" ] && MCS814X_BOARD_NAME="$name"
|
|
[ -z "$MCS814X_MODEL" ] && MCS814X_MODEL="$machine"
|
|
|
|
[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
|
|
|
|
echo "$MCS814X_BOARD_NAME" > /tmp/sysinfo/board_name
|
|
echo "$MCS814X_MODEL" > /tmp/sysinfo/model
|
|
}
|
|
|
|
mcs814x_board_name() {
|
|
local name
|
|
|
|
[ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name)
|
|
[ -z "$name" ] && name="unknown"
|
|
|
|
echo "$name"
|
|
}
|