免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5841 | 回复: 3
打印 上一主题 下一主题

在Freescale iMX515上, Linux kernel启动期间在LCD上显示图片、进度条、文字的方法 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-09-29 14:01 |只看该作者 |倒序浏览
讨论: 在Freescale iMX515上, Linux kernel启动期间在LCD上显示图片、进度条、文字信息的方法。

硬件、软件环境: Freescale iMX515, bootloader: u-boot, Linux kernel 2.6.31。
问题: 在Linux kernel启动期间在LCD上显示图片、进度条、文字信息的方法。

1. BSP中已支持显示图片, make menuconfig中的配置菜单:
Device Drivers  ---> Graphics support  --->
  • Bootup logo  --->
  •    Standard 224-color Linux logo (NEW)

    2. 我google过相关资料, 准备使用bootsplash来显示图片显示图片、进度条、文字信息。
    已经找到bootsplash 2.6.31的patch, 对kernel已打patch编译uImage成功。
    已经编译成功bootsplash-3.0.7 utilities工具, X86和ARM平台的版本。

    3. 目前的问题: U-boot引导命令配置和制作initrd, 具体怎么把这些东西配置好?请做过的网友来讨论。谢谢!

    我在CSDN的Linux/Unix版也发过贴子: http://topic.csdn.net/u/20110929 ... 09f68672.html?95107
  • 论坛徽章:
    0
    2 [报告]
    发表于 2011-09-29 15:26 |只看该作者
    汗啊, 不能把贴子沉了.{:3_189:}

    论坛徽章:
    0
    3 [报告]
    发表于 2011-09-30 09:33 |只看该作者
    我认为bootspaslh应当可以实现我想要的功能。
    参考资料:
    [1]. 2.6.31 kernel source tree: Documentation\initrd.txt
    [2]. Almesberger, Werner; "Booting Linux: The History and the Future" http://www.almesberger.net/cv/papers/ols2k-9.ps.gz
    [3]. http://www.ibm.com/developerworks/cn/linux/l-k26initrd/index.html
    [4]. http://www.bootsplash.org
    [5]. http://www.cnblogs.com/leaven/archive/2010/01/07/1641245.html

    论坛徽章:
    0
    4 [报告]
    发表于 2011-10-12 17:07 |只看该作者
    本帖最后由 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即可.
  • 您需要登录后才可以回帖 登录 | 注册

    本版积分规则 发表回复

      

    北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
    未成年举报专区
    中国互联网协会会员  联系我们:huangweiwei@itpub.net
    感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

    清除 Cookies - ChinaUnix - Archiver - WAP - TOP