How to install new ROMs with dynamic partition on the channel
Lightzin021Hello everyone today I would like to explain how you can install the new ROMs with dynamic partitions on the channel
First, we will need a few files: super_empty.img, boot.img, dtbo.img, and of course, the ROM file. I will provide these files in the ROM posts.
Once we have these files, we will put the phone into fastboot mode. You can usually do this by turning off the device and holding down the Power and Volume Down buttons simultaneously until fastboot mode appears on the screen.
Step-by-step Instructions:
- Wipe the super partition using the following command:
fastboot wipe-super super_empty.img
- This command wipes the "super" partition using the
super_empty.imgfile, which helps ensure the new system can be flashed without issues. - Flash the boot image with the following command:
fastboot flash boot boot.img
- This installs the new kernel (
boot.img) onto the device. - Flash the dtbo image using this command:
fastboot flash dtbo dtbo.img
- The
dtbo.imgfile contains device tree overlays, which are necessary for the proper functioning of certain hardware components. - After flashing the necessary images, use the volume buttons to navigate to the Recovery Mode option and press the Power button to confirm.
- Once in recovery mode, perform a factory reset to clear the metadata partition. This is an important step to ensure that no old data interferes with the new ROM installation. Look for the option labeled "Wipe data/factory reset" in the recovery menu and confirm the action.
- Finally, proceed with the ROM installation as you would normally.