mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-01-11 15:00:13 +00:00
Specifying xorg to use the Raspberry Pi 5 GPU prevents boot failures caused by the xorg load framebuffer module. Signed-off-by: Xiaolei Wang <xiaolei.wang@windriver.com>
19 lines
751 B
Plaintext
19 lines
751 B
Plaintext
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
|
|
|
|
SRC_URI:append:rpi = " \
|
|
file://xorg.conf.d/98-pitft.conf \
|
|
file://xorg.conf.d/99-calibration.conf \
|
|
file://xorg.conf.d/99-v3d.conf \
|
|
"
|
|
do_install:append:rpi () {
|
|
install -d ${D}/${sysconfdir}/X11/xorg.conf.d/
|
|
PITFT="${@bb.utils.contains("MACHINE_FEATURES", "pitft", "1", "0", d)}"
|
|
if [ "${PITFT}" = "1" ]; then
|
|
install -m 0644 ${UNPACKDIR}/xorg.conf.d/98-pitft.conf ${D}/${sysconfdir}/X11/xorg.conf.d/
|
|
install -m 0644 ${UNPACKDIR}/xorg.conf.d/99-calibration.conf ${D}/${sysconfdir}/X11/xorg.conf.d/
|
|
fi
|
|
install -m 0644 ${UNPACKDIR}/xorg.conf.d/99-v3d.conf ${D}/${sysconfdir}/X11/xorg.conf.d/
|
|
}
|
|
|
|
FILES:${PN}:append:rpi = " ${sysconfdir}/X11/xorg.conf.d/*"
|