Package: aqemu
Version: 0.8.2-2+b1
Severity: normal
Tags: patch

Dear Maintainer,

if LPT parallel option is selected, then qemu fails to start, because wrong
command line option is set.
AQemu sets '-Parallel', but the right option for that is '-parallel' according
to the qemu-system's manual page.
Screenshot with error message and patch with a fix are attached.



-- System Information:
Debian Release: 8.0
  APT prefers testing-updates
  APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages aqemu depends on:
ii  libc6           2.19-13
ii  libgcc1         1:4.9.1-19
ii  libqt4-network  4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqt4-test     4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqt4-xml      4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqtcore4      4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libqtgui4       4:4.8.6+git64-g5dc8b2b+dfsg-2+b1
ii  libstdc++6      4.9.1-19
ii  libvncclient0   0.9.9+dfsg-6.1
ii  qemu            1:2.1+dfsg-11

Versions of packages aqemu recommends:
ii  qemu-kvm  1:2.1+dfsg-11

aqemu suggests no packages.
diff --git a/VM.cpp b/VM.cpp
index 04c6173..fb45b3b 100644
--- a/VM.cpp
+++ b/VM.cpp
@@ -6084,7 +6084,7 @@ QStringList Virtual_Machine::Build_QEMU_Args()
 	{
 		if( Parallel_Ports[ix].Get_Port_Redirection() == VM::PR_Default ) continue;
 		
-		Args << "-Parallel";
+		Args << "-parallel";
 		
 		switch( Parallel_Ports[ix].Get_Port_Redirection() )
 		{

Reply via email to