-
Notifications
You must be signed in to change notification settings - Fork 416
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pi5 yocto image, my own psplash pictiure file Not display(solved) #1330
Comments
Hi, I have the same problem, it works fine if I use sysvinit but after switching to systemd no more psplash is shown on boot. |
@farias-automac |
Not work for me after using systemd , X windows completely NO display, no psplash, no serial console, so I have not found the solutions, so I have to restore to NO systemd any help? |
root@raspberrypi5:/var/log# grep -r plash . no executable file /usr/bin/psplash generated in image. |
you mean you use meta-respberry default .bbapend and sysvinit. it will show raspberry ? I remember in pi4 there is a /usr/bin/psplash. I directly run it ,it can show in pi4. in yocto, it generated a executable file psplash-write. no psplash , I do not know how to use psplash-write and search it why no psplash. now I try to use psplash source code in pi4 board to directly compile it to try |
I found build/tmp/work/cortexa76-poky-linux/psplash/0.1+git/build/psplash, it was not put into image. |
I find the reason, for my settings same as pi4 , psplash actually generated in build/tmp/work/cortexa76-poky-linux/psplash/0.1+git/build, but it was not put into image rootfs |
finally, I find poky/meta/recipes-core/psplash/psplash_git.bb , there is a line : rm -f ${D}${bindir}/psplash |
solved! finally fixed, I add 1 line FILESEXTRAPATHS:prepend := "${THISDIR}/files:" SRC_URI:append:rpi = " file://framebuf.conf" do_install:append:rpi() { FILES:${PN}:append:rpi = " ${systemd_system_unitdir}/psplash-start.service.d" DISABLE_SPLASH = "1" in local.conf do not matter if add it and do not add it. finally ,I remove this line |
Out of curiosity, what branch are you using? |
@farias-automac meta-raspberrypi commit 1879cb8 (HEAD -> master, origin/master, origin/HEAD) |
Hi all,
I modified meta-raspberrypi/recipes-core/psplash/psplash_%.bbappend almsot same as in pi4 as bebow
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
SPLASH_IMAGES:rpi = "file://flash_1024_576.png;outsuffix=raspberrypi"
or
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
SPLASH_IMAGES:rpi = "file://flash_1024_576.png;outsuffix=raspberrypi"
SRC_URI:append:rpi = " file://framebuf.conf"
do_install:append:rpi() {
if [ "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" ]; then
install -Dm 0644 ${WORKDIR}/framebuf.conf ${D}${systemd_system_unitdir}/psplash-start.service.d/framebuf.conf
fi
}
and DISABLE_SPLASH = "1" in local.con same as pi4
and dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait silent quiet splash loglevel=0 logo.nologo
in /boot/cmdline.txt same as pi4
but my own picture flash_1024_576.png No display. same settings in pi4 image work with older commit
any help?
The text was updated successfully, but these errors were encountered: