From mboxrd@z Thu Jan 1 00:00:00 1970 From: Laszlo Ersek Subject: Re: [Qemu-devel] Test report for xen-unstable and qemu-xen Date: Wed, 14 Aug 2013 11:56:34 +0200 Message-ID: <520B5452.4090004@redhat.com> References: <5208F96D.3010101@m2r.biz> <5209F95F.1080806@m2r.biz> <520A04A2.9020801@redhat.com> <520A0B5E.8080405@m2r.biz> <520A1407.1060301@redhat.com> <520A3413.5020002@m2r.biz> <20130813235826.GA12821@morn.localdomain> <520B4B94.2080506@m2r.biz> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <520B4B94.2080506@m2r.biz> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: seabios-bounces@seabios.org Sender: seabios-bounces@seabios.org To: Fabio Fantoni Cc: xen-devel , Ian Campbell , Stefano Stabellini , George Dunlap , seabios , "qemu-devel@nongnu.org" , pkg-qemu-devel@lists.alioth.debian.org, Gerd Hoffmann List-Id: xen-devel@lists.xenproject.org On 08/14/13 11:19, Fabio Fantoni wrote: > Tried with qemu 1.4.2 and it works also with 4 gb of ram. > This ram regression seems to be introduced with qemu 1.5, and there is > another regression more critical with qemu 1.6. Can you save qemu's stderr for the 1.5->1.6 regression? > Tried to add seabios debug options to domU xl configuration file... > > device_model_args=["-chardev > stdio,id=seabios","-device","isa-debugcon,iobase=0x402,chardev=seabios"] > > But it doesn't boot > > /var/log/xen/qemu-dm-W7.log > qemu-system-x86_64: -chardev stdio,id=seabios: invalid option That's probably because you forgot to break up this option into separate python list entries: device_model_args=["-chardev", "stdio,id=seabios", "-device", "isa-debugcon,iobase=0x402,chardev=seabios"] Laszlo