openwrtv4/target/linux/brcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom
Jonas Gorski 098377af25 brcm63xx: switch to board_name based configuration
Board IDs are not unique, so in preparation for depricating them, always
use board_name for any (default) configuration decisions.

Signed-off-by: Jonas Gorski <jogo@openwrt.org>

SVN-Revision: 44836
2015-03-16 11:52:42 +00:00

42 lines
755 B
Bash

#!/bin/sh
# Based on gabors ralink wisoc implementation.
rt2x00_eeprom_die() {
echo "rt2x00 eeprom: " "$*"
exit 1
}
rt2x00_eeprom_extract() {
local part=$1
local offset=$2
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"
dd if=$mtd of=/lib/firmware/$FIRMWARE bs=1 skip=$offset count=$count || \
rt2x00_eeprom_die "failed to extract from $mtd"
}
[ -e /lib/firmware/$FIRMWARE ] && exit 0
. /lib/brcm63xx.sh
board=$(brcm63xx_board_name)
case "$FIRMWARE" in
"rt2x00.eeprom" )
case $board in
hg556a_c)
rt2x00_eeprom_extract "cal_data" 130560 512
;;
*)
rt2x00_eeprom_die "board $board is not supported yet"
;;
esac
;;
esac