diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-29 23:19:41 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-29 23:19:41 +0000 |
commit | beda11255b27d2ec089aae4d8248000f213d323b (patch) | |
tree | 0104bf6230cdda52838c7b268f0eb5f1eeba5e0e /target/linux/octeon/base-files/lib/functions | |
parent | f32de94e0a46e06586dfd4066465a9425fa64304 (diff) | |
download | upstream-beda11255b27d2ec089aae4d8248000f213d323b.tar.gz upstream-beda11255b27d2ec089aae4d8248000f213d323b.tar.bz2 upstream-beda11255b27d2ec089aae4d8248000f213d323b.zip |
octeon: get rid of /lib/functions/octeon.sh hackery, use sysinfo directly
Fixes sysupgrade
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48558
Diffstat (limited to 'target/linux/octeon/base-files/lib/functions')
-rwxr-xr-x | target/linux/octeon/base-files/lib/functions/octeon.sh | 50 |
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" -} |