Recovery for now onlyis there any url to get fastboot image for V13.0.7.0.SKDMIXM , i tried everywhere but couldn't find.
Last edited:
Recovery for now onlyis there any url to get fastboot image for V13.0.7.0.SKDMIXM , i tried everywhere but couldn't find.
It's not available yet.is there any url to get fastboot image for V13.0.7.0.SKDMIXM , i tried everywhere but couldn't find.
@echo off
fastboot %* getvar product 2>&1 | findstr /r /c:"^product: *vili" || echo Missmatching image and device
fastboot %* getvar product 2>&1 | findstr /r /c:"^product: *vili" || exit /B 1
fastboot %* flash abl_ab abl.img || @echo "Flash abl_ab error" && exit 1
fastboot %* flash aop_ab aop.img || @echo "Flash aop_ab error" && exit 1
fastboot %* flash bluetooth_ab bluetooth.img || @echo "Flash bluetooth_ab error" && exit 1
fastboot %* flash cpucp_ab cpucp.img || @echo "Flash cpucp_ab error" && exit 1
fastboot %* flash devcfg_ab devcfg.img || @echo "Flash devcfg_ab error" && exit 1
fastboot %* flash dsp_ab dsp.img || @echo "Flash dsp_ab error" && exit 1
fastboot %* flash featenabler_ab featenabler.img || @echo "Flash featenabler_ab error" && exit 1
fastboot %* flash hyp_ab hyp.img || @echo "Flash hyp_ab error" && exit 1
fastboot %* erase imagefv_ab || @echo "Erase imagefv_ab error" && exit /B 1
fastboot %* flash imagefv_ab imagefv.img || @echo "Flash imagefv_ab error" && exit 1
fastboot %* flash keymaster_ab keymaster.img || @echo "Flash keymaster_ab error" && exit 1
fastboot %* flash modem_ab modem.img || @echo "Flash modem_ab error" && exit 1
fastboot %* flash qupfw_ab qupfw.img || @echo "Flash qupfw_ab error" && exit 1
fastboot %* flash shrm_ab shrm.img || @echo "Flash shrm_ab error" && exit 1
fastboot %* flash tz_ab tz.img || @echo "Flash tz_ab error" && exit 1
fastboot %* flash uefisecapp_ab uefisecapp.img || @echo "Flash uefisecapp_ab error" && exit 1
fastboot %* flash xbl_ab xbl.img || @echo "Flash xbl_ab error" && exit 1
fastboot %* flash xbl_config_ab xbl_config.img || @echo "Flash xbl_config_ab error" && exit 1
fastboot %* set_active a || @echo "Set active a error" && exit 1
#include
/*
* Your warranty is now void.
*
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you.
*/
You can extract the zip file, and use a script like this one to flash the extracted files.Wonderful project and appreciate it!
Btw, 11T Pro doesn't have twrp recovery for Android 12 based ROMs or GSI ROMs as they are flashable only in fastboot. How else can we flash these firmware files?
Example: If I have MIUI 13 as the base and flashed a GSI ROM in fastboot, how can I flash these firmware files?
Yes, I got the script from global fastboot ROM and compared it with your link and see few of them are missing. Will check your script in the zip, once it completes the download, and compare it.You can extract the zip file, and use a script like this one to flash the extracted files.