在飞凌的IMX6Q 开发板上,将内核显示的小企鹅的logo替换成自己想要的logo的并且全屏显示的方法。 编译使用环境:ubuntu12.04的虚拟机进行的开发 1、制作kernel需要的ppm图片 1.1安装netpbm命令 使用sudo apt-get install netpbm 在ubuntu12.04上安装netpbm工具,要求ubuntu操作系统联网。 1.2准备bmp或者png格式的图片,我使用的是bmp 8位的图片10.1寸屏的800x1280的,图片命名为:linux.bmp; 执行以下命令生成内核需要的logo_linux_clut224.ppm图片。 bmptopnm linuxlogo1.bmp | ppmquant -fs 224 | pnmtoplainpnm > logo_linux_clut224.ppm 2、替换内核的logo 将前边做好的logo_linux_clut224.ppm放在内核的/drivers/video/logo 下 替换原有的linux_logo_clut224.ppm就可以了 3、代码更改 3.1修改源码/driver/video/fbmem.c中的fb_show_logo_line函数。 增加: image.dx = (info->var.xres/2) - (image.width/2); image.dy = (info->var.yres/2) - (image.height/2); 代码中的位置(大概在500行左右)如下: /* image.dx = 0; image.dy = y; */ image.width = logo->width; image.height = logo->height; image.dx=(info->var.xres/2)-(image.width/2); image.dy=(info->var.yres/2)-(image.height/2); 修改:fb_do_show_logo(info, &image, rotate, n); 将n改成1 3.2修改源码/driver/video/console/fbcon.c中的fbcon_prepare_logo()函数 增加: logo_height += (info->var.yres/2) - (logo_height/2); 代码中的位置: logo_height = fb_prepare_logo(info, ops->rotate); logo_height += (info->var.yres/2)-(logo_height/2); logo_lines = DIV_ROUND_UP(logo_height, vc->vc_font.height); 3.3内核的logo配置如下: 使用 make menuconfig进行配置: Device Drivers->Graphics Support->Bootup Logo->[*] Standard 224-color Linux logo 重新编译内核,烧写镜像就OK啦。 |
|小黑屋| 飞凌嵌入式 ( 冀ICP备12004394号-1 )
GMT+8, 2024-11-23 08:38
Powered by Discuz! X3.4
© 2001-2013 Comsenz Inc.