summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb')
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb
index 0972a5dd78..d57b3427f8 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb
@@ -5,6 +5,7 @@ LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" 5LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
6 6
7SRC_URI = "file://xorg.conf" 7SRC_URI = "file://xorg.conf"
8SRC_URI:append:qemuall = " file://noblank.conf"
8 9
9S = "${WORKDIR}/sources" 10S = "${WORKDIR}/sources"
10UNPACKDIR = "${S}" 11UNPACKDIR = "${S}"
@@ -19,4 +20,9 @@ do_install () {
19 install -d ${D}/${sysconfdir}/X11 20 install -d ${D}/${sysconfdir}/X11
20 install -m 0644 ${S}/xorg.conf ${D}/${sysconfdir}/X11/ 21 install -m 0644 ${S}/xorg.conf ${D}/${sysconfdir}/X11/
21 fi 22 fi
23
24 if test -s ${S}/noblank.conf; then
25 install -d ${D}/${sysconfdir}/X11/xorg.conf.d
26 install -m 0644 ${S}/noblank.conf ${D}/${sysconfdir}/X11/xorg.conf.d/
27 fi
22} 28}