search for: qemu_pidfile

Displaying 11 results from an estimated 11 matches for "qemu_pidfile".

2014 Nov 21
3
Bug#770456: Please start a qemu process in domain 0.
....xen.init +++ b/debian/xen-utils-common.xen.init @@ -37,6 +37,9 @@ XENCONSOLED="$ROOT"/bin/xenconsoled XENCONSOLED_PIDFILE="/var/run/xenconsoled.pid" XENSTORED="$ROOT"/bin/xenstored XENSTORED_PIDFILE="/var/run/xenstore.pid" +QEMU=/usr/bin/qemu-system-i386 +QEMU_PIDFILE="/var/run/qemu-dom0.pid" +QEMU_ARGS="-xen-domid 0 -xen-attach -name dom0 -nographic -M xenpv -daemonize -monitor /dev/null -serial /dev/null -parallel /dev/null" modules_setup() { @@ -179,10 +182,65 @@ xenconsoled_stop_real() [ "$RETVAL" = 2 ] && return 2...
2014 Nov 27
0
Bug#770456: Bug#770456: Please start a qemu process in domain 0.
...21 Nov 2014 11:26:40 +0000 > + > xen (4.4.1-3) unstable; urgency=medium > > [ Bastian Blank ] > diff --git a/debian/xen-utils-common.xen.init b/debian/xen-utils-common.xen.init ... > + > +qemu_start_real() > +{ > + start-stop-daemon --start --quiet --pidfile "$QEMU_PIDFILE" --exec "$QEMU" --test > /dev/null \ > + || return 1 > + start-stop-daemon --start --quiet --pidfile "$QEMU_PIDFILE" --exec "$QEMU" -- \ > + $QEMU_ARGS -pidfile "$QEMU_PIDFILE" \ > + || return 2 > +} > + > +qemu_stop_real() &gt...
2014 Nov 27
3
Bug#770456: Bug#770456: Please start a qemu process in domain 0.
...xen (4.4.1-3) unstable; urgency=medium > > > > [ Bastian Blank ] > > diff --git a/debian/xen-utils-common.xen.init b/debian/xen-utils-common.xen.init > ... > > + > > +qemu_start_real() > > +{ > > + start-stop-daemon --start --quiet --pidfile "$QEMU_PIDFILE" --exec "$QEMU" --test > /dev/null \ > > + || return 1 > > + start-stop-daemon --start --quiet --pidfile "$QEMU_PIDFILE" --exec "$QEMU" -- \ > > + $QEMU_ARGS -pidfile "$QEMU_PIDFILE" \ > > + || return 2 > > +} > &gt...
2014 Nov 27
0
Bug#770456: Bug#770456: Please start a qemu process in domain 0.
...mon.xen.init 2014-11-27 17:27:32.238849961 +0100 @@ -37,6 +37,9 @@ XENCONSOLED="$ROOT"/bin/xenconsoled XENCONSOLED_PIDFILE="/var/run/xenconsoled.pid" XENSTORED="$ROOT"/bin/xenstored XENSTORED_PIDFILE="/var/run/xenstore.pid" +QEMU=/usr/bin/qemu-system-i386 +QEMU_PIDFILE="/var/run/qemu-dom0.pid" +QEMU_ARGS="-xen-domid 0 -xen-attach -name dom0 -nographic -M xenpv -daemonize -monitor /dev/null -serial /dev/null -parallel /dev/null" modules_setup() { @@ -179,10 +182,65 @@ xenconsoled_stop_real() [ "$RETVAL" = 2 ] && return 2...
2015 Jan 22
5
Ubuntu delta against 4.5.0-1 in experimental for disussion
...00000 +0100 +++ xen-4.5.0/debian/xen-utils-common.xen.init 2015-01-22 12:16:25.000000000 +0100 @@ -37,6 +37,9 @@ XENCONSOLED_PIDFILE="/var/run/xenconsoled.pid" XENSTORED="$ROOT"/bin/xenstored XENSTORED_PIDFILE="/var/run/xenstore.pid" +QEMU=/usr/bin/qemu-system-i386 +QEMU_PIDFILE="/var/run/qemu-dom0.pid" +QEMU_ARGS="-xen-domid 0 -xen-attach -name dom0 -nographic -M xenpv -daemonize -monitor /dev/null -serial /dev/null -parallel /dev/null" modules_setup() { @@ -179,13 +182,84 @@ [ "$RETVAL" = 2 ] && return 2 start-stop-daemon --st...
2013 May 08
9
[PATCH] xen/arm: Don't start a QEMU for backend
..._ARGS - echo Starting QEMU as disk backend for dom0 test -z "$QEMU_XEN" && QEMU_XEN="${LIBEXEC}/qemu-system-i386" - $QEMU_XEN -xen-domid 0 -xen-attach -name dom0 -nographic -M xenpv -daemonize \ - -monitor /dev/null -serial /dev/null -parallel /dev/null \ - -pidfile $QEMU_PIDFILE + if [ -x "$QEMU_XEN" ]; then + echo Starting QEMU as disk backend for dom0 + $QEMU_XEN -xen-domid 0 -xen-attach -name dom0 -nographic \ + -M xenpv -daemonize -monitor /dev/null \ + -serial /dev/null -parallel /dev/null \ + -pidfile $QEMU_PIDFILE + fi } do_stop () {...
2013 Jan 25
14
[PATCH] tools: revert to using /var and /etc/
26470:acaf29203cf9 "tools+stubdom: install under /usr/local by default" moved more stuff under /usr/local than was desirable. In particular SYSCONFIG_DIR (configuration for initscripts) moved to /usr/local/etc/{sysconfig,defaults} while the initscripts themselves (correctly) remained in /etc/init.d. Moving /etc/xen/scripts breaks the udev bakcned rules file. Lastly stuff under /var was
2015 Jan 22
0
Ubuntu delta against 4.5.0-1 in experimental for disussion
...an/xen-utils-common.xen.init 2015-01-22 12:16:25.000000000 +0100 > @@ -37,6 +37,9 @@ > XENCONSOLED_PIDFILE="/var/run/xenconsoled.pid" > XENSTORED="$ROOT"/bin/xenstored > XENSTORED_PIDFILE="/var/run/xenstore.pid" > +QEMU=/usr/bin/qemu-system-i386 > +QEMU_PIDFILE="/var/run/qemu-dom0.pid" > +QEMU_ARGS="-xen-domid 0 -xen-attach -name dom0 -nographic -M xenpv -daemonize > -monitor /dev/null -serial /dev/null -parallel /dev/null" I think all this is #770456, feature/bug770456 branch in the packaging xen.git. TBH I think this really ou...
2015 Jan 23
2
Ubuntu delta against 4.5.0-1 in experimental for disussion
...init 2015-01-22 12:16:25.000000000 +0100 >> @@ -37,6 +37,9 @@ >> XENCONSOLED_PIDFILE="/var/run/xenconsoled.pid" >> XENSTORED="$ROOT"/bin/xenstored >> XENSTORED_PIDFILE="/var/run/xenstore.pid" >> +QEMU=/usr/bin/qemu-system-i386 >> +QEMU_PIDFILE="/var/run/qemu-dom0.pid" >> +QEMU_ARGS="-xen-domid 0 -xen-attach -name dom0 -nographic -M xenpv -daemonize >> -monitor /dev/null -serial /dev/null -parallel /dev/null" > > I think all this is #770456, feature/bug770456 branch in the packaging > xen.git. TBH...
2013 Dec 16
8
XEN/arm XENFB support
Goodmorning, I''m currently playing with XEN/arm on my Allwinner A20 (cubieboard2) I would like to get the XENFB driver working on domU. But currently in xen/arm there''s no support for VFB, atleast qemu is not supported. But this video http://www.youtube.com/watch?v=po1IeElg8tg and this one http://www.youtube.com/watch?v=Km6gBnIqaWo is showing a working framebuffer. So there are
2019 Feb 10
21
[PATCH 00/13] Patch blast of salsa wip.testme branch
The contents are the wip.testme branch currently on salsa. I combined the wip.initscript and wip.oxenstored into this and added more things today. I think this is pretty gtg and it's smoke tested (in several cases by scping files around instead of doing package build), so it needs a final extra review and test round before putting it in master branch (which I don't want to force push). I