summaryrefslogtreecommitdiffstats
path: root/meta/packages/oh/qemu-config.bb
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-09-01 19:09:11 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-09-01 19:09:57 +0100
commitd62ee7eaf2ba025c3f64b2d4e10dc7cec4637612 (patch)
treef36fe3008f36ff75cbdd31b630f8f13f1f205ebb /meta/packages/oh/qemu-config.bb
parentcaab7fc509bf27706ff3248689f6afd04225cfda (diff)
downloadopenembedded-core-contrib-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.gz
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/oh/qemu-config.bb')
-rw-r--r--meta/packages/oh/qemu-config.bb36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/packages/oh/qemu-config.bb b/meta/packages/oh/qemu-config.bb
deleted file mode 100644
index fc59320282..0000000000
--- a/meta/packages/oh/qemu-config.bb
+++ /dev/null
@@ -1,36 +0,0 @@
-DESCRIPTION = "Adds scripts to use distcc on the host system under qemu"
-LICENSE = "GPL"
-RDEPENDS = "distcc task-poky-nfs-server oprofileui-server rsync bash"
-PR = "r17"
-
-SRC_URI = "file://distcc.sh \
- file://anjuta-remote-run \
- file://exports \
- file://shutdown.desktop \
- file://qemu-autostart"
-
-S = "${WORKDIR}"
-
-COMPATIBLE_MACHINE = "(qemuarm|qemux86)"
-PACKAGE_ARCH = "all"
-
-do_install() {
- install -d ${D}${sysconfdir}/profile.d
-
- install -m 0755 distcc.sh ${D}${sysconfdir}/profile.d/
- install -m 0644 exports ${D}${sysconfdir}/
-
- install -d ${D}${bindir}
- install -m 0755 anjuta-remote-run ${D}${bindir}/
-
- install -d ${D}${datadir}/applications
- install -m 0644 shutdown.desktop ${D}${datadir}/applications/
-
- install -d ${D}/etc/init.d
- install qemu-autostart ${D}/etc/init.d/
-}
-
-inherit update-rc.d
-
-INITSCRIPT_NAME = "qemu-autostart"
-INITSCRIPT_PARAMS = "start 999 5 2 . stop 20 0 1 6 ."