mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-26 19:17:00 +00:00
02c9c4eded
THISDIR and FILESPATH are not supposed to be changed from within recipes. This was causing troubles with other bbapend. Change-Id: I7c3c788ddb61b0b790a9fe06f86e4bd93a822c8c Signed-off-by: Michaël Burtin <mburtin@connected-labs.com> Acked-by: Andrei Gherzan <andrei@gherzan.ro>
11 lines
368 B
Plaintext
11 lines
368 B
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
|
|
|
SRC_URI_append_raspberrypi = " file://xorg.conf.d/10-evdev.conf "
|
|
|
|
do_install_append_raspberrypi () {
|
|
install -d ${D}/${sysconfdir}/X11/xorg.conf.d/
|
|
install -m 0644 ${WORKDIR}/xorg.conf.d/* ${D}/${sysconfdir}/X11/xorg.conf.d/
|
|
}
|
|
|
|
FILES_${PN}_raspberrypi += "${sysconfdir}/X11/xorg.conf ${sysconfdir}/X11/xorg.conf.d/*"
|