2011-11-12 23:40:01 +00:00
|
|
|
#!/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
|
2014-03-30 09:16:52 +00:00
|
|
|
local swab=$4
|
2011-11-12 23:40:01 +00:00
|
|
|
local mtd
|
|
|
|
|
2012-12-19 16:07:50 +00:00
|
|
|
. /lib/functions.sh
|
2011-11-12 23:40:01 +00:00
|
|
|
|
|
|
|
mtd=$(find_mtd_part $part)
|
|
|
|
[ -n "$mtd" ] || \
|
|
|
|
rt2x00_eeprom_die "no mtd device found for partition $part"
|
|
|
|
|
2014-03-30 09:16:52 +00:00
|
|
|
if [ $swab -gt 0 ]; then
|
|
|
|
dd if=$mtd of=/lib/firmware/$FIRMWARE bs=2 skip=$offset count=$count conv=swab || \
|
|
|
|
rt2x00_eeprom_die "failed to extract from $mtd"
|
|
|
|
else
|
|
|
|
dd if=$mtd of=/lib/firmware/$FIRMWARE bs=1 skip=$offset count=$count || \
|
|
|
|
rt2x00_eeprom_die "failed to extract from $mtd"
|
|
|
|
fi
|
2011-11-12 23:40:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[ -e /lib/firmware/$FIRMWARE ] && exit 0
|
2012-12-15 02:01:00 +00:00
|
|
|
. /lib/functions/lantiq.sh
|
2011-11-12 23:40:16 +00:00
|
|
|
|
2011-11-12 23:40:01 +00:00
|
|
|
case "$FIRMWARE" in
|
|
|
|
"RT2860.eeprom" )
|
2014-07-02 16:33:11 +00:00
|
|
|
local board=$(lantiq_board_name)
|
2011-11-12 23:40:01 +00:00
|
|
|
case $board in
|
2014-10-06 20:08:30 +00:00
|
|
|
ARV7510PW22|ARV7519PW|ARV752DPW|ARV752DPW22|VGV7519)
|
2014-03-30 09:16:52 +00:00
|
|
|
rt2x00_eeprom_extract "board_config" 520 256 1
|
|
|
|
;;
|
|
|
|
ARV7525PW)
|
|
|
|
rt2x00_eeprom_extract "board_config" 1040 512 0
|
2011-11-12 23:40:01 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
rt2x00_eeprom_die "board $board is not supported yet"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
2015-06-05 14:11:36 +00:00
|
|
|
"RT3062.eeprom" )
|
|
|
|
local board=$(lantiq_board_name)
|
|
|
|
case $board in
|
|
|
|
VGV7510KW22)
|
|
|
|
rt2x00_eeprom_extract "board_config" 520 256 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
rt2x00_eeprom_die "board $board is not supported yet"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
2011-11-12 23:40:01 +00:00
|
|
|
esac
|