Remove all mention of the vga driver from the config logic.

This commit is contained in:
Adam Jackson 2008-03-04 10:59:24 -05:00
parent 056a2ce02c
commit 95df04b744
2 changed files with 1 additions and 4 deletions

View File

@ -82,7 +82,6 @@ static int builtinLines = 0;
static const char *deviceList[] = { static const char *deviceList[] = {
"fbdev", "fbdev",
"vesa", "vesa",
"vga",
NULL NULL
}; };
@ -450,8 +449,6 @@ chooseVideoDriver(void)
if (chosen_driver == NULL) { if (chosen_driver == NULL) {
#if defined __i386__ || defined __amd64__ || defined __hurd__ #if defined __i386__ || defined __amd64__ || defined __hurd__
chosen_driver = "vesa"; chosen_driver = "vesa";
#elif defined __alpha__
chosen_driver = "vga";
#elif defined __sparc__ #elif defined __sparc__
chosen_driver = "sunffb"; chosen_driver = "sunffb";
#else #else

View File

@ -494,7 +494,7 @@ xf86InputDriverlistFromConfig()
static void static void
fixup_video_driver_list(char **drivers) fixup_video_driver_list(char **drivers)
{ {
static const char *fallback[5] = { "vga", "vesa", "fbdev", "wsfb", NULL }; static const char *fallback[4] = { "vesa", "fbdev", "wsfb", NULL };
char **end, **drv; char **end, **drv;
char *x; char *x;
char **ati, **atimisc; char **ati, **atimisc;