qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Laurent Vivier <Laurent.Vivier@bull.net>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] qemu monitor.c sysemu.h vl.c hw/esp.c hw/gumsti...
Date: Sun, 02 Dec 2007 20:12:28 +0100	[thread overview]
Message-ID: <1196622748.4790.2.camel@frecb07144> (raw)
In-Reply-To: <E1IygnO-0004k4-Ql@localhost.localdomain>

[-- Attachment #1: Type: text/plain, Size: 4033 bytes --]

Hi,

thank you for the commit.

I've just found a little mistake in my patch for mips_pica61.c:

Index: qemu/hw/mips_pica61.c
===================================================================
--- qemu.orig/hw/mips_pica61.c  2007-12-02 20:04:11.000000000 +0100
+++ qemu/hw/mips_pica61.c       2007-12-02 20:05:19.000000000 +0100
@@ -172,8 +172,9 @@ void mips_pica61_init (int ram_size, int
     for (i = 0; i < MAX_FD; i++) {
         index = drive_get_index(IF_FLOPPY, 0, i);
         if (index == -1)
-            continue;
-        fd[i] = drives_table[index].bdrv;
+            fd[i] = NULL;
+        else
+            fd[i] = drives_table[index].bdrv;
     }
     fdctrl_init(i8259[1], 1, 1, 0x80003000, fd);
     for(i = 0; i < MAX_SERIAL_PORTS; i++) {


Please, apply.

Thank you,
Laurent

Le dimanche 02 décembre 2007 à 04:51 +0000, Thiemo Seufer a écrit :
> CVSROOT:	/sources/qemu
> Module name:	qemu
> Changes by:	Thiemo Seufer <ths>	07/12/02 04:51:10
> 
> Modified files:
> 	.              : monitor.c sysemu.h vl.c 
> 	hw             : esp.c gumstix.c integratorcp.c lsi53c895a.c 
> 	                 mainstone.c mips_malta.c mips_pica61.c 
> 	                 mips_r4k.c nand.c omap.c pc.c pci.h 
> 	                 ppc405_boards.c ppc_chrp.c ppc_oldworld.c 
> 	                 ppc_prep.c pxa2xx.c realview.c spitz.c 
> 	                 stellaris.c sun4m.c sun4m.h sun4u.c 
> 	                 versatilepb.c 
> 
> Log message:
> 	Add -drive parameter, by Laurent Vivier.
> 
> CVSWeb URLs:
> http://cvs.savannah.gnu.org/viewcvs/qemu/monitor.c?cvsroot=qemu&r1=1.88&r2=1.89
> http://cvs.savannah.gnu.org/viewcvs/qemu/sysemu.h?cvsroot=qemu&r1=1.1&r2=1.2
> http://cvs.savannah.gnu.org/viewcvs/qemu/vl.c?cvsroot=qemu&r1=1.373&r2=1.374
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/esp.c?cvsroot=qemu&r1=1.29&r2=1.30
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/gumstix.c?cvsroot=qemu&r1=1.6&r2=1.7
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/integratorcp.c?cvsroot=qemu&r1=1.26&r2=1.27
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/lsi53c895a.c?cvsroot=qemu&r1=1.11&r2=1.12
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/mainstone.c?cvsroot=qemu&r1=1.3&r2=1.4
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/mips_malta.c?cvsroot=qemu&r1=1.52&r2=1.53
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/mips_pica61.c?cvsroot=qemu&r1=1.14&r2=1.15
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/mips_r4k.c?cvsroot=qemu&r1=1.55&r2=1.56
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/nand.c?cvsroot=qemu&r1=1.5&r2=1.6
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/omap.c?cvsroot=qemu&r1=1.26&r2=1.27
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pc.c?cvsroot=qemu&r1=1.95&r2=1.96
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pci.h?cvsroot=qemu&r1=1.1&r2=1.2
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/ppc405_boards.c?cvsroot=qemu&r1=1.10&r2=1.11
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/ppc_chrp.c?cvsroot=qemu&r1=1.54&r2=1.55
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/ppc_oldworld.c?cvsroot=qemu&r1=1.12&r2=1.13
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/ppc_prep.c?cvsroot=qemu&r1=1.58&r2=1.59
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pxa2xx.c?cvsroot=qemu&r1=1.23&r2=1.24
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/realview.c?cvsroot=qemu&r1=1.16&r2=1.17
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/spitz.c?cvsroot=qemu&r1=1.18&r2=1.19
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/stellaris.c?cvsroot=qemu&r1=1.9&r2=1.10
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/sun4m.c?cvsroot=qemu&r1=1.65&r2=1.66
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/sun4m.h?cvsroot=qemu&r1=1.1&r2=1.2
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/sun4u.c?cvsroot=qemu&r1=1.29&r2=1.30
> http://cvs.savannah.gnu.org/viewcvs/qemu/hw/versatilepb.c?cvsroot=qemu&r1=1.22&r2=1.23
> 
> 
-- 
------------- Laurent.Vivier@bull.net  --------------
       "Any sufficiently advanced technology is
  indistinguishable from magic." - Arthur C. Clarke

[-- Attachment #2: Ceci est une partie de message numériquement signée --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

      reply	other threads:[~2007-12-02 19:13 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-12-02  4:51 [Qemu-devel] qemu monitor.c sysemu.h vl.c hw/esp.c hw/gumsti Thiemo Seufer
2007-12-02 19:12 ` Laurent Vivier [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1196622748.4790.2.camel@frecb07144 \
    --to=laurent.vivier@bull.net \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).