Mt3367 Android Scatter.txt 💯 Confirmed
| Feature | MT3367 (Auto) | MT6765 (Phone) | MT6580 (Legacy) |
|--------|---------------|----------------|------------------|
| GPT Support | Yes | Yes | No (MBR) |
| NVRAM region | EMMC_USER | EMMC_USER | EMMC_USER |
| Preloader size | 256KB | 1MB | 192KB |
| CAN bus parameters | In BOOT_IMG | N/A | N/A |
| LCD timing | In UBOOT or LOGO | In kernel | In kernel |
Below is a compact guide and a sample scatter.txt for MediaTek MT3367-based devices (used as an example for firmware flashing with SP Flash Tool). Use only firmware and scatter files specific to your exact device model and ROM — flashing the wrong files can brick your device.
Cause: SP Flash Tool computed a checksum on the scatter file that conflicts with the preloader’s expectation.
Fix: Uncheck “Checksum” in Options > Option or disable “DA Checksum” in advanced settings. mt3367 android scatter.txt
The MT3367 is almost exclusively flashed using SP Flash Tool v5.x (or later). Here is the step-by-step process:
Cause: Scatter file assumes a larger eMMC than what is physically present (e.g., scatter for 32GB, device has 16GB).
Fix: Manually edit the scatter.txt: change USRDATA linear start address or set size to 0x0 to auto-calculate. | Feature | MT3367 (Auto) | MT6765 (Phone)
In simple terms, a scatter.txt file is a plain-text configuration file that acts as a memory address map. When you use a flashing tool (like SP Flash Tool, Miracle Box, or UnlockTool), the program has no idea where to write the bootloader, kernel, or system image. The scatter file tells it:
For the MT3367, the scatter file is specific because the partition layout differs significantly from standard smartphone MTK chips (like MT6765 or MT6580). For the MT3367, the scatter file is specific
1. Unbricking (The "Dead" Phone Scenario)
If an MT3367 device fails to boot (gets stuck on the logo or shows a black screen), it is often because a partition has been corrupted. The SP Flash Tool, guided by the scatter.txt, can overwrite the corrupt partition with a fresh image. Without the correct scatter file, the tool wouldn't know where to place the data, potentially overwriting critical security zones and permanently killing the device.
2. Porting and Development
Developers looking to port custom Android versions or update the Linux kernel on MT3367 hardware rely on the scatter file to resize partitions. If a developer wants to install a larger Android system, they must edit the scatter.txt to allocate more memory to the system partition and less to the userdata partition.
3. Readback and Backup
Before modifying an automotive unit (which can be very expensive), technicians use the "Readback" function in SP Flash Tool. This function reads the data currently on the chip and saves it to a file. This process is impossible without the scatter.txt telling the tool where to start and stop reading.

