From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=34944 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OwUwf-0004BK-Hb for qemu-devel@nongnu.org; Fri, 17 Sep 2010 03:01:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OwUwe-0001Lw-5Q for qemu-devel@nongnu.org; Fri, 17 Sep 2010 03:01:17 -0400 Received: from adelie.canonical.com ([91.189.90.139]:42011) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OwUwd-0001Ll-SC for qemu-devel@nongnu.org; Fri, 17 Sep 2010 03:01:16 -0400 Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.69 #1 (Debian)) id 1OwUwa-00027Y-37 for ; Fri, 17 Sep 2010 08:01:12 +0100 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 8BD622E816E for ; Fri, 17 Sep 2010 07:01:00 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Date: Fri, 17 Sep 2010 06:54:06 -0000 From: qwe <612452@bugs.launchpad.net> Sender: bounces@canonical.com References: <20100802081511.22698.82887.malonedeb@palladium.canonical.com> <20100916161420.9035.61517.malone@soybean.canonical.com> Message-Id: <4C93108E.3090908@GMail.COM> Errors-To: bounces@canonical.com Subject: [Qemu-devel] Re: [Bug 612452] Re: Problems with the number of serial ports for more than two Reply-To: Bug 612452 <612452@bugs.launchpad.net> List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org > This bug seems to be solved and closed here: http://bugs.debian.org/cgi- > bin/bugreport.cgi?bug=3D574051 > > Is it solved in 0.12.5 or 0.13.0rc1 yet? > > ** Bug watch added: Debian Bug tracker #574051 > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D574051 > = #cd qemu-snapshot #date Fri Sep 17 09:29:01 MSD 2010 #cat .git/config ... [remote "origin"] url =3D git://git.savannah.nongnu.org/qemu.git fetch =3D +refs/heads/*:refs/remotes/origin/* [branch "master"] remote =3D origin merge =3D refs/heads/master #git pull ... #./configure --disable-xen --audio-drv-list=3Dalsa,sdl #make && make install ... install -m 755 qemu "/usr/local/bin" ... #ls -l /usr/local/bin/qemu #-rwxr-xr-x 1 root root 1960900 2010-09-17 09:45 /usr/local/bin/qemu #/usr/local/bin/qemu --version QEMU emulator version 0.13.50, Copyright (c) 2003-2008 Fabrice Bellard #cd /path/to/hd/image #/usr/local/bin/qemu -serial file:file1 -serial file:file2 -serial none = -serial none hd.img In VM #echo test1 >/dev/ttyS0 #echo test2 >/dev/ttyS1 #echo test3 >/dev/ttyS2 ... error... #echo test4 >/dev/ttyS3 ... error... It is right #halt In host #ls -l file* -rw-r--r-- 1 root root 7 2010-09-17 10:13 file1 -rw-r--r-- 1 root root 7 2010-09-17 10:12 file2 Excellent. Try next. #rm -f file* #/usr/local/bin/qemu -serial file:file1 -serial file:file2 -serial = file:file3 -serial none hd.img isa irq 4 already assigned Misfire. Try next. #/usr/local/bin/qemu -serial none -serial none -serial file:file3 = -serial file:file4 hd.img In VM #echo test1 >/dev/ttyS0 #echo test2 >/dev/ttyS1 #echo test3 >/dev/ttyS2 ... error... #echo test4 >/dev/ttyS3 ... error... OOPS! Surprise. #halt In host #ls -l file* -rw-r--r-- 1 root root 7 2010-09-17 10:40 file3 -rw-r--r-- 1 root root 7 2010-09-17 10:40 file4 In this case expected. -- = Problems with the number of serial ports for more than two https://bugs.launchpad.net/bugs/612452 You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. Status in QEMU: Confirmed Bug description: qemu --version QEMU emulator version 0.13.50, Copyright (c) 2003-2008 Fabrice Bellard Command line: qemu -serial null -serial null -serial file:test1 hd.img Error: isa irq 4 already assigned echo $? 1