This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
products:sbc:common:configurations:change-boot-logo [2022/07/18 02:08] frank |
products:sbc:common:configurations:change-boot-logo [2024/12/18 02:25] (current) xiong [kernel logo] |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== Change Boot Logo ====== |
- | {{page>products:sbc:vim4: | + | ===== Introduction ===== |
+ | |||
+ | This document mainly introduces how to Change Boot Logo. The document is divided into two parts, the first part is for the Ubuntu platform, and the second part is for the Android platform. | ||
+ | |||
+ | ===== Linux ===== | ||
+ | |||
+ | <WRAP info > | ||
+ | Our official Ubuntu image will display 3 logos during system boot: | ||
+ | * U-Boot logo | ||
+ | * Kernel logo | ||
+ | * Ubuntu logo | ||
+ | </ | ||
+ | |||
+ | ==== U-Boot Logo ==== | ||
+ | |||
+ | The U-Boot logo is located at ''/ | ||
+ | The image format is BMP with a resolution of '' | ||
+ | |||
+ | You can use Terminal to check the default logo image format: | ||
+ | |||
+ | ```shell | ||
+ | $ file / | ||
+ | / | ||
+ | ``` | ||
+ | |||
+ | You can replace the default logo with your own **BMP** image. | ||
+ | |||
+ | ==== Linux Kernel Logo ==== | ||
+ | |||
+ | Use the netpbm tool to convert png images to ppm images. | ||
+ | |||
+ | ```shell | ||
+ | $ pngtopnm linux_logo.png > linux_logo.pnm | ||
+ | $ pnmquant 224 linux_logo.pnm > linux_logo_clut224.pnm | ||
+ | $ pnmtoplainpnm linux_logo_clut224.pnm > logo_linux_clut224.ppm | ||
+ | ``` | ||
+ | Put the converted ppm file into the '' | ||
+ | |||
+ | Re-compile the kernel, and the logo will be replaced with a new picture. | ||
+ | |||
+ | ==== Ubuntu Logo ==== | ||
+ | |||
+ | The Ubuntu logo file is located at ''/ | ||
+ | |||
+ | If you’ve [[/ | ||
+ | |||
+ | |||
+ | ===== Android ===== | ||
+ | |||
+ | Because RK merged the logo partition with the system partition into a single super partition after Android 10, there is no logo partition available to dynamically modify the boot logo. This means that a complete firmware build is required to achieve this operation. Now, we have added a new custom partition to facilitate the dynamic update of the logo. | ||
+ | |||
+ | |||
+ | ==== Logo Format ==== | ||
+ | |||
+ | <WRAP info > | ||
+ | *Where is original logo file | ||
+ | Logo file is stored in the kernel-6.1/logo.bmp directory in android code. | ||
+ | |||
+ | *BMP format, should be: | ||
+ | *16bit RGB565 BMP format | ||
+ | *Resolution <= 1080P (1920 * 1080) | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ==== Kernel Logo ==== | ||
+ | |||
+ | We use the adb command to push the prepared logo.bmp to the motherboard path / | ||
+ | |||
+ | ```shell | ||
+ | $ adb root | ||
+ | restarting adbd as root | ||
+ | |||
+ | $ adb remount | ||
+ | AVB verification is disabled, disabling verity state may have no effect | ||
+ | Remounted /system as RW | ||
+ | Remounted /vendor as RW | ||
+ | Remounted /odm as RW | ||
+ | Remounted / | ||
+ | Remounted /system_ext as RW | ||
+ | Remounted / | ||
+ | Remounted /odm_dlkm as RW | ||
+ | Remounted /product as RW | ||
+ | Remount succeeded | ||
+ | |||
+ | $ adb push logo.bmp / | ||
+ | logo.bmp: 1 file pushed, 0 skipped. 655.0 MB/s (4147272 bytes in 0.006s) | ||
+ | ``` | ||
+ | |||
+ | |||
+ | ==== Updage the logo by upgrate whole firmware ==== | ||
+ | |||
+ | 1) replace kernel-6.1/ | ||
+ | |||
+ | 2) build upgrate package | ||
+ | |||
+ | ```shell | ||
+ | $ cd PATH_YOUR_PROJECT | ||
+ | $ source build/ | ||
+ | $ ./build.sh -UCKAu | ||
+ | ``` | ||
+ | |||
+ | 3) Burn upgrate package update.img to your device you can refer How To Upgrate ,restart then you can see the new boot logo | ||