aboutsummaryrefslogtreecommitdiffstats
path: root/main/xen/xenqemu.initd
diff options
context:
space:
mode:
Diffstat (limited to 'main/xen/xenqemu.initd')
-rw-r--r--main/xen/xenqemu.initd5
1 files changed, 4 insertions, 1 deletions
diff --git a/main/xen/xenqemu.initd b/main/xen/xenqemu.initd
index 463bf598ff..aeabd30948 100644
--- a/main/xen/xenqemu.initd
+++ b/main/xen/xenqemu.initd
@@ -7,8 +7,11 @@ depend() {
start() {
ebegin "Starting QEMU as disk backend for dom0"
- start-stop-daemon --start --exec /usr/lib/xen/bin/qemu-system-i386 \
+ # XXX: qemu f**** the console when launched with
+ # -nographic and -monitor, use nohup to prevent that.
+ start-stop-daemon --start --exec nohup \
--pidfile=/var/run/xenqemu.pid -b -- \
+ /usr/lib/xen/bin/qemu-system-i386 \
-xen-domid 0 -xen-attach -name dom0 -nographic \
-M xenpv -monitor /dev/null \
-pidfile /var/run/xenqemu.pid \