mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-09-16 22:27:36 +00:00
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/*"
|