| English | Simplified Chinese |
This tool is designed to solve the problems of unpacking, packing, and modifying img files.
This tool can be used for testing on both WSL2 and Ubuntu. Install the necessary packages with the following commands:
sudo apt update
sudo apt install lz4 python3 openjdk-21-jdk device-tree-compiler
To give the tool permissions, use:
chmod 777 -R ./*
Then you can start the tool by simply entering:
./start.sh
This tool only supports partition files in img format, regular ZIP ROM, Samsung TAR ROM, lz4 file extraction and payload.bin extraction.
It does not support old version partition files in other formats.
The first time you use this tool, you must read the following instructions carefully.
If you ask questions that are stated in the instructions without careful reading, I will ignore them.
Main Menu
Select Workspace: Select a workspace. After selection, subsequent operations will be based on the path of this workspace.
Create Workspace: Create a workspace. You can name it anything, allowing spaces and Chinese characters. The purpose of the workspace is to limit the scope of use.
Delete Workspace: Delete a workspace.
Change Language Settings: Supports switching between Simplified Chinese and English.
Exit Program
Workspace Menu
Partition File Extraction: Supports the extraction of files identified by EROFS, EXT, F2FS, VBMETA, DTBO, BOOT, PAYLOAD, SUPER, SPARSE, TAR, ZIP, and LZ4. Press ALL to extract all files, or press S to start simplified recognition. The purpose of simplified recognition is to automatically identify super and its sub-partitions under normal circumstances. For Samsung ROMs, it will also recognize optics.img and vbmeta files, depending on whether optics.img exists in the working directory. The extracted partition file list will only display recognizable partitions. If you find that the partition file you placed is not displayed, it means the tool does not support the recognition of that partition file. This implementation is because displaying unsupported files in the list is meaningless. It supports the recognition of super partitions for Xiaomi and OnePlus devices.
Partition File Packaging: Package the extracted partition files. If the original identifier is EROFS, EXT, F2FS, then you need to choose the packaging format after packaging, you can choose EROFS, EXT, F2FS packaging format, the original identifier is other supported formats, no need to choose, automatic recognition.
SUPER Partition Packaging: Put the packaged sub-partition files in the Extracted-files/super folder of the working domain directory (if you package the super sub-partition, the automatic move feature will be displayed before packaging), and then you can use this function. The dynamic partition type should be consistent with the original one. You need to understand the dynamic partition type of your device. Whether to choose the sparse format depends on whether the ROM supports it.
One-click Modification: Built-in quick modification solutions for HyperOS and OneUI.
Build Flash Package: Use the newly added "Easy Move" feature to quickly move the packaged partition to the Ready-to-flash/images directory. Supports full-volume compression, and the size can be customized. The model code needs to be strictly in accordance with the model you use to avoid conflicts. The default package name is consistent with the working domain name. This flash package is an online flash package. The script turns off AVB2.0 verification by default, so no additional modification is required.
Return to Main Menu
Exit Program
- Create and select a workspace: Create a new workspace and immediately select it.
- Move the ROM package or partition files into the workspace directory. If it's a ROM package, it will eventually be extracted into partition files.
- Use the simple recognition feature to automatically filter out the
SUPER
sub-partition, then use the extract all feature. - Use the one-click modification feature. Follow the prompts to make the necessary modifications.
- Pack all the extracted partition files. The file system used for packing depends on your kernel.
- Move the packed sub-partitions into the
Extracted-files/super
directory within the selected workspace. - Use the
SUPER
packing feature. Ensure the packed dynamic partition matches your device. The size will be automatically calculated. Follow the prompts to choose the appropriate options. - Move the packed
SUPER
partition into theReady-to-flash/images
directory within the selected workspace. Note that the simple recognition feature has already moved the other partitions here! - Use the
Fastboot(d)
packing feature. This completes the creation of a modified ROM.
- Create and select a workspace: Create a new workspace and immediately select it.
- Move the ROM package or partition files into the workspace directory. If it's a ROM package, it will eventually be extracted into partition files.
- Use the simple recognition feature to automatically filter out the
SUPER
sub-partition, then use the extract all feature. - Use the one-click modification feature. Follow the prompts to make the necessary modifications. For Samsung devices, removing vbmeta verification is necessary.
- Pack all the extracted partition files. The file system used for packing depends on your kernel.
- Move the packed sub-partitions into the
Extracted-files/super
directory within the selected workspace. - Use the
SUPER
packing feature. For Samsung devices, the packedSUPER
partition file must match the official size. - Move the packed
SUPER
partition into theReady-to-flash/images
directory within the selected workspace. Note that the simple recognition feature has already moved the other partitions here! - Use the
Odin Rom
packing feature. This completes the creation of a modified Samsung ROM, but whether it can boot needs to be tested.
- TIK - Magic number reference.
- ext4 and extfstools - Extracting ext image configuration files and files.
- android-tools - Providing a rich set of Android tools.
- Android_boot_image_editor - Extracting and repacking vbmeta, boot, and vendor_boot.
- f2fsUnpack - Extracting f2fs files.
- payload-dumper-go - Extracting payload.bin files.
- erofs-extract - Extracting erofs files.
- 7zip - Extracting super partitions and repacking ROM packages.
- Apktool - Decompiling.
- OmcTextDecoder - Samsung CSC encoding and decoding.