diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-08-09 12:35:01 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-08-12 09:31:14 -0500 |
commit | a904410af5f1ed6ff031e9e4119ca2f5d99647ce (patch) | |
tree | a1ac99269bbe1518802d0e723640688c79ae9928 /hw/i386 | |
parent | 133bb095acf536f85e7e57821596c8c844aaa583 (diff) |
pc_sysfw: remove the rom_only property
With the new semantics of pc_sysfw (no -pflash implies "old-style" ROM setup,
-pflash implies "new-style" ROM setup), there is no need anymore for a compat
property. Old machines simply will never use -pflash, and thus will always
use old-style setup.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 1376069702-22330-3-git-send-email-aliguori@us.ibm.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/i386')
-rw-r--r-- | hw/i386/pc_piix.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c index 95c45b8e25..cd88df9b9d 100644 --- a/hw/i386/pc_piix.c +++ b/hw/i386/pc_piix.c @@ -496,10 +496,6 @@ static QEMUMachine pc_machine_v1_1 = { #define PC_COMPAT_1_0 \ PC_COMPAT_1_1,\ {\ - .driver = "pc-sysfw",\ - .property = "rom_only",\ - .value = stringify(1),\ - }, {\ .driver = TYPE_ISA_FDC,\ .property = "check_media_rate",\ .value = "off",\ @@ -748,11 +744,6 @@ static QEMUMachine isapc_machine = { .compat_props = (GlobalProperty[]) { { .driver = "pc-sysfw", - .property = "rom_only", - .value = stringify(1), - }, - { - .driver = "pc-sysfw", .property = "isapc_ram_fw", .value = stringify(1), }, |