MTK Android modify boot animation and Logo

The requirement is to modify the boot animation and Logo of MTK Android

environment

Chip: MTK
System: Android
Server: ubuntu

method

  1. Find configuration files for boot animation and Logo
find device/mediatek device/mediateksample/ -name "ProjectConfig.mk"

View the configuration of the corresponding scheme, such as device/mediateksample/xx/ProjectConfig.mk

BOOT_LOGO = fwvgaplus

Get the directory fwvgaplus to modify

  1. Search the catalog of animations and logos
find device/mediatek device/mediateksample/ -name "fwvgaplus"

Find the directory device/mediateksample/xx/custom/logo/fwvgaplus,
which is the storage location of the Logo. There is a bootanim folder under the same path as the logo, which is the storage location of the switch animation and prompt sound.
The device/mediateksample/xx/custom/ directory structure is listed as follows

├── bootanim
│   ├── bootanimation.zip
│   ├── bootaudio.mp3
│   ├── shutanimation.zip
│   └── shutaudio.mp3
└── logo
    └── fwvgaplus
        ├── fwvgaplus_kernel.bmp
        └── fwvgaplus_uboot.bmp
  1. Replace Logo
    Replace the made Logo with fwvgaplus_kernel.bmp fwvgaplus_uboot.bmp
    in the fwvgaplus directory

The vendor/mediatek/proprietary/bootable/bootloader/lk/dev/logo/fwvgaplus/ directory is the screen of the charging process in the shutdown state

  1. Replace boot animation
    Replace bootanimation.zip boot animation, replace bootaudio.mp3 boot prompt tone.
    Author: too handsome to go out csdn original declined to reprint

Guess you like

Origin blog.csdn.net/zmlovelx/article/details/132273506