mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-05-09 17:39:18 +00:00
b0e4ba5f7a
* I forgot to append the machine to the SRC_URI_append so left this in a state that would break other BSP layers. Bad John!
17 lines
557 B
Plaintext
17 lines
557 B
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
|
# Don't forget to bump PRINC if you update the extra files.
|
|
PRINC = "4"
|
|
|
|
THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}"
|
|
FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:"
|
|
|
|
SRC_URI_append_raspberrypi = " file://xorg.conf.d/*"
|
|
|
|
CONFFILES_${PN} += "${sysconfdir}/X11/xorg.conf.d/*"
|
|
|
|
do_install_append () {
|
|
install -d ${D}/${sysconfdir}/X11/xorg.conf.d/
|
|
install -m 0644 ${WORKDIR}/xorg.conf.d/* ${D}/${sysconfdir}/X11/xorg.conf.d/
|
|
}
|
|
|
|
FILES_${PN} += "${sysconfdir}/X11/xorg.conf.d" |