mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-04-02 02:49:12 +00:00
Add udev rule to notify systemd of available framebuffer Using psplash in combination with systemd the splash screen is not shown. The dependency to sys-devices-platform-gpu-graphics-fb0.device will terminate psplash-start.service because systemd is not aware of the existing framebuffer device node. See https://lists.yoctoproject.org/g/yocto/topic/91286438#57156 Signed-off-by: Bastian Wanner <bastian.wanner@inovex.de>
22 lines
705 B
BlitzBasic
22 lines
705 B
BlitzBasic
DESCRIPTION = "udev rules for Raspberry Pi Boards"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/RPi-Distro/raspberrypi-sys-mods;protocol=https;branch=master \
|
|
file://can.rules \
|
|
file://fb.rules \
|
|
"
|
|
SRCREV = "5ce3ef2b7f377c23fea440ca9df0e30f3f8447cf"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
do_install () {
|
|
install -d ${D}${sysconfdir}/udev/rules.d
|
|
install -m 0644 ${S}/etc.armhf/udev/rules.d/99-com.rules ${D}${sysconfdir}/udev/rules.d/
|
|
install -m 0644 ${UNPACKDIR}/can.rules ${D}${sysconfdir}/udev/rules.d/
|
|
install -m 0644 ${UNPACKDIR}/fb.rules ${D}${sysconfdir}/udev/rules.d/
|
|
}
|