ZTE Blade V9 Vita V0920 Alternative Firmware Project at 4PDA
ZTE Blade V9 Vita Stock Firmware (flash file, 2GB).
These entries were added "unversioned":
- files/bootroot.bin:
Android Boot Image Info:- image size = 67108864 bytes (64.00 MB)
page size = 2048 bytes - Boot Name = ""
- kernel size = 12881253 bytes (12.28 MB)
ramdisk size = 4426606 bytes (4.22 MB) - load addresses:
kernel: 0x80008000
ramdisk: 0x81000000
tags: 0x80000100 - cmdline = console=ttyHSL0,115200,n8 androidboot.console=ttyHSL0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_hsl_uart,0x78B0000 ramoops.mem_address=0xb0000000 ramoops.mem_size=0x200000 ramoops.console_size=0x100000 ramoops.ftrace_size=0x40000 ramoops.pmsg_size=0x40000 buildvariant=user
- id = 0xb4c6429e 0xeb1448e7 0xa7030859 0x8ac3a5a2 0xce333408 0x00000000 0x00000000 0x00000000
abootimg
(or,other/sbi.py
) to manipulate the image.Note, the proper way to unpack the
initrd
part would be like this one:mkdir initrd && cd initrd && gzip -dc ../initrd.img | cpio -ivd
Note, the proper way to assemble the
initrd
part back would be like this one:cd initrd && find . | cpio -o --format='newc' | gzip > ../myinitrd.img
- image size = 67108864 bytes (64.00 MB)
- partitions.txt
- tools/emmc.mbn
ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), statically linked, stripped - Merely Windows™ stuff:
- tools/AdbWinApi.dll
- tools/AdbWinUsbApi.dll
- tools/adb.exe
- tools/emmcdl.exe
- backup/ (it's just a directory to be created on Windows™ only)
How To
Anyway, start with clone
and open
.
- If you live in Microsoft® Windows™, then
- Download all the files maintaining layout (download by
uv export blob.zip blob.zip
or this single blob and unpack it) - Run
PFT_english.bat
.
- Download all the files maintaining layout (download by
- If you live in another OS, then
One may want to disassemble the boot image.
The stright way would be apt install abootimg
, but other/sbi.py is always here.