[Qemu-devel] system_reset command cause assert failed

2010-01-31 Thread Roy Tam
Dear all, In latest git revision, when guest OS restarts or system_reset command issues from monitor console, it asserts failed: Assertion failed: obj != NULL, file C:/msys/home/User/qemu/monitor.c, line 338 Best regards, Roy Tam

Re: [Qemu-devel] Re: qemu without an X?

2010-01-31 Thread Mulyadi Santosa
On Sun, Jan 31, 2010 at 3:17 AM, jonatan perry jonata...@gmail.com wrote: Opps... sent to this list by mistake :-( On Sat, Jan 30, 2010 at 10:17 PM, jonatan perry jonata...@gmail.com wrote: Hello all, Can Qemu running on Linux without an X server run windows operation system? is the

Re: [Qemu-devel] RE: Qemu-devel Digest, Vol 82, Issue 324

2010-01-31 Thread Mulyadi Santosa
2010/1/30 Yasin Yenidünya mac...@gmail.com: Hello, I want to develop an linux os. Does anyone has a tutorial to build an operting system? Or if some one has the soruce code of linux that comes with qemu it is also enought for me.. You wanna develop from scratch? or extend the existing one

[Qemu-devel] [PATCH] Add cpu model configuration support..

2010-01-31 Thread john cooper
This is a reimplementation of prior versions which adds the ability to define cpu models for contemporary processors. The added models are likewise selected via -cpu name, and are intended to displace the existing convention of -cpu qemu64 augmented with a series of feature flags. A primary

[Qemu-devel] Re: sparc32 don't mark page dirty when failing

2010-01-31 Thread Blue Swirl
Thanks, applied. On Sun, Jan 31, 2010 at 4:27 AM, Artyom Tarasenko atar4q...@googlemail.com wrote: if the access check fails, the page can not be modified and shouldn't be marked dirty. The patch fixes the hsfs_putpage: dirty HSFS page error in Solaris guests. Signed-off-by: Artyom

[Qemu-devel] Re: [PATCH 6/6] fix audio_bug related failures

2010-01-31 Thread Paolo Bonzini
On 01/31/2010 04:08 AM, malc wrote: On Wed, 27 Jan 2010, Anthony Liguori wrote: On 01/27/2010 05:56 AM, Paolo Bonzini wrote: On 01/27/2010 03:10 AM, Anthony Liguori wrote: What did clang complain about? It's not obvious to me. It doesn't see that audio_bug returns cond, and gives quite a

[Qemu-devel] Re: [PATCH v2] qemu-img: Fix qemu-img can't create qcow image based on read-only image

2010-01-31 Thread Naphtali Sprei
Sheng Yang wrote: Commit 03cbdac7 Disable fall-back to read-only when cannot open drive's file for read-write result in read-only image can't be used as backed image in qemu-img. Cc: Naphtali Sprei nsp...@redhat.com Signed-off-by: Sheng Yang sh...@linux.intel.com Acked-by: Naphtali Sprei

[Qemu-devel] [PATCH] Fix missing symbols in .rel/.rela.plt sections

2010-01-31 Thread Loïc Minier
Fix .rel.plt sections in the output to not only include .rel.plt sections from the input but also the .rel.iplt sections and to define the hidden symbols __rel_iplt_start and __rel_iplt_end around .rel.iplt as otherwise we get undefined references to these when linking statically to a multilib

[Qemu-devel] [PATCH] Add -static earlier to LDFLAGS for compile_prog()

2010-01-31 Thread Loïc Minier
Add -static to LDFLAGS earlier as to run the compile_prog() tests with this flags, this will avoid turning on features for which a shared library is available but not a static one. Signed-off-by: Loïc Minier l...@dooz.org --- configure |5 +++-- 1 files changed, 3 insertions(+), 2

[Qemu-devel] [PATCH] Remove conditional rom loading support

2010-01-31 Thread Blue Swirl
Commit c2039bd0ffce8807e0eaac55254fde790825fa92 made rom loading automatic for non-PC architectures. Remove now mostly unused conditional rom loading support. Signed-off-by: Blue Swirl blauwir...@gmail.com --- hw/loader.c |5 - hw/loader.h |1 - hw/pc.c |3 --- 3 files

[Qemu-devel] [PATCH] block: Enable fall-back to read-only for backing file

2010-01-31 Thread Naphtali Sprei
There's a problem when trying to use an image file based on a read-only image file. Before this patch, qemu fails to open the base image and stop. With this patch, qemu tries to open the backing file with same permissions as the top file, but if it fails, qemu tries to open it with read-only

Re: [Qemu-devel] Re: qemu without an X?

2010-01-31 Thread jonatan perry
Hi Mulyadi! Regarding my first qeustion: no, I don't want remote access to the machine, I want local access, something like starting a linux os, and launch from shell qemu so he will run a graphic operation system, like windows. I want my emulator to run the virtual machine opcodes natively on my

Re: [Qemu-devel] Re: qemu without an X?

2010-01-31 Thread Ben Taylor
On Sun, Jan 31, 2010 at 1:56 PM, jonatan perry jonata...@gmail.com wrote: Hi Mulyadi! Regarding my first qeustion: no, I don't want remote access to the machine, I want local access, something like starting a linux os, and launch from shell qemu so he will run a graphic operation system, like

Re: [Qemu-devel] [PATCH] Porting TCG to alpha platform

2010-01-31 Thread Richard Henderson
tcg_out_ld(s, TCG_TYPE_I64, r1, r1, offsetof(CPUTLBEntry, addend) - offsetof(CPUTLBEntry, addr_read)); should be modified to tcg_out_ld(s, TCG_TYPE_I64, r1, r1, offsetof(CPUTLBEntry, addend)); Actually, it should be the entire offset from CPUState. The ADDR_WRITE offset before was entirely

[Qemu-devel] [PATCH] Build and install more documentation formats

2010-01-31 Thread Dirk Ullrich
Hi, I have patched QEMU's configure script and its main makefile: Now QEMU's documentation is also created in PDF format (using texi2pdf), and the targets install-all-doc / install-all install documentation in INFO and PDF format, too. May be others find this feature useful. Dirk For response