qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] Re: [PATCH] Support diskless PC


From: Anthony Liguori
Subject: Re: [Qemu-devel] Re: [PATCH] Support diskless PC
Date: Fri, 06 Feb 2009 17:46:14 -0600
User-agent: Thunderbird 2.0.0.19 (X11/20090105)

Jan Kiszka wrote:
Stefan Weil wrote:
There is no reason why Qemu should not be able to emulate
a diskless PC. So we support it.

Yeah, true!

Acked-by: Jan Kiszka <address@hidden>

This doesn't fix the old -hda /dev/null hacks when using -kernel. That's unnecessary even without this patch.

Regards,

Anthony Liguori

Signed-off-by: Stefan Weil <address@hidden>

Index: trunk/hw/pc.c
===================================================================
--- trunk.orig/hw/pc.c  2009-02-06 23:08:30.000000000 +0100
+++ trunk/hw/pc.c       2009-02-06 23:08:51.000000000 +0100
@@ -1147,6 +1147,7 @@
     .desc = "Standard PC",
     .init = pc_init_pci,
     .ram_require = VGA_RAM_SIZE + PC_MAX_BIOS_SIZE,
+    .nodisk_ok = 1,
     .max_cpus = 255,
 };
@@ -1155,5 +1156,6 @@
     .desc = "ISA-only PC",
     .init = pc_init_isa,
     .ram_require = VGA_RAM_SIZE + PC_MAX_BIOS_SIZE,
+    .nodisk_ok = 1,
     .max_cpus = 1,
 };







reply via email to

[Prev in Thread] Current Thread [Next in Thread]