From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ij98U-0000R4-7X for qemu-devel@nongnu.org; Sat, 20 Oct 2007 03:52:42 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ij98T-0000Qc-TX for qemu-devel@nongnu.org; Sat, 20 Oct 2007 03:52:41 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ij98S-0000QV-NV for qemu-devel@nongnu.org; Sat, 20 Oct 2007 03:52:40 -0400 Received: from static-71-162-243-5.phlapa.fios.verizon.net ([71.162.243.5] helo=grelber.thyrsus.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ij98S-0008TT-Ma for qemu-devel@nongnu.org; Sat, 20 Oct 2007 03:52:40 -0400 From: Rob Landley Subject: Re: [Qemu-devel] I got a kernel booted under qemu-system-ppc ! Date: Sat, 20 Oct 2007 02:52:05 -0500 References: <200710181912.57825.rob@landley.net> <20071019151916.GA17481@hall.aurel32.net> In-Reply-To: <20071019151916.GA17481@hall.aurel32.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200710200252.06160.rob@landley.net> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Milton Miller , Aurelien Jarno On Friday 19 October 2007 10:19:16 am Aurelien Jarno wrote: > The small patch below fixes the IDE problem, but not the NE2000 ISA one. > Please apply. > > Index: hw/i8259.c > =================================================================== > RCS file: /sources/qemu/qemu/hw/i8259.c,v > retrieving revision 1.25 > diff -u -d -p -r1.25 i8259.c > --- hw/i8259.c 17 Sep 2007 08:09:46 -0000 1.25 > +++ hw/i8259.c 19 Oct 2007 15:17:22 -0000 > @@ -164,7 +164,7 @@ void pic_update_irq(PicState2 *s) > } > > /* all targets should do this rather than acking the IRQ in the cpu */ > -#if defined(TARGET_MIPS) > +#if defined(TARGET_MIPS) || defined(TARGET_PPC) > else { > qemu_irq_lower(s->parent_irq); > } Ack. This fixed it for me. Off to try the network one... Rob -- "One of my most productive days was throwing away 1000 lines of code." - Ken Thompson.