diff options
author | Thomas Huth <thuth@redhat.com> | 2023-05-10 20:46:21 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2023-05-22 09:39:15 +0200 |
commit | 01ecdaa40e0c14b99ae7e81b5bfce9b6bd6e167c (patch) | |
tree | c7fdaf6ddc72505ff7641970b31076ce5c737270 /include/hw/boards.h | |
parent | d563cc84cdc599c3fbd40b36d6b71411e008b039 (diff) | |
download | qemu-01ecdaa40e0c14b99ae7e81b5bfce9b6bd6e167c.zip qemu-01ecdaa40e0c14b99ae7e81b5bfce9b6bd6e167c.tar.gz qemu-01ecdaa40e0c14b99ae7e81b5bfce9b6bd6e167c.tar.bz2 |
hw: Move the default NIC machine class setting from the x86 to the generic one
We are going to re-use this setting for other targets, so let's
move this to the main MachineClass.
Message-Id: <20230512124033.502654-4-thuth@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include/hw/boards.h')
-rw-r--r-- | include/hw/boards.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/boards.h b/include/hw/boards.h index f4117fd..a385010 100644 --- a/include/hw/boards.h +++ b/include/hw/boards.h @@ -253,6 +253,7 @@ struct MachineClass { const char *default_machine_opts; const char *default_boot_order; const char *default_display; + const char *default_nic; GPtrArray *compat_props; const char *hw_version; ram_addr_t default_ram_size; |