blob: 8945e1e8f113a0785c3cb8a4c074c80cb5f4793e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
DESCRIPTION = "Machine specific xorg.conf files"
PR = "r16"
SRC_URI = "file://xorg.conf"
do_install() {
install -d ${D}/${sysconfdir}/X11
install -m 0644 ${WORKDIR}/xorg.conf ${D}/${sysconfdir}/X11/
}
CONFFILES_${PN} += "${sysconfdir}/X11/xorg.conf"
PACKAGE_ARCH = "${MACHINE_ARCH}"
|