๐ฅ Install Bins
Utilities for installing .img
and .bin
files to partitions.
updateโ
Installs .img
or .bin
files to partitions.
Argument | Description |
---|---|
FILE | .img/.img.xz/.img.gz/.bin file |
PART | Target partition |
EXIT | Optional: 1 to abort on failure |
-xz | Install .xz compressed file |
-gz | Install .gz compressed file |
-sparse | Install sparse IMG (64-bit devices only) |
-tmp PATH | Temporary space path |
#Update system
update /sdcard/system.img $(find_block system)
#Extract it
update $(find_block system) /sdcard/system.img
#Using _zip extension
#Update using file inside ZIP
update_zip system.img $(find_block system)
#Update using .xz compressed file
update_zip -xz vendor.img.xz $(find_block vendor)
#Update using .gz compressed file
update_zip -gz boot.img.gz $(find_block boot)
#Update using an Sparse IMG
update_zip -sparse system.img $(find_block system)