diff options
author | aliguori | 2009-03-28 18:28:58 +0100 |
---|---|---|
committer | aliguori | 2009-03-28 18:28:58 +0100 |
commit | 6295e564f767f200302275e8c5aa9f5b3bc67164 (patch) | |
tree | 56f9f15e463e94b7f59fd90c3f03abcab85908b3 /hw/sun4u.c | |
parent | musicpal: Fix regression caused by 6839 (Jan Kiszka) (diff) | |
download | qemu-6295e564f767f200302275e8c5aa9f5b3bc67164.tar.gz qemu-6295e564f767f200302275e8c5aa9f5b3bc67164.tar.xz qemu-6295e564f767f200302275e8c5aa9f5b3bc67164.zip |
Remove nodisk_ok machine feature (Jan Kiszka)
All archs have some kind of firmware to load and can be fine with it
already. So there is not much use in enforcing the presence of a disk.
If the system setup requires one, the user will notice it anyway once
the firmware/bios fails to boot from it.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6899 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/sun4u.c')
-rw-r--r-- | hw/sun4u.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/hw/sun4u.c b/hw/sun4u.c index a8c4347e12..a72dea8378 100644 --- a/hw/sun4u.c +++ b/hw/sun4u.c @@ -597,7 +597,6 @@ QEMUMachine sun4u_machine = { .desc = "Sun4u platform", .init = sun4u_init, .ram_require = PROM_SIZE_MAX + VGA_RAM_SIZE, - .nodisk_ok = 1, .max_cpus = 1, // XXX for now }; @@ -606,7 +605,6 @@ QEMUMachine sun4v_machine = { .desc = "Sun4v platform", .init = sun4v_init, .ram_require = PROM_SIZE_MAX + VGA_RAM_SIZE, - .nodisk_ok = 1, .max_cpus = 1, // XXX for now }; @@ -615,6 +613,5 @@ QEMUMachine niagara_machine = { .desc = "Sun4v platform, Niagara", .init = niagara_init, .ram_require = PROM_SIZE_MAX + VGA_RAM_SIZE, - .nodisk_ok = 1, .max_cpus = 1, // XXX for now }; |