aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/base-files/lib/brcm63xx.sh
diff options
context:
space:
mode:
authorAdrian Schmutzler <freifunk@adrianschmutzler.de>2019-12-30 21:58:34 +0100
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-02-08 18:40:47 +0100
commit0a3350d908ec466206f58b9e6b300c49e4fb3b13 (patch)
treee38687d0bbc3833ed84fb78228e7704ae6642f81 /target/linux/brcm63xx/base-files/lib/brcm63xx.sh
parent78b422ad79a6798d9557f0dd6113b2d6f07ae451 (diff)
downloadupstream-0a3350d908ec466206f58b9e6b300c49e4fb3b13.tar.gz
upstream-0a3350d908ec466206f58b9e6b300c49e4fb3b13.tar.bz2
upstream-0a3350d908ec466206f58b9e6b300c49e4fb3b13.zip
brcm63xx: use compatible instead of manually setting board name
This patch removes the translation of device model name into a board name in lib/brcm63xx.sh. The latter has been actually totally useless as we have the compatible which can be used instead of the board name (and actually is at other targets like ath79 or ramips). The change requires updating the base-files with the new identifiers based on compatible. With all "board names" replaced by the compatible, we do not need the old scripts to detect board name anymore and can also remove the obsolete treatment of "legacy" devices without DTS, as there are none of those left. So, this patch removes the target-specific board detection and uses the standard procedure in package/base-files/files/lib/preinit/02_sysinfo This also fixes several cases where the board name was not set or evaluated correctly: - asmax,ar1004g in 02_network - telsey,magic in 09_fix_crc/02_network - brcm,bcm96338gw in 02_network - brcm,bcm96338w in 02_network - brcm,bcm96348gw in 02_network - dynalink,rta1025w in 02_network - huawei,echolife-hg520v in 02_network - several cases in diag.sh The following orphaned identifiers are removed from board.d files: - dmv-s0 Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/brcm63xx/base-files/lib/brcm63xx.sh')
-rwxr-xr-xtarget/linux/brcm63xx/base-files/lib/brcm63xx.sh310
1 files changed, 0 insertions, 310 deletions
diff --git a/target/linux/brcm63xx/base-files/lib/brcm63xx.sh b/target/linux/brcm63xx/base-files/lib/brcm63xx.sh
deleted file mode 100755
index 1676ae0abb..0000000000
--- a/target/linux/brcm63xx/base-files/lib/brcm63xx.sh
+++ /dev/null
@@ -1,310 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2007 OpenWrt.org
-#
-#
-
-board_id=""
-sys_mtd_part=""
-ifname=""
-
-brcm63xx_dt_detect() {
- local board_name
-
- case "$1" in
- "ADB P.DG A4001N")
- board_name="a4001n"
- ;;
- "ADB P.DG A4001N1")
- board_name="a4001n1"
- ;;
- "ADB P.DG AV4202N")
- board_name="av4202n"
- ;;
- "Actiontec R1000H")
- board_name="r1000h"
- ;;
- "Alcatel RG100A")
- board_name="rg100a"
- ;;
- "ASMAX AR 1004g")
- board_name="ar100g"
- ;;
- "Belkin F5D7633")
- board_name="f5d7633"
- ;;
- "Broadcom 96348R reference board")
- board_name="bcm96348r"
- ;;
- "Broadcom BCM96318REF reference board")
- board_name="bcm96318ref"
- ;;
- "Broadcom BCM96318REF_P300 reference board")
- board_name="bcm96318ref_p300"
- ;;
- "Broadcom BCM963268BU_P300 reference board")
- board_name="bcm963268bu_p300"
- ;;
- "Broadcom BCM963269BHR reference board")
- board_name="bcm963269bhr"
- ;;
- "Broadcom bcm963281TAN reference board")
- board_name="bcm963281tan"
- ;;
- "Broadcom BCM96328avng reference board")
- board_name="bcm96328avng"
- ;;
- "Broadcom BCM96345GW2 reference board")
- board_name="bcm96345gw2"
- ;;
- "Broadcom BCM96348GW-10 reference board")
- board_name="bcm96348gw-10"
- ;;
- "Broadcom BCM96348GW-11 reference board")
- board_name="bcm96348gw-11"
- ;;
- "Broadcom BCM96348GW reference board")
- board_name="bcm96358gw"
- ;;
- "Broadcom BCM96358VW reference board")
- board_name="bcm96358vw"
- ;;
- "Broadcom BCM96358VW2 reference board")
- board_name="bcm96358vw2"
- ;;
- "Broadcom BCM96368MVNgr reference board")
- board_name="bcm96368mvngr"
- ;;
- "Broadcom BCM96368MVWG reference board")
- board_name="bcm96368mvwg"
- ;;
- "BT Home Hub 2.0 Type A")
- board_name="homehub2a"
- ;;
- "BT Voyager 2110")
- board_name="v2110"
- ;;
- "BT Voyager V2500V")
- board_name="v2500v_bb"
- ;;
- "Comtrend AR-5315u")
- board_name="ar-5315u"
- ;;
- "Comtrend AR-5381u")
- board_name="ar-5381u"
- ;;
- "Comtrend AR-5387un")
- board_name="ar-5387un"
- ;;
- "Comtrend CT-5365")
- board_name="ct-5365"
- ;;
- "Comtrend CT-536+/CT-5621T")
- board_name="ct-536p_5621t"
- ;;
- "Comtrend CT-6373")
- board_name="ct-6373"
- ;;
- "Comtrend VR-3025u")
- board_name="vr-3025u"
- ;;
- "Comtrend VR-3025un")
- board_name="vr-3025un"
- ;;
- "Comtrend VR-3026e")
- board_name="vr-3026e"
- ;;
- "Comtrend WAP-5813n")
- board_name="wap-5813n"
- ;;
- "Davolink DV-201AMR")
- board_name="dv-201amr"
- ;;
- "D-Link DSL-2640B rev B2")
- board_name="dsl-2640b-b"
- ;;
- "D-Link DSL-2640U/BRU/C")
- board_name="dsl-2640u"
- ;;
- "D-Link DSL-2650U")
- board_name="dsl-2650u"
- ;;
- "D-Link DSL-2740B/DSL-2741B rev C2/3")
- board_name="dsl-274xb-c"
- ;;
- "D-Link DSL-2740B/DSL-2741B rev F1")
- board_name="dsl-274xb-f"
- ;;
- "D-Link DSL-2750B/DSL-2751 rev D1")
- board_name="dsl-275xb-d"
- ;;
- "D-Link DVA-G3810BN/TL")
- board_name="dva-g3810bn"
- ;;
- "Dynalink RTA770BW")
- board_name="rta770bw"
- ;;
- "Dynalink RTA770W")
- board_name="rta770w"
- ;;
- "Dynalink RTA1025W")
- board_name="rta1025w"
- ;;
- "Dynalink RTA1320")
- board_name="rta1320"
- ;;
- "Huawei EchoLife HG520v")
- board_name="hg520v"
- ;;
- "Huawei EchoLife HG553")
- board_name="hg553"
- ;;
- "Huawei EchoLife HG556a (version A)")
- board_name="hg556a_a"
- ;;
- "Huawei EchoLife HG556a (version B)")
- board_name="hg556a_b"
- ;;
- "Huawei EchoLife HG556a (version C)")
- board_name="hg556a_c"
- ;;
- "Huawei HG622")
- board_name="hg622"
- ;;
- "Huawei HG655b")
- board_name="hg655b"
- ;;
- "Inteno VG50")
- board_name="vg50"
- ;;
- "Inventel Livebox 1")
- board_name="livebox1"
- ;;
- "Netgear CVG834G")
- board_name="cvg834g"
- ;;
- "Netgear DG834GT/PN")
- board_name="dg834gt"
- ;;
- "Netgear DG834G v4")
- board_name="dg834g_v4"
- ;;
- "Netgear DGND3700v1/DGND3800B")
- board_name="dgnd3700v1_dgnd3800b"
- ;;
- "Netgear EVG2000")
- board_name="evg2000"
- ;;
- "NuCom R5010UN v2")
- board_name="r5010un_v2"
- ;;
- "Observa VH4032N")
- board_name="vh4032n"
- ;;
- "Pirelli A226G")
- board_name="a226g"
- ;;
- "Pirelli A226M")
- board_name="a226m"
- ;;
- "Pirelli A226M-FWB")
- board_name="a226m-fwb"
- ;;
- "Pirelli Alice Gate AGPF-S0")
- board_name="agpf-s0"
- ;;
- "Sagem F@ST2404")
- board_name="fast2404"
- ;;
- "Sagem F@ST2504n")
- board_name="fast2504n"
- ;;
- "Sagem F@ST2604")
- board_name="fast2604"
- ;;
- "Sagem F@ST2704N")
- board_name="fast2704n"
- ;;
- "Sagem F@ST2704V2")
- board_name="fast2704v2"
- ;;
- "Sercomm AD1018 (SPI flash mod)")
- board_name="ad1018-nor"
- ;;
- "SFR Neuf Box 4"*)
- board_name="neufbox4"
- ;;
- "SFR neufbox 6 (Sercomm)")
- board_name="neufbox6"
- ;;
- "SKY SR102")
- board_name="sr102"
- ;;
- "T-Com Speedport W303 V")
- board_name="spw303v"
- ;;
- "T-Com Speedport W500 V")
- board_name="spw500v"
- ;;
- "TECOM GW6000")
- board_name="g6000"
- ;;
- "TECOM GW6200")
- board_name="g6200"
- ;;
- "Telsey CPVA502+")
- board_name="cpva502p"
- ;;
- "Telsey CPVA642-type (CPA-ZNTE60T)")
- board_name="cpva642"
- ;;
- "Telsey MAGIC")
- board_name="magic"
- ;;
- "TP-Link TD-W8900GB")
- board_name="td-w8900gb"
- ;;
- "USRobotics 9108")
- board_name="usr9108"
- ;;
- "Zyxel P870HW-51a v2")
- board_name="p870hw-51a_v2"
- ;;
- *)
- board_name="unknown"
- ;;
- esac
-
- echo "$board_name"
-}
-
-brcm63xx_legacy_detect() {
- local board_name
-
- case "$1" in
- *)
- board_name="unknown"
- ;;
- esac
-
- echo "$board_name"
-}
-
-brcm63xx_detect() {
- local board_name model
-
- board_id=$(awk 'BEGIN{FS="[ \t:/]+"} /system type/ {print $4}' /proc/cpuinfo)
-
- if [ -e /proc/device-tree ]; then
- model=$(cat /proc/device-tree/model)
- board_name=$(brcm63xx_dt_detect "$model")
- else
- model="Unknown bcm63xx board"
- board_name=$(brcm63xx_legacy_detect "$board_id")
- fi
-
- [ -e "/tmp/sysinfo" ] || mkdir -p "/tmp/sysinfo"
-
- echo "$board_name" > /tmp/sysinfo/board_name
- echo "$model" > /tmp/sysinfo/model
-}