Revision 94909d9f vl.c

b/vl.c
216 216
int cirrus_vga_enabled = 1;
217 217
int std_vga_enabled = 0;
218 218
int vmsvga_enabled = 0;
219
int xenfb_enabled = 0;
219 220
#ifdef TARGET_SPARC
220 221
int graphic_width = 1024;
221 222
int graphic_height = 768;
......
4225 4226
    cirrus_vga_enabled = 0;
4226 4227
    std_vga_enabled = 0;
4227 4228
    vmsvga_enabled = 0;
4229
    xenfb_enabled = 0;
4228 4230
    if (strstart(p, "std", &opts)) {
4229 4231
        std_vga_enabled = 1;
4230 4232
    } else if (strstart(p, "cirrus", &opts)) {
4231 4233
        cirrus_vga_enabled = 1;
4232 4234
    } else if (strstart(p, "vmware", &opts)) {
4233 4235
        vmsvga_enabled = 1;
4236
    } else if (strstart(p, "xenfb", &opts)) {
4237
        xenfb_enabled = 1;
4234 4238
    } else if (!strstart(p, "none", &opts)) {
4235 4239
    invalid_vga:
4236 4240
        fprintf(stderr, "Unknown vga type: %s\n", p);

Also available in: Unified diff