qemu-config: Autostart oprofile-server in qemu images

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3575 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2008-01-23 17:00:31 +00:00
parent a9a84bfd37
commit 2144136899
2 changed files with 47 additions and 4 deletions

View File

@@ -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 ."

View File

@@ -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