Re: [Qemu-devel] [PATCH 1/3] Fix MIPS counter / compare interrupt

2005-08-15 Thread Johannes Schindelin
Hi, On Tue, 16 Aug 2005, Hetz Ben Hamo wrote: > You can always put it in the forum in the patches area. Just notify > this list that it's there. Sorry, I did not explain. GIT is the new source code management system adopted by many of the Linux kernel developers. It is similar to CVS in that i

[Qemu-devel] Re: Proll updates

2005-08-15 Thread Jose Renau
(qemu) PROLL ID18 QEMU 128 MB total IOMMU: impl 0 vers 0 page table at 0xFFD2 of size 32768 bytes NVRAM: id QEMU_BIOS version 1 Prom console: serial dma0: Revision 0 le0: LANCE 52:54:0:12:34:56 le0: using TPE. dma1: Revision 0 Boot device: d Loading partition table from target 2: hw sector: 5

Re: [Qemu-devel] [PATCH 1/3] Fix MIPS counter / compare interrupt

2005-08-15 Thread Hetz Ben Hamo
You can always put it in the forum in the patches area. Just notify this list that it's there. Thanks, Hetz On 8/16/05, Johannes Schindelin <[EMAIL PROTECTED]> wrote: > Hi, > > On Mon, 15 Aug 2005, Ralf Baechle wrote: > > > The count / compare interrupt is wired to the CPU's internal interrupt

Re: [Qemu-devel] [PATCH 1/3] Fix MIPS counter / compare interrupt

2005-08-15 Thread Johannes Schindelin
Hi, On Mon, 15 Aug 2005, Ralf Baechle wrote: > The count / compare interrupt is wired to the CPU's internal interrupt > controller, not a PIC. > > hw/mips_r4k.c| 10 -- > target-mips/helper.c | 12 +++- > 2 files changed, 19 insertions(+), 3 deletions(-) > > Index:

[Qemu-devel] Proll updates

2005-08-15 Thread Blue Swirl
Hi, Here's a new version of Proll. Now that I've fixed a bug with ESP, Proll can boot from the following CDs: Aurora 1.0 Debian 3.0r2 Debian 3.0r4 Debian-3.1r0 mini Debian sarge mini NetBSD_1.6 NetBSD_1.6.1 Debian sarge businesscard Suse 7.3 Red Hat 4.0 'Zoot' Kernels hang/crash very soon. Fo

[Qemu-devel] qemu/target-i386 op.c

2005-08-15 Thread Fabrice Bellard
CVSROOT:/cvsroot/qemu Module name:qemu Branch: Changes by: Fabrice Bellard <[EMAIL PROTECTED]> 05/08/15 16:33:56 Modified files: target-i386: op.c Log message: 16/32 stack operations fix on x86_64 (aka win2000 startup bug) CVSWeb URLs: http://sav

[Qemu-devel] qemu/target-i386 helper.c

2005-08-15 Thread Fabrice Bellard
CVSROOT:/cvsroot/qemu Module name:qemu Branch: Changes by: Fabrice Bellard <[EMAIL PROTECTED]> 05/08/15 16:33:13 Modified files: target-i386: helper.c Log message: CLFLUSH cpuid fix (aka Linux 2.6 hang on x86_64) CVSWeb URLs: http://savannah.gnu.

RE: [Qemu-devel] Re: Q: Issue booting Solaris 8 (SPARC)

2005-08-15 Thread Blue Swirl
obp_devopen(sd(0,2,0)) obp_devseek: fd 2, hi 0, lo 8192 obp_devread: fd 2, nbytes 8192 Thanks for the report. Here's a translation: Boot sector "bootblk" gets loaded. It reads 8k from disk sd(0,2,0) (without partition code, mmh) at offset 8k. The contents is not what is expected, so it prints

Re: [Qemu-devel] qemu-system-x86_64

2005-08-15 Thread Fabrice Bellard
Juergen Lock wrote: After further installing my new amd64 box (yes, if_sk works now :) I just tried a few guests with qemu-system-x86_64: > [...] > Hope this is helpful to some... Thank you for the info. I am trying to fix the issues you have seen. Fabrice. _

[Qemu-devel] [PATCH 1/3] Fix MIPS counter / compare interrupt

2005-08-15 Thread Ralf Baechle
The count / compare interrupt is wired to the CPU's internal interrupt controller, not a PIC. hw/mips_r4k.c| 10 -- target-mips/helper.c | 12 +++- 2 files changed, 19 insertions(+), 3 deletions(-) Index: qemu-mips/hw/mips_r4k.c ===

[Qemu-devel] Kqemu on x86_64 error

2005-08-15 Thread bmilde
Hi, I've perfektly managed to install windows 2000 with already included SP4 on qemu on my amd64 - but it fails to start with kqemu. So i get windows 2000 normal running with qemu but with kqemu i get the following error at startup: *** STOP: 0x0071 (0x, 0x, 0x, 0x00

[Qemu-devel] [PATCH 2/3] Add i8259 PIT to MIPS

2005-08-15 Thread Ralf Baechle
Add i8259 PIT to the MIPS configuration. Not that the counter / compare interrupt isn't nicer but the i8259 unfortunately a common peripheral in MIPS systems and so it's probably a piece of code want just in case. Makefile.target |4 ++-- hw/mips_r4k.c |3 +++ 2 files changed, 5 insert

[Qemu-devel] [PATCH 3/3] Fix interrupt masking

2005-08-15 Thread Ralf Baechle
Only take interrupts that are actually enabled in the CPU's interrupt mask in c0_status. cpu-exec.c |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: qemu-mips/cpu-exec.c === --- qemu-mips.orig/cpu-exec.c +++ qemu-mip