mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 03:32:12 +02:00
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:
@@ -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 ."
|
||||
|
||||
34
meta/packages/oh/qemu-config/qemu-autostart
Executable file
34
meta/packages/oh/qemu-config/qemu-autostart
Executable 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
|
||||
Reference in New Issue
Block a user