2012-11-24 14:19:22 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Based on gabors ralink wisoc implementation.
|
|
|
|
|
|
|
|
[ -e /lib/firmware/$FIRMWARE ] && exit 0
|
|
|
|
|
2019-09-22 09:57:13 +00:00
|
|
|
. /lib/functions/caldata.sh
|
2012-11-24 14:19:22 +00:00
|
|
|
|
2017-05-12 20:36:07 +00:00
|
|
|
board=$(board_name)
|
2012-11-24 14:19:22 +00:00
|
|
|
|
|
|
|
case "$FIRMWARE" in
|
2013-01-04 14:47:57 +00:00
|
|
|
"rt2x00.eeprom" )
|
2012-11-24 14:19:22 +00:00
|
|
|
case $board in
|
2015-03-16 11:52:42 +00:00
|
|
|
hg556a_c)
|
2019-09-22 09:57:13 +00:00
|
|
|
caldata_extract "cal_data" 0x1fe00 0x200
|
2013-01-04 14:47:57 +00:00
|
|
|
;;
|
2016-01-18 10:47:23 +00:00
|
|
|
hg622 |\
|
2015-05-21 19:31:54 +00:00
|
|
|
hg655b)
|
2019-09-22 09:57:13 +00:00
|
|
|
caldata_extract "cal_data" 0x0 0x200
|
2015-05-21 19:31:54 +00:00
|
|
|
;;
|
2012-11-24 14:19:22 +00:00
|
|
|
*)
|
2019-09-22 09:57:13 +00:00
|
|
|
caldata_die "board $board is not supported yet"
|
2012-11-24 14:19:22 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|