diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-19 11:58:43 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-19 11:58:43 +0000 |
commit | 3581298348ae2a9820d5aefa86a668f2905e7d91 (patch) | |
tree | 3cc3a0a0d16c0596f16232bcfa44c8d08bad1fa5 /target/linux/mpc83xx/base-files/lib | |
parent | 5956a3ca1a1582eae132e7377d2cff988aab9915 (diff) | |
download | mtk-20170518-3581298348ae2a9820d5aefa86a668f2905e7d91.zip mtk-20170518-3581298348ae2a9820d5aefa86a668f2905e7d91.tar.gz mtk-20170518-3581298348ae2a9820d5aefa86a668f2905e7d91.tar.bz2 |
mpc83xx: moved to targets feed
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44887
Diffstat (limited to 'target/linux/mpc83xx/base-files/lib')
-rwxr-xr-x | target/linux/mpc83xx/base-files/lib/mpc83xx.sh | 44 | ||||
-rw-r--r-- | target/linux/mpc83xx/base-files/lib/preinit/03_preinit_do_mpc83xx.sh | 9 |
2 files changed, 0 insertions, 53 deletions
diff --git a/target/linux/mpc83xx/base-files/lib/mpc83xx.sh b/target/linux/mpc83xx/base-files/lib/mpc83xx.sh deleted file mode 100755 index ea8e346..0000000 --- a/target/linux/mpc83xx/base-files/lib/mpc83xx.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Copyright (C) 2012 OpenWrt.org -# - -MPC83XX_BOARD_NAME= -MPC83XX_MODEL= - -mpc83xx_board_detect() { - local model - local name - - model=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /model/ {print $2}' /proc/cpuinfo) - - case "$model" in - "RB333") - name="rb333" - model="MikroTik RouterBOARD 333" - ;; - "RB600") - name="rb600" - model="MikroTik RouterBOARD 600" - ;; - esac - - [ -z "$name" ] && name="unknown" - - [ -z "$MPC83XX_BOARD_NAME" ] && MPC83XX_BOARD_NAME="$name" - [ -z "$MPC83XX_MODEL" ] && MPC83XX_MODEL="$model" - - [ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/" - - echo "$MPC83XX_BOARD_NAME" > /tmp/sysinfo/board_name - echo "$MPC83XX_MODEL" > /tmp/sysinfo/model -} - -mpc83xx_board_name() { - local name - - [ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name) - [ -z "$name" ] && name="unknown" - - echo "$name" -} diff --git a/target/linux/mpc83xx/base-files/lib/preinit/03_preinit_do_mpc83xx.sh b/target/linux/mpc83xx/base-files/lib/preinit/03_preinit_do_mpc83xx.sh deleted file mode 100644 index c67b1d4..0000000 --- a/target/linux/mpc83xx/base-files/lib/preinit/03_preinit_do_mpc83xx.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -do_mpc83xx() { - . /lib/mpc83xx.sh - - mpc83xx_board_detect -} - -boot_hook_add preinit_main do_mpc83xx |