主机平台: UBUNTU14.04
硬件平台:明远智睿MY-IMX6-EK200-6Q-1G
内核版本 :linux-4.1.15
交叉编译链:arm-poky-linux-gnueabi
文件系统:L4115-fsl-image-qt5-myimx6a9.tar.bz2
下载:
$ git clone git://git.yoctoproject.org/psplash 或 $ sudo apt-get install libgdk-pixbuf2.0-dev
配置工具链: $ source /home/myzr/my-work/03_toolchain/fsl-imx-fb-glibc-x86_64-meta-toolchain-qt5-cortexa9hf-neon-toolchain-4.1.15-2.1.0/environment-setup-cortexa9hf-neon-poky-linux-gnueabi
$ cd psplash/ 执行./make-image-header.sh <图片地址名称> POKY 如: $ ./make-image-header.sh ./my_logo.bmp POKY 执行后生成图片相应的头文件:<图片名称>-img.h 如:my_logo.bmp-img.h $ vi psplash.c 将psplash-poky-img.h 修改为生成的头文件: 将下面的函数注释掉: psplash_fb_draw_rect (fb, 0, SPLIT_LINE_POS(fb) - h, fb->width, h, PSPLASH_BACKGROUND_COLOR);
执行工具链中的autogen.sh 生成configure文件: $ ~/my-work/02_source/linux-4.1.15/tools/usb/usbip/autogen.sh --host=arm-poky-linux $ ./configure --host=arm-poky-linux $ make 将psplash复制到开发板后获取权限,移动到/usr/bin/: # chmod 777 psplash # mv psplash /usr/bin/ 重启: # reboot
|