Initial commit

This commit is contained in:
domenico
2025-06-24 13:14:22 +02:00
commit 4002f145fc
9002 changed files with 1731834 additions and 0 deletions

View File

@@ -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