What's new

Tutorial Unlock bootloader & Root Tecno Camon 20 Pro 4g (ck7n)

feardarkness80

Eternal Poster
Established
Joined
Oct 22, 2018
Posts
218
Reaction
2,454
Points
372
Step by Step guide to Unlock bootloader on Mediatek Phone:

needed drivers at tools:

You do not have permission to view the full content of this post. Log in or register now.
You do not have permission to view the full content of this post. Log in or register now.

Download and install the ADB and Fastboot binaries using the above installer download link for Windows or Linux or MAC.
Enable USB Debugging under Developer Options, to make the device accessible via ADB.
– If you don’t know how to do this then here is How to Enable Developer Options and How to Enable USB Debugging and OEM unlock.

Open the command console on your PC. To open a command window in the current directory in Windows, press shift + Right Click anywhere on Windows explorer, or some folder.
– Then on the menu opened, just press the “w” key on the keyboard or select “Open command window here” to open a command window.

Now connect your Android to the PC using a USB cable.
Enter the following command on the command window: fastboot reboot bootloader to put your Android into bootloader mode where you can unlock the bootloader
– If your Android device asks permission such as “Allow USB debugging” then just tap on OK to proceed.

Execute the following fastboot command from the bootloader mode to know the bootloader unlock status:
fastboot devices
– If you see a device Id in the output then your phone is accessible via fastboot.
– If not check if you have proper drivers installed or not.
– you may uninstall and re-install the USB drivers for your device and try again.

Then execute the following fastboot command to unlock the bootloader:
fastboot flashing unlock

Root (Magisk)

1. Copy the boot image from stock firmware to your device
2. Press the Install button in the Magisk card
3. Choose “Select and ρá†ch a File” in method, and select the boot image
4. Start the installation, and copy the patched image to your PC using ADB:
adb pull /sdcard/Download/magisk_patched_[random_strings].img
5. Flash the patched boot image to your device;
for most devices, reboot into fastboot mode and flash with command:
fastboot flash boot[x] /path/to/magisk_patched[random_strings].img,
where [_x] should be _a or _b or empty depending on your device
6. (Optional) If your device has a separate vbmeta partition, you can ρá†ch the vbmeta partition with command:
fastboot flash vbmeta --disable-verity --disable-verification vbmeta.img (note that it may wipe your data)
7. Reboot and launch Magisk app (you will see a stub Magisk app if you have wiped your data; use it to bootstrap to a complete Magisk app), and you will see a prompt asking for environment fix; click and wait for the reboot
 
Back
Top