Step Install Custom ROM Recovery

Step Install Custom ROM Recovery

t.me/ammarbahtiarasli

Persiapan:

  • Sudah unlock bootloader perangkat.
  • Download file berikut:
  • boot.img
  • dtbo.img
  • vendor_boot.img
  • Firmware.zip (ROM yang mau diinstall)

Langkah-langkah:

1. Masuk ke Mode Fastboot

  • Matikan HP.
  • Tekan dan tahan tombol Volume Bawah + Power hingga masuk ke Fastboot Mode.

2. Flash Recovery Files

Buka Command Prompt di folder tempat file .img kamu berada, lalu jalankan perintah berikut satu per satu:

bash

fastboot -w                               # Wipe data (factory reset)
fastboot set_active a                     # Set partisi aktif ke slot A
fastboot flash boot boot.img              # Flash boot image
fastboot flash dtbo dtbo.img              # Flash dtbo image
fastboot flash vendor_boot vendor_boot.img  # Flash vendor_boot image
fastboot reboot recovery                  # Reboot langsung ke Recovery
Pastikan nama file sesuai. Kalau beda, ganti di perintahnya.

3. Install Firmware (ROM)

Setelah masuk ke Recovery Mode:

  • Pilih Apply Update from ADB (di Recovery).
  • Lalu di PC jalankan:
bash
adb sideload File-Firmware.zip

(Ganti File-Firmware.zip dengan nama file firmware yang kamu punya.)

Tunggu proses selesai, HP akan menginstal ROM baru.

Proses sideload stuck di 47%: Ini normal di ADB Sideload. Tunggu sampai HP selesai instalasi.

Setelah selesai, pilih Reboot System Now dari Recovery.


==============================================


Preparation:

  • The device bootloader must already be unlocked.
  • Download the following files:
  • boot.img
  • dtbo.img
  • vendor_boot.img
  • Firmware.zip (the ROM you want to install)

Steps:

1. Enter Fastboot Mode

  • Power off your phone.
  • Press and hold Volume Down + Power buttons until you enter Fastboot Mode.

2. Flash Recovery Files

Open a Command Prompt window in the folder where your .img files are located, then execute the following commands one by one:

bash

fastboot -w                    # Wipe data (factory reset)
fastboot set_active a          # Set active partition to slot A
fastboot flash boot boot.img   # Flash boot image
fastboot flash dtbo dtbo.img   # Flash dtbo image
fastboot flash vendor_boot vendor_boot.img  # Flash vendor_boot image
fastboot reboot recovery       # Reboot directly into Recovery

Note:

  • Make sure the filenames match exactly. If different, adjust the command accordingly.

3. Install Firmware (ROM)

Once in Recovery Mode:

  • Select Apply Update from ADB (on the Recovery menu).
  • Then on your PC, run:
bash

adb sideload Filename-Firmware.zip

(Replace Filename-Firmware.zip with the actual firmware filename you have.)

Wait for the process to finish; the phone will install the new ROM.

Sideload stuck at 47%: - This is normal. Wait until the phone finishes the installation.

Select Reboot System Now in Recovery. - Your phone will boot into the new ROM!





Report Page