Jump to content

Mtkclient: Difference between revisions

From postmarketOS Wiki
Justsoup (talk | contribs)
Update to include initial commit adding support as a flashing method
Fresh.job (talk | contribs)
ask user to also check efuses
 
(8 intermediate revisions by 4 users not shown)
Line 9: Line 9:
== Installation ==
== Installation ==


MTKClient is already packaged under Alpine in the testing repository.[https://pkgs.alpinelinux.org/packages?name=mtkclient&branch=edge&repo=&arch=&maintainer=] Other distributions may have it packaged. If your distribution does not have MTKClient packaged, it is possible to git clone the repository and run the program from the cloned folder using Python. For older SOCs [mt6260 or lower], a recompiled kernel supporting the kamakiri attack exploit is required. (Instructions for compiling with the exploit supported are on MTKClient's git page.
MTKClient is already packaged under Alpine in the testing repository. [https://pkgs.alpinelinux.org/packages?name=mtkclient&branch=edge&repo=&arch=&maintainer=] Other distributions may have it packaged. If your distribution does not have MTKClient packaged, it is possible to git clone the repository and run the program from the cloned folder using Python. For older SOCs [mt6260 or lower], a recompiled kernel supporting the kamakiri attack exploit is required. (Instructions for compiling with the exploit supported are on MTKClient's git page.


== Connection ==
== Connection ==
Line 16: Line 16:


If you are attempting to port a device using MTKClient, your only options are to either search the internet for instances of other people using MTKClient with your device (XDA Developers Forums are a good source), or to go through trial and error. Sometimes it is possible to short pins on the device to ground to drop it into BROM mode, but that can be damage the device if done wrong, so make sure to check the MTKClient git README and issues for information before attempting to do so.
If you are attempting to port a device using MTKClient, your only options are to either search the internet for instances of other people using MTKClient with your device (XDA Developers Forums are a good source), or to go through trial and error. Sometimes it is possible to short pins on the device to ground to drop it into BROM mode, but that can be damage the device if done wrong, so make sure to check the MTKClient git README and issues for information before attempting to do so.
To make sure that the connection works and you have all the required authentication files, try to get the target config and the efuse values:
<syntaxhighlight lang="shell-session">
$ python mtk gettargetconfig
$ python mtk da efuse
</syntaxhighlight>
{{Note|Currently, you need to reconnect the device in BROM mode after each command.}}
== Backups ==
To back up the entire flash storage using MTKClient, connect the device to MTKClient and proceed with the following:
<syntaxhighlight lang="shell-session">
$ python mtk rf /path/to/the.img
</syntaxhighlight>
And to restore the backup:
<syntaxhighlight lang="shell-session">
$ python mtk wf /path/to/the.img
</syntaxhighlight>


== Bootloader Unlocking ==
== Bootloader Unlocking ==
Line 21: Line 44:
To unlock the bootloader of a device using MTKClient, connect the device to MTKClient and proceed with the following:
To unlock the bootloader of a device using MTKClient, connect the device to MTKClient and proceed with the following:


<source lang="shell-session">
<syntaxhighlight lang="shell-session">
   Factory Reset Device
   Factory Reset Device
$ python mtk e metadata,userdata,md_udc
$ python mtk e metadata,userdata,md_udc
Line 28: Line 51:
   Reboot Device
   Reboot Device
$ python mtk reset
$ python mtk reset
</source>
</syntaxhighlight>
 
== Flashing With pmbootstrap ==
 
To flash with pmbootstrap, the flash method <code>mtkclient</code> needs to be selected either during <code>pmbootstrap init</code> or added to the deviceinfo file of a port. From there, flashing using <code>pmbootstrap flasher</code> is available.


== Flashing ==
== Flashing Directly ==


To flash partitions using MTKClient, connect the device to MTKClient and proceed with the following:
To flash partitions using MTKClient, connect the device to MTKClient and proceed with the following:


<source lang="shell-session">
<syntaxhighlight lang="shell-session">
$ python mtk w <partition name> <path to image file>
$ python mtk w <partition name> <path to image file>
</source>
</syntaxhighlight>


To flash multiple partitions using MTKClient:
To flash multiple partitions using MTKClient:


<source lang="shell-session">
<syntaxhighlight lang="shell-session">
   Make sure to put the image paths in the same order you put the partitions to flash, otherwise the images will flash to the wrong partitions.
   Make sure to put the image paths in the same order you put the partitions to flash, otherwise the images will flash to the wrong partitions.
$ python mtk w <partition name, partition name> <path to image file, path to image file>
$ python mtk w <partition name, partition name> <path to image file, path to image file>
</source>
</syntaxhighlight>


== See also ==
== See also ==
[https://github.com/bkerler/mtkclient#readme MTKClient]
* [https://github.com/bkerler/mtkclient#readme MTKClient]
[https://gitlab.com/postmarketOS/pmbootstrap/-/commit/caf4d779e30ad7b051ad1076021b15cbc2711d8d#readme Initial Commit for Flashing Method]
* [https://gitlab.postmarketos.org/postmarketOS/pmbootstrap/-/commit/caf4d779e30ad7b051ad1076021b15cbc2711d8d#readme Initial Commit for Flashing Method]
* [https://www.youtube.com/watch?v=NulWJo2RSKE Introduction to MTK Reverse Engineering] by Bjoern Kerler, the creator of the tool

Latest revision as of 23:29, 29 January 2025

Logo of MTKClient

MTKClient is a flashing tool for devices based on MediaTek SOCs that uses exploits in the SOC itself to edit partitions on the device.

Benefits

The usage of MTKClient has a variety of benefits over other methods of device manipulation. For one, it is possible to unlock the bootloader of devices that either do not have an official unlocking method or do not support commands such as fastboot or heimdall. It is also possible to flash partitions that otherwise would be inaccessible through normal flashing methods. All of this is done through two modes that MediaTek SOCs have called Preloader and Boot Rom Mode (BROM Mode).

Installation

MTKClient is already packaged under Alpine in the testing repository. [1] Other distributions may have it packaged. If your distribution does not have MTKClient packaged, it is possible to git clone the repository and run the program from the cloned folder using Python. For older SOCs [mt6260 or lower], a recompiled kernel supporting the kamakiri attack exploit is required. (Instructions for compiling with the exploit supported are on MTKClient's git page.

Connection

To put the device in BROM mode, device specific buttons need to be pressed. Refer to the device page for information on which buttons to press.

If you are attempting to port a device using MTKClient, your only options are to either search the internet for instances of other people using MTKClient with your device (XDA Developers Forums are a good source), or to go through trial and error. Sometimes it is possible to short pins on the device to ground to drop it into BROM mode, but that can be damage the device if done wrong, so make sure to check the MTKClient git README and issues for information before attempting to do so.

To make sure that the connection works and you have all the required authentication files, try to get the target config and the efuse values:

$ python mtk gettargetconfig
$ python mtk da efuse
Note Currently, you need to reconnect the device in BROM mode after each command.

Backups

To back up the entire flash storage using MTKClient, connect the device to MTKClient and proceed with the following:

$ python mtk rf /path/to/the.img

And to restore the backup:

$ python mtk wf /path/to/the.img

Bootloader Unlocking

To unlock the bootloader of a device using MTKClient, connect the device to MTKClient and proceed with the following:

  Factory Reset Device
$ python mtk e metadata,userdata,md_udc
  Unlock Bootloader
$ python mtk da seccfg unlock
  Reboot Device
$ python mtk reset

Flashing With pmbootstrap

To flash with pmbootstrap, the flash method mtkclient needs to be selected either during pmbootstrap init or added to the deviceinfo file of a port. From there, flashing using pmbootstrap flasher is available.

Flashing Directly

To flash partitions using MTKClient, connect the device to MTKClient and proceed with the following:

$ python mtk w <partition name> <path to image file>

To flash multiple partitions using MTKClient:

  Make sure to put the image paths in the same order you put the partitions to flash, otherwise the images will flash to the wrong partitions.
$ python mtk w <partition name, partition name> <path to image file, path to image file>

See also