imax6q專案:使用psplash製作開機動畫

kunkliu發表於2020-04-05

轉載地址:https://blog.csdn.net/liming8754955/article/details/78506247

1.下載psplash:git clone git://git.yoctoproject.org/psplash
2.將圖片轉換成程式碼檔案:./make-image-header.sh xxxlogo.png POKY,生成圖片檔案xxxlogo.c,xxxlogo.h
3.修改xxxlogo.c,將#include "psplash-poky-img.h"替換成#include "xxxlogo.h"
4.製作autogen.sh指令碼,用於生成Makefile,如下
#!/bin/bash
aclocal
autoheader
automake --add-missing
autoconf
5.生成Makefile:./autogen.sh
6.配置交叉編譯庫:./configure --host=arm-linux CC=arm-linux-gnueabihf-g
7.執行make:生成psplash與psplash-write。
8.將psplash與psplash-write拷貝到根檔案系統/usr/bin/目錄下。
9.psplash.sh指令碼在根檔案系統/etc/init.d中,此項已經存在。
10.psplash.sh的連結在根檔案系統/etc/rcS.d/目錄下,用於開機啟動

相關文章