diff options
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/oh/qemu-config.bb | 17 | ||||
-rwxr-xr-x | meta/packages/oh/qemu-config/qemu-autostart | 34 |
2 files changed, 47 insertions, 4 deletions
diff --git a/meta/packages/oh/qemu-config.bb b/meta/packages/oh/qemu-config.bb index d7c401eb2..f50d367c9 100644 --- a/meta/packages/oh/qemu-config.bb +++ b/meta/packages/oh/qemu-config.bb @@ -1,13 +1,14 @@ DESCRIPTION = "Adds scripts to use distcc on the host system under qemu" LICENSE = "GPL" -RDEPENDS = "distcc task-poky-nfs-server fakeroot" -PR = "r6" +RDEPENDS = "distcc task-poky-nfs-server fakeroot oprofileui-server" +PR = "r9" SRC_URI = "file://distcc.sh \ file://anjuta-remote-run \ file://exports \ file://shutdown.desktop \ - file://shutdown.png" + file://shutdown.png \ + file://qemu-autostart" S = "${WORKDIR}" @@ -28,4 +29,12 @@ do_install() { install -d ${D}${datadir}/pixmaps install -m 0644 shutdown.png ${D}${datadir}/pixmaps/ -} + + 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 ." diff --git a/meta/packages/oh/qemu-config/qemu-autostart b/meta/packages/oh/qemu-config/qemu-autostart new file mode 100755 index 000000000..5c1126938 --- /dev/null +++ b/meta/packages/oh/qemu-config/qemu-autostart @@ -0,0 +1,34 @@ +#!/bin/sh + +killproc() { # kill the named process(es) + pid=`/bin/ps -e x | + /bin/grep $1 | + /bin/grep -v grep | + /bin/sed -e 's/^ *//' -e 's/ .*//'` + [ "$pid" != "" ] && kill $pid +} + +case "$1" in + start) + echo "Starting automatic qemu services" + . /etc/profile + /usr/bin/oprofile-server & + ;; + + stop) + echo "Stopping qemu services" + killproc oprofile-server + ;; + + restart) + $0 stop + sleep 1 + $0 start + ;; + + *) + echo "usage: $0 { start | stop | restart }" + ;; +esac + +exit 0 |