diff options
author | John Crispin <john@openwrt.org> | 2014-06-19 14:13:20 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-06-19 14:13:20 +0000 |
commit | e6e024f155f1a9348418ae6e80f4166c4b281d10 (patch) | |
tree | 03d6c2ea92c293fd59b91ff105628c95367e5b10 /target/linux/octeon/base-files/lib | |
parent | f98b58fcec74f7c7c87ab24a8e1d423458e405dd (diff) | |
download | upstream-e6e024f155f1a9348418ae6e80f4166c4b281d10.tar.gz upstream-e6e024f155f1a9348418ae6e80f4166c4b281d10.tar.bz2 upstream-e6e024f155f1a9348418ae6e80f4166c4b281d10.zip |
octeon: add basic board detection
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 41274
Diffstat (limited to 'target/linux/octeon/base-files/lib')
-rwxr-xr-x | target/linux/octeon/base-files/lib/functions/octeon.sh | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/target/linux/octeon/base-files/lib/functions/octeon.sh b/target/linux/octeon/base-files/lib/functions/octeon.sh new file mode 100755 index 0000000000..8871ed7117 --- /dev/null +++ b/target/linux/octeon/base-files/lib/functions/octeon.sh @@ -0,0 +1,42 @@ +#!/bin/sh +# +# Copyright (C) 2010-2013 OpenWrt.org +# + +OCTEON_BOARD_NAME= +OCTEON_MODEL= + +octeon_board_detect() { + local machine + local name + + machine=$(grep "^system type" /proc/cpuinfo | sed "s/system type.*: \(.*\)/\1/g") + + case "$machine" in + "UBNT_E100"*) + name="erlite" + ;; + + *) + name="generic" + ;; + esac + + [ -z "$OCTEON_BOARD_NAME" ] && OCTEON_BOARD_NAME="$name" + [ -z "$OCTEON_MODEL" ] && OCTEON_MODEL="$machine" + + [ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/" + + echo "$OCTEON_BOARD_NAME" > /tmp/sysinfo/board_name + echo "$OCTEON_MODEL" > /tmp/sysinfo/model +} + +octeon_board_name() { + local name + + [ -f /tmp/sysinfo/board_name ] || octeon_board_detect + [ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name) + [ -z "$name" ] && name="unknown" + + echo "$name" +} |