From f12a32630ff52b5e13397f64e9fb31708e97fb60 Mon Sep 17 00:00:00 2001 From: Mathias Kresin Date: Fri, 12 May 2017 22:36:07 +0200 Subject: treewide: use the generic board_name function Use the generic function instead ot the target specific ones. Signed-off-by: Mathias Kresin --- target/linux/brcm63xx/base-files/etc/board.d/01_leds | 3 +-- target/linux/brcm63xx/base-files/etc/board.d/02_network | 3 +-- target/linux/brcm63xx/base-files/etc/diag.sh | 4 ++-- .../brcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom | 6 ++---- target/linux/brcm63xx/base-files/etc/uci-defaults/09_fix_crc | 4 ++-- 5 files changed, 8 insertions(+), 12 deletions(-) (limited to 'target/linux/brcm63xx/base-files/etc') diff --git a/target/linux/brcm63xx/base-files/etc/board.d/01_leds b/target/linux/brcm63xx/base-files/etc/board.d/01_leds index 7651650d3f..a9096739b6 100755 --- a/target/linux/brcm63xx/base-files/etc/board.d/01_leds +++ b/target/linux/brcm63xx/base-files/etc/board.d/01_leds @@ -4,11 +4,10 @@ # . /lib/functions/uci-defaults.sh -. /lib/brcm63xx.sh board_config_update -case "$(brcm63xx_board_name)" in +case "$(board_name)" in a4001n1) ucidef_set_led_netdev "lan" "LAN" "A4001N1:green:eth" "eth0" ucidef_set_led_usbdev "usb" "USB" "A4001N1:green:3g" "1-1" diff --git a/target/linux/brcm63xx/base-files/etc/board.d/02_network b/target/linux/brcm63xx/base-files/etc/board.d/02_network index 6a20fcedde..9d9f95d2d8 100755 --- a/target/linux/brcm63xx/base-files/etc/board.d/02_network +++ b/target/linux/brcm63xx/base-files/etc/board.d/02_network @@ -4,11 +4,10 @@ # . /lib/functions/uci-defaults.sh -. /lib/brcm63xx.sh board_config_update -case "$(brcm63xx_board_name)" in +case "$(board_name)" in cvg834g |\ evg2000 |\ diff --git a/target/linux/brcm63xx/base-files/etc/diag.sh b/target/linux/brcm63xx/base-files/etc/diag.sh index b90b5907aa..24939a9cc1 100644 --- a/target/linux/brcm63xx/base-files/etc/diag.sh +++ b/target/linux/brcm63xx/base-files/etc/diag.sh @@ -1,11 +1,11 @@ #!/bin/sh # Copyright (C) 2007-2013 OpenWrt.org +. /lib/functions.sh . /lib/functions/leds.sh -. /lib/brcm63xx.sh set_state() { - case "$(brcm63xx_board_name)" in + case "$(board_name)" in a4001n1) status_led="A4001N1:green:power" ;; diff --git a/target/linux/brcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom b/target/linux/brcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom index 21c510f17b..fe31ed323d 100644 --- a/target/linux/brcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom +++ b/target/linux/brcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom @@ -12,8 +12,6 @@ rt2x00_eeprom_extract() { local count=$3 local mtd - . /lib/functions.sh - mtd=$(find_mtd_part $part) [ -n "$mtd" ] || \ rt2x00_eeprom_die "no mtd device found for partition $part" @@ -24,9 +22,9 @@ rt2x00_eeprom_extract() { [ -e /lib/firmware/$FIRMWARE ] && exit 0 -. /lib/brcm63xx.sh +. /lib/functions.sh -board=$(brcm63xx_board_name) +board=$(board_name) case "$FIRMWARE" in "rt2x00.eeprom" ) diff --git a/target/linux/brcm63xx/base-files/etc/uci-defaults/09_fix_crc b/target/linux/brcm63xx/base-files/etc/uci-defaults/09_fix_crc index 57bf6e2a46..94c422392e 100644 --- a/target/linux/brcm63xx/base-files/etc/uci-defaults/09_fix_crc +++ b/target/linux/brcm63xx/base-files/etc/uci-defaults/09_fix_crc @@ -4,13 +4,13 @@ # # -. /lib/brcm63xx.sh +. /lib/functions.sh do_fixcrc() { mtd fixtrx linux } -case "$(brcm63xx_board_name)" in +case "$(board_name)" in a4001n |\ a4001n1 |\ ar-5381u |\ -- cgit v1.2.3