Revision 1f04275e vl.c

b/vl.c
130 130
int pci_enabled = 0;
131 131
int prep_enabled = 0;
132 132
int rtc_utc = 1;
133
int cirrus_vga_enabled = 0;
133 134

  
134 135
/***********************************************************/
135 136
/* x86 ISA bus support */
......
2053 2054
    QEMU_OPTION_pci,
2054 2055
    QEMU_OPTION_prep,
2055 2056
    QEMU_OPTION_localtime,
2057
    QEMU_OPTION_cirrusvga,
2056 2058
};
2057 2059

  
2058 2060
typedef struct QEMUOption {
......
2097 2099
    { "hdachs", HAS_ARG, QEMU_OPTION_hdachs },
2098 2100
    { "L", HAS_ARG, QEMU_OPTION_L },
2099 2101
    { "no-code-copy", 0, QEMU_OPTION_no_code_copy },
2100

  
2101
    /* temporary options */
2102
    { "pci", 0, QEMU_OPTION_pci },
2103 2102
#ifdef TARGET_PPC
2104 2103
    { "prep", 0, QEMU_OPTION_prep },
2105 2104
#endif
2106 2105
    { "localtime", 0, QEMU_OPTION_localtime },
2106

  
2107
    /* temporary options */
2108
    { "pci", 0, QEMU_OPTION_pci },
2109
    { "cirrusvga", 0, QEMU_OPTION_cirrusvga },
2107 2110
    { NULL },
2108 2111
};
2109 2112

  
......
2383 2386
            case QEMU_OPTION_localtime:
2384 2387
                rtc_utc = 0;
2385 2388
                break;
2389
            case QEMU_OPTION_cirrusvga:
2390
                cirrus_vga_enabled = 1;
2391
                break;
2386 2392
            }
2387 2393
        }
2388 2394
    }

Also available in: Unified diff