This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
我按照6.1.7. Customizing the SDK Splash Screen — Processor SDK Linux for AM335X Documentation里面的步骤在我的根文件系统中替换了psplash文件,但是整个启动过程中LCD始终没有显示。请问还有其它的文档帮助吗
这个版本的SDK:ti-processor-sdk-linux-rt-am335x-evm-07.03.00.005-Linux-x86-Install.bin;
按着步骤做后LCD没有反应,登录终端后执行psplash报错如下:
rroot@am335x-evm:/# ./usr/bin/psplash
warning: FBIOPUT_VSCREENINFO failed, double buffering disabled
请问是我内核配置就使能Bootup logo这个选项,还有其它没有配置的原因吗
1、使用tisdk_am335x-evm-rt.defconfig配置文件,在内核配置图形界面选中Bootup logo这个选项编译到内核后编译得到内核镜像和设备树;
2、交叉编译psplash得到psplash和psplash-write两个可执行文件到板子的/usr/bin/目录下;
3、在/etc/init.d/目录下编写自启动脚本psplash.sh启动psplash;脚本如下:
#!/bin/sh
### BEGIN INIT INFO
# Provides: psplash
# Required-Start:
# Required-Stop:
# Default-Start: S
# Default-Stop:
### END INIT INFO
read CMDLINE < /proc/cmdline
for x in $CMDLINE; do
case $x in
psplash=false)
echo "Boot splashscreen disabled"
exit 0;
;;
esac
done
export TMPDIR=/mnt/.psplash
mount tmpfs -t tmpfs $TMPDIR -o,size=40k
rotation=0
if [ -e /etc/rotation ]; then
read rotation < /etc/rotation
fi
/usr/bin/psplash --angle $rotation &
板子开机启动内核,但是LCD屏幕上没有反应,然后启动完成后再手动执行psplash.sh脚本或直接执行/usr/bin/psplash文件都报warning: FBIOPUT_VSCREENINFO failed, double buffering disabled。
您好,e2e产品线工程师还未回复,我也回复不了那个帖子。帮忙问一下内核启动时不执行/etc/rc3.d/文件夹下名称与psplash相关的脚本,但把相关psplash的名字改一下就会执行且显示logo。我测试过这与内核使能Bootup logo这个选项没关系,都能显示logo,大概在内核启动16秒这样显示logo,感觉这应该是不对的,而且从开机到显示logo的时间有点长。
帮忙问一下内核启动时不执行/etc/rc3.d/文件夹下名称与psplash相关的脚本,但把相关psplash的名字改一下就会执行且显示logo。
请问具体是怎么改的?
/etc/rc3.d/S00psplash链接到脚本/etc/init.d/psplash.sh这样不执行;改为/etc/rc3.d/S00psplash链接到脚本/etc/init.d/logotest.sh也不执行;再改为/etc/rc3.d/S00logotest链接到脚本/etc/init.d/logotest.sh这样就执行且显示logo了。psplash.sh和logotest.sh文件内容一致。
请看下面e2e工程师的回复。
Psplash is part of Yocto project, the following e2e thread has the instructions to build in Yocto project: https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1011994/am3358-updating-splash-screen-progress-bar-in-am3358.
Otherwise, there are many dependencies that you might be missing to build psplash correctly.