|
uboot中的logo为一数组,文件所在路径为- uboot/drivers/video/logo.c
复制代码 结构体类型如下:- /*
- * the gimp's c source format picture
- */
- struct picture
- {
- /* width of the picture*/
- u32 width;
- /* height of the picture*/
- u32 height;
- /* bytes per pixel */
- u32 bytes_per_pixel;
- /* the pixel data */
- u8 * data;
- };
复制代码 可通过gimp生成,gimp为linux下的PS软件,在ubuntu下,安装命令如下:- sudo apt-get install gimp
复制代码 转换方法,在gimp中先打开待转换的图片,然后另存为“C程序代码”即可,替换logo.c文件中的如下数组- /*
- * default xboot's logo
- */
- static const struct picture default_xboot_logo = {
- 250, 186, 3, (u8 *)
- ...........
- };
复制代码 |
|