From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M3m9v-0007Qw-PE for qemu-devel@nongnu.org; Tue, 12 May 2009 03:12:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M3m9r-0007Qk-52 for qemu-devel@nongnu.org; Tue, 12 May 2009 03:12:15 -0400 Received: from [199.232.76.173] (port=59378 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M3m9r-0007Qh-2a for qemu-devel@nongnu.org; Tue, 12 May 2009 03:12:11 -0400 Received: from mx20.gnu.org ([199.232.41.8]:44581) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1M3m9q-0007g0-KO for qemu-devel@nongnu.org; Tue, 12 May 2009 03:12:10 -0400 Received: from mx2.redhat.com ([66.187.237.31]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M3m9p-0003fM-1X for qemu-devel@nongnu.org; Tue, 12 May 2009 03:12:09 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n4C7C7c8022766 for ; Tue, 12 May 2009 03:12:07 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n4C7C61P003547 for ; Tue, 12 May 2009 03:12:06 -0400 Received: from localhost (vpn-6-21.fab.redhat.com [10.33.6.21]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n4C7C5Bg012392 for ; Tue, 12 May 2009 03:12:06 -0400 Date: Tue, 12 May 2009 08:12:05 +0100 From: "Richard W.M. Jones" Message-ID: <20090512071205.GA11597@amd.home.annexia.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="PEIAKu/WMn1b1Hv9" Content-Disposition: inline Subject: [Qemu-devel] [RESEND second time] [PATCH] Remove initrd warning message List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --PEIAKu/WMn1b1Hv9 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Signed-off-by: Richard W.M. Jones -- Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones virt-p2v converts physical machines to virtual machines. Boot with a live CD or over the network (PXE) and turn machines into Xen guests. http://et.redhat.com/~rjones/virt-p2v --PEIAKu/WMn1b1Hv9 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0001-Remove-initrd-warning-message.patch" >>From c91e49de8d66c008c0a23764c27e0b7906860c8e Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Sat, 25 Apr 2009 14:01:51 +0100 Subject: [PATCH] Remove -initrd warning message. --- hw/pc.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/hw/pc.c b/hw/pc.c index 6b46427..d41aed4 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -708,9 +708,6 @@ static void load_linux(target_phys_addr_t option_rom, initrd_size = get_file_size(fi); initrd_addr = (initrd_max-initrd_size) & ~4095; - fprintf(stderr, "qemu: loading initrd (%#x bytes) at 0x" TARGET_FMT_plx - "\n", initrd_size, initrd_addr); - if (!fread_targphys_ok(initrd_addr, initrd_size, fi)) { fprintf(stderr, "qemu: read error on initial ram disk '%s'\n", initrd_filename); -- 1.6.0.6 --PEIAKu/WMn1b1Hv9--