Continuing on from earlier and still using these tools…
I know have a better idea of what’s happening.
- Boot the device in APX mode, it will now wait for a bootloader to be downloaded and executed…
wheelie
has the SBK’s compiled in, so it can:- applies the device’s BCT (Board Configuration Table)
- configures the magic ODM number
- encrypts the specified bootloader, downloads it to the device, and runs it.
- that
bootloader.bin
runs and provides a “Nv3p” protocol server thatnvflash
can talk to. nvflash
can now do all sorts of stuff to the device!
So, TWRP is still a far superior recovery to ASUS’ crappy recovery so let’s install that.
- Boot to APX (
Volume Up
+Power
) - Run
wheelie
as usual:./wheelie -2 --bl bootloader.bin --bct transformer.bct --odm 0x300d8011
- unpack the partition from the blob
blobunpack twrp-2.3.2.3-tf101.blob
- download to the device’s SOS partition (partition
5
in the default partition table) usingnvflash
./nvflash -r --download 5 twrp-2.3.2.3-tf101.blob.SOS --sync ./nvflash -r --go
- Reboot into TWRP (
Volume Down
+Power
)
Nice, that means we can boot into TWRP and sideload or do anything we like.