[GUIDE] Restore to stock firmware using Fastboot method

Flash-A-Holic

Senior Member
Jul 8, 2015
159
84
0
Note:
The guide is written by Liangchen Chen who is the man behind F(x)tec. I am just sharing the guide. You can find the original post from here:

Flash at your own risk. I am not responsible for any damage or data loss to the device during this process!

Downloads:
The Fastboot restoration file can be downloaded in here:
You can use ADB drivers from Google:

Preparation:
  • You need to have a PC and installed universal ADB driver
  • Completely turn off the phone.
  • Download the firmware and copy all the files into the adb folder which installed with the driver.

Procedures:
  1. Hold Volume down + Power key together, when the logo shows up, release both fingers. The phone should boot into bootloader.
  2. Connect the phone to the PC, and because the driver is installed, system should have identified the connection.
  3. Right click Windows Logo --- Run --- Type
    Code:
    cmd
  4. In command line, move to the adb folder using cd. For example, if the adb folder is in C:\adb, type
    Code:
    cd C:\adb
  5. Then we need to see if the device successfully connects, type
    Code:
    fastboot devices
  6. The outcome should have a device list there.
  7. If the device is successfully connected, run the following commands:
    Code:
    fastboot flash devcfg_a devcfg.mbn
    fastboot flash devcfg_b devcfg.mbn
    fastboot flash dsp_a adspso.bin
    fastboot flash dsp_b adspso.bin
    fastboot flash bluetooth_a BTFM.bin
    fastboot flash bluetooth_b BTFM.bin
    fastboot flash modem_a NON-HLOS.bin
    fastboot flash modem_b NON-HLOS.bin
    fastboot flash pmic_a pmic.elf
    fastboot flash pmic_b pmic.elf
    fastboot flash rpm_a rpm.mbn
    fastboot flash rpm_b rpm.mbn
    fastboot flash splash splash.img
    fastboot flash tz_a tz.mbn
    fastboot flash tz_b tz.mbn
    fastboot flash xbl_a xbl.elf
    fastboot flash xbl_b xbl.elf
    fastboot flash abl_a abl.elf
    fastboot flash abl_b abl.elf
    fastboot flash boot_a boot.img
    fastboot flash boot_b boot.img
    fastboot flash dtbo_a dtbo.img
    fastboot flash dtbo_b dtbo.img
    fastboot flash system_a system.img
    fastboot flash system_b system.img
    fastboot flash vendor_a vendor.img
    fastboot flash vendor_b vendor.img
    fastboot flash mdtp_a mdtp.img
    fastboot flash mdtp_b mdtp.img
    fastboot flash vbmeta_a vbmeta.img
    fastboot flash vbmeta_b vbmeta.img
    
    fastboot erase userdata
  8. After it’s all finished, run
    Code:
    fastboot reboot
  9. And the phone should now restored to factory state.
 
  • Like
Reactions: Loader009