]> git.proxmox.com Git - qemu.git/blobdiff - hw/boards.h
user: Restore debug usage message for '-d ?' in user mode emulation
[qemu.git] / hw / boards.h
index 11acb89fce39273abad02ae5a6761887f723c870..716fd7b1a66627509ef87ef62a3b49537539d004 100644 (file)
@@ -14,12 +14,21 @@ typedef void QEMUMachineInitFunc(ram_addr_t ram_size,
 
 typedef struct QEMUMachine {
     const char *name;
+    const char *alias;
     const char *desc;
     QEMUMachineInitFunc *init;
     int use_scsi;
     int max_cpus;
+    unsigned int no_serial:1,
+        no_parallel:1,
+        use_virtcon:1,
+        no_vga:1,
+        no_floppy:1,
+        no_cdrom:1,
+        no_sdcard:1;
     int is_default;
-    CompatProperty *compat_props;
+    const char *default_machine_opts;
+    GlobalProperty *compat_props;
     struct QEMUMachine *next;
 } QEMUMachine;