diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-05-26 11:00:39 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-26 16:52:00 +0100 |
commit | 12f5845c119c4461dcd2ccc4a4cb19a2b9430c63 (patch) | |
tree | f87531767f457a787358bb67aa4a7a0584adf2f2 /meta/recipes-bsp/qemu-config | |
parent | 8dc48993f33a3f656a8f980f5c0c048b47bce9cf (diff) | |
download | poky-12f5845c119c4461dcd2ccc4a4cb19a2b9430c63.tar.gz |
qemu-config: add runtime dep on dbus-x11
dbus-launch moved into the dbus-x11 packages, so we need to drag it in.
Also reorder fields to better fit with the styleguide
(From OE-Core rev: dfa47303edeffa3f15f6cf53928fb9246b7c5d90)
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/qemu-config')
-rw-r--r-- | meta/recipes-bsp/qemu-config/qemu-config.bb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/meta/recipes-bsp/qemu-config/qemu-config.bb b/meta/recipes-bsp/qemu-config/qemu-config.bb index e74f2dab46..f91875e74e 100644 --- a/meta/recipes-bsp/qemu-config/qemu-config.bb +++ b/meta/recipes-bsp/qemu-config/qemu-config.bb | |||
@@ -3,8 +3,9 @@ DESCRIPTION = "Adds scripts to use distcc on the host system under qemu" | |||
3 | LICENSE = "GPL" | 3 | LICENSE = "GPL" |
4 | LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe" | 4 | LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe" |
5 | 5 | ||
6 | RDEPENDS_${PN} = "distcc task-core-nfs-server oprofileui-server rsync bash" | 6 | COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemumips|qemuppc)" |
7 | PR = "r19" | 7 | |
8 | PR = "r20" | ||
8 | 9 | ||
9 | SRC_URI = "file://distcc.sh \ | 10 | SRC_URI = "file://distcc.sh \ |
10 | file://anjuta-remote-run \ | 11 | file://anjuta-remote-run \ |
@@ -15,9 +16,6 @@ SRC_URI = "file://distcc.sh \ | |||
15 | 16 | ||
16 | S = "${WORKDIR}" | 17 | S = "${WORKDIR}" |
17 | 18 | ||
18 | COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemumips|qemuppc)" | ||
19 | PACKAGE_ARCH = "all" | ||
20 | |||
21 | do_install() { | 19 | do_install() { |
22 | install -d ${D}${sysconfdir}/profile.d | 20 | install -d ${D}${sysconfdir}/profile.d |
23 | 21 | ||
@@ -34,6 +32,9 @@ do_install() { | |||
34 | install qemu-autostart ${D}/etc/init.d/ | 32 | install qemu-autostart ${D}/etc/init.d/ |
35 | } | 33 | } |
36 | 34 | ||
35 | RDEPENDS_${PN} = "distcc dbus-x11 task-core-nfs-server oprofileui-server rsync bash" | ||
36 | PACKAGE_ARCH = "all" | ||
37 | |||
37 | inherit update-rc.d | 38 | inherit update-rc.d |
38 | 39 | ||
39 | INITSCRIPT_NAME = "qemu-autostart" | 40 | INITSCRIPT_NAME = "qemu-autostart" |