aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/octeon/base-files/lib/functions/octeon.sh
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/octeon/base-files/lib/functions/octeon.sh')
-rwxr-xr-xtarget/linux/octeon/base-files/lib/functions/octeon.sh50
1 files changed, 0 insertions, 50 deletions
diff --git a/target/linux/octeon/base-files/lib/functions/octeon.sh b/target/linux/octeon/base-files/lib/functions/octeon.sh
deleted file mode 100755
index deae9e3778..0000000000
--- a/target/linux/octeon/base-files/lib/functions/octeon.sh
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/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"
- ;;
-
- "UBNT_E200"*)
- name="er"
- ;;
-
- "UBNT_E220"*)
- name="erpro"
- ;;
-
- *)
- 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"
-}