Recovery file for force 130

Hi, i have a Force 130 bricked, all the lights are on and not booting, tried TFTP Recovery but need a file named openwrt-YUNLINK-yunlink.bin. tried to upload firmware.bin but not successful, so i tried rename firmware.bin into openwrt-YUNLINK-yunlink.bin, transfer was successful but stil not booting as its not the right file, please can anyone provide openwrt-YUNLINK-yunlink.bin file for Force 130, thanks

Hello @er1,

please submit a support request via support.cambiumnetworks.com. and we will help you with this issue!

By the way, why do you think you need this .bin file?

#!/bin/sh

# This script will be executed by SW Update process before writing firmware to flash

SKU_FILE=/proc/sku
HW_VERSION="$(cat $SKU_FILE 2>/dev/null)"
COUNTER=0

while true
do
	is_boot_running=$(ps|grep rcS|grep -v grep|wc -l)
	if [ $is_boot_running -eq 0 ]
	then
		break
	fi
	if [ $COUNTER -gt 450 ]
	then
		# it seems board has died, let reboot it now
		reboot -f
	else
		COUNTER=$(($COUNTER+1))
	fi
	sleep 2
done

case "$HW_VERSION" in
22|23)
	fw_setenv check_bootcount 'test $bootcount = 2 && setenv bootcount 3 && saveenv; test $bootcount = 1 && setenv bootcount 2 && saveenv; test $bootcount = 0 && setenv bootcount 1 && saveenv'
	fw_setenv tftp_recover 'setenv serverip 192.168.1.10; setenv ipaddr 192.168.1.1; if ping $serverip; then tftp 0x80060000 ***openwrt-YUNLINK-yunlink.bin*** && erase 0x9f050000 +$filesize && cp.b 0x80060000 0x9f050000 $filesize; bootm 0x9fe80000; else reset; fi'
	fw_setenv bootcmd 'if test $bootcount = 3; then run tftp_recover; else run check_bootcount; bootm 0x9fe80000; fi'
	fw_setenv bootcount 0
	;;
esac