imx6 linux4.1.15修改開機動畫方法linux
SAIL- imx6q是電魚電子科技公司(www.dianyu.net)主打開發板之一,對於imx6開發板研究較多,本篇是基於研發之上總結的imx6 linux4.1.15修改開機動畫方法,具體以下:git
1.下載psplash:git clone git://git.yoctoproject.org/psplashbash
2.將圖片轉換成代碼文件:./make-image-header.sh **logo.png POKY,生成圖片文件**logo.c,**logo.h動畫
3.修改**logo.c,將#include "psplash-poky-img.h"替換成#include "**logo.h".net
4.製做autogen.sh腳本,用於生成Makefile,以下blog
#!/bin/bash圖片
aclocal開發
autoheaderit
automake --add-missing編譯
autoconf
5.生成Makefile:./autogen.sh
6.配置交叉編譯庫:./configure --host=arm-linux CC=arm-linux-gnueabihf-gcc
7.執行make:生成psplash與psplash-write。
8.將psplash與psplash-write拷貝到根文件系統/usr/bin/目錄下。
9.psplash.sh腳本在根文件系統/etc/init.d中,此項已經存在。
10.psplash.sh的連接在根文件系統/etc/rcS.d/目錄下,用於開機啓動。
若是不想顯示開機動畫,能夠編輯/etc/init.d/psplash.sh,註釋最後一行。以下圖所示: