blob: 76867e8cea95c682bcbe2292a8bd396d6611d092 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# meta-unit-graphics
## U-boot splash
The u-boot splash has bee configured to show the [yocto project logo](https://commons.wikimedia.org/wiki/File:Yocto_Project_logo.svg).
To convert the logo to a u-boot compatible bitmap, the following command was used:
```bash
convert yocto_project_logo.png -resize 700x400 -background white -gravity center -extent 800x480 -depth 8 -type TrueColor -compress none BMP3:yocto_project_logo_800x480_24bpp.bmp
```
The dimensions for `resize` and `extent` are device specific.
|