- 论坛徽章:
- 0
|
本帖最后由 wen_kernel 于 2011-10-12 18:00 编辑
分享下我目前的思路, 参考了bootsplash的实现. 毫无疑问bootsplash会有比较好的效果.
1. make menuconfig配置内核
Device Drivers ---> Graphics support ---> Bootup logo ---> Standard 224-color Linux logo
2. 在drivers/video/console/fbcon.c文件中的
static void fbcon_init(struct vc_data *vc, int init)
{
/* ... */
/* add below codes in the tail */
unsigned char str[]="L i n u x s y s t e m b o o t i n g ! F i r m w a r e v e r s i o n 2 . 6 . 3 1 . 2 0 1 1 1 0 1 2 ";
unsigned short *s;
int count, yy, xx,fg, bg, n;
s = (unsigned short *)str;
count = sizeof(str)/2;
xx = 20;
yy = 0;
fg = 0xf;
bg = 0x0;
ops->putcs(vc, info, s, count, real_y(p, yy), real_y(p, xx), fg, bg);
}
3. 自定义图片, PNG图片用工具转换成C数组. 显示进度条或者百分比, 原理同显示字符信息, 用kernel thread即可实现. 当启动了PID=1的init后, 退出此kernel thread即可. |
|