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>
+++ /dev/null
-#!/bin/sh
-
-do_ramips() {
- . /lib/ramips.sh
-
- ramips_board_detect
-}
-
-boot_hook_add preinit_main do_ramips
# Copyright (C) 2013 OpenWrt.org
#
-. /lib/ramips.sh
-
ramips_set_preinit_iface() {
RT3X5X=`cat /proc/cpuinfo | egrep "(RT3.5|RT5350|MT7628|MT7688|MT7620|MT7621)"`
+++ /dev/null
-#!/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
-}