- enable vga extension "vbe" by default if present. Cirrus support must be

enabled with the vga extension option
This commit is contained in:
Volker Ruppert 2005-03-08 21:37:00 +00:00
parent 002853978c
commit 4b645a58a5

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: config.cc,v 1.31 2005-03-06 21:23:38 sshwarts Exp $
// $Id: config.cc,v 1.32 2005-03-08 21:37:00 vruppert Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002 MandrakeSoft S.A.
@ -1140,7 +1140,12 @@ void bx_init_options ()
bx_options.Ovga_extension = new bx_param_string_c (BXP_VGA_EXTENSION,
"VGA Extension",
"Name of the VGA extension",
(BX_SUPPORT_CLGD54XX==1)?"cirrus":"vbe", BX_PATHNAME_LEN);
"none", BX_PATHNAME_LEN);
#if BX_SUPPORT_VBE
bx_options.Ovga_extension->set("vbe");
#elif BX_SUPPORT_CLGD54XX
bx_options.Ovga_extension->set("cirrus");
#endif
bx_options.Omouse_enabled = new bx_param_bool_c (BXP_MOUSE_ENABLED,
"Enable the mouse",