8.10.11 EU to 10.0.1.0 fastboot ARB


Kyuko

Members
Sep 7, 2018
4
15
Can I flash latest global ROM over 8.10.11 using fastboot and not trigger ARP? I'm worried I'll brick my phone. Anyone have any idea?
 
Download Global 10.0.1.0 .tgz factory image and check "flash_all.bat" file inside it.

Code:
set CURRENT_ANTI_VER=3
for /f "tokens=2 delims=: " %%i in ('fastboot %* getvar anti 2^>^&1 ^| findstr /r /c:"anti:"')  do (set version=%%i)
if [%version%] EQU [] set version=0
if %version% GTR %CURRENT_ANTI_VER% (
    echo current device antirollback version is greater than this package
    exit /B 1
)

Then check what "fastboot getvar anti" command return in fastboot mode. If it returns same or lower number than end of "set CURRENT_ANTI_VER=" line inside "flash_all.bat" you are good to go.
 
Download Global 10.0.1.0 .tgz factory image and check "flash_all.bat" file inside it.

Code:
set CURRENT_ANTI_VER=3
for /f "tokens=2 delims=: " %%i in ('fastboot %* getvar anti 2^>^&1 ^| findstr /r /c:"anti:"')  do (set version=%%i)
if [%version%] EQU [] set version=0
if %version% GTR %CURRENT_ANTI_VER% (
    echo current device antirollback version is greater than this package
    exit /B 1
)

Then check what "fastboot getvar anti" command return in fastboot mode. If it returns same or lower number than end of "set CURRENT_ANTI_VER=" line inside "flash_all.bat" you are good to go.

Thanks for answer. I'll check this later. Also can I upload this on XDA with mentioning you to make people lifes easier?
 
The "fastboot getvar anti" command doesn't work on Mi Max 3. Is there an other way to check current arb version?
 
Nevermind :p I already know my ARB level now by extracting the fastboot ROM that I am on.

10.0.1.0 Global Stable has "Anti:4"
 
Last edited: