ramips: Remove base-files/lib/ramips.sh
authorAdrian Schmutzler <freifunk@adrianschmutzler.de>
Wed, 3 Jul 2019 21:22:39 +0000 (23:22 +0200)
committerDaniel Golle <daniel@makrotopia.org>
Wed, 10 Jul 2019 15:36:29 +0000 (17:36 +0200)
Having converted the target to use device compatible, ramips.sh
is obsolete now.

The only remaining entry for the mt7688 evaluation board seems to
be orphaned.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
target/linux/ramips/base-files/lib/preinit/01_preinit_do_ramips.sh [deleted file]
target/linux/ramips/base-files/lib/preinit/07_set_preinit_iface_ramips
target/linux/ramips/base-files/lib/ramips.sh [deleted file]

diff --git a/target/linux/ramips/base-files/lib/preinit/01_preinit_do_ramips.sh b/target/linux/ramips/base-files/lib/preinit/01_preinit_do_ramips.sh
deleted file mode 100644 (file)
index 31ef5f8..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-do_ramips() {
-       . /lib/ramips.sh
-
-       ramips_board_detect
-}
-
-boot_hook_add preinit_main do_ramips
index 5048dacb4f49aa57e67d527daa88ecee1d686e4e..a395956d04f3164b8ee6df27e390d4150c7551b9 100644 (file)
@@ -3,8 +3,6 @@
 # Copyright (C) 2013 OpenWrt.org
 #
 
-. /lib/ramips.sh
-
 ramips_set_preinit_iface() {
        RT3X5X=`cat /proc/cpuinfo | egrep "(RT3.5|RT5350|MT7628|MT7688|MT7620|MT7621)"`
 
diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh
deleted file mode 100755 (executable)
index 53fc7c3..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2010-2013 OpenWrt.org
-#
-
-ramips_board_detect() {
-       local machine
-       local name
-
-       machine=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /machine/ {print $2}' /proc/cpuinfo)
-
-       case "$machine" in
-       *"MT7688 evaluation"*)
-               name="mt7688"
-               ;;
-       esac
-
-       # use generic board detect if no name is set
-       [ -z "$name" ] && return
-
-       [ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
-
-       echo "$name" > /tmp/sysinfo/board_name
-       echo "$machine" > /tmp/sysinfo/model
-}