From e7bfda2c243e66a75ff966ba04c28b1590b5d24c Mon Sep 17 00:00:00 2001 From: Adrian Schmutzler Date: Sat, 8 Feb 2020 20:33:30 +0100 Subject: brcm63xx: rename target to bcm63xx This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Signed-off-by: Adrian Schmutzler --- .../etc/hotplug.d/firmware/10-rt2x00-eeprom | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 target/linux/bcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom (limited to 'target/linux/bcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom') diff --git a/target/linux/bcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom b/target/linux/bcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom new file mode 100644 index 0000000000..0e92481f08 --- /dev/null +++ b/target/linux/bcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom @@ -0,0 +1,25 @@ +#!/bin/sh +# Based on gabors ralink wisoc implementation. + +[ -e /lib/firmware/$FIRMWARE ] && exit 0 + +. /lib/functions/caldata.sh + +board=$(board_name) + +case "$FIRMWARE" in +"rt2x00.eeprom" ) + case $board in + huawei,echolife-hg556a-c) + caldata_extract "cal_data" 0x1fe00 0x200 + ;; + huawei,echolife-hg622|\ + huawei,echolife-hg655b) + caldata_extract "cal_data" 0x0 0x200 + ;; + *) + caldata_die "board $board is not supported yet" + ;; + esac + ;; +esac -- cgit v1.2.3