summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom
blob: 2400eb998a4084a8303ee83d4d1b81d525121001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
	hg556a_c)
		caldata_extract "cal_data" 0x1fe00 0x200
		;;
	hg622 |\
	hg655b)
		caldata_extract "cal_data" 0x0 0x200
		;;
	*)
		caldata_die "board $board is not supported yet"
		;;
	esac
	;;
esac