qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] Support diskless PC


From: Stefan Weil
Subject: [Qemu-devel] [PATCH] Support diskless PC
Date: Fri, 06 Feb 2009 23:13:29 +0100
User-agent: Mozilla-Thunderbird 2.0.0.19 (X11/20090103)

Hello,

there is no reason why Qemu should not be able to emulate
a diskless PC. This patch allows this configuration
without tricks like dummy disks.

Regards
Stefan Weil


There is no reason why Qemu should not be able to emulate
a diskless PC. So we support it.

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]