Remove all mention of the vga driver from the config logic.
This commit is contained in:
		
							parent
							
								
									056a2ce02c
								
							
						
					
					
						commit
						95df04b744
					
				| 
						 | 
				
			
			@ -82,7 +82,6 @@ static int builtinLines = 0;
 | 
			
		|||
static const char *deviceList[] = {
 | 
			
		||||
	"fbdev",
 | 
			
		||||
	"vesa",
 | 
			
		||||
	"vga",
 | 
			
		||||
	NULL
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -450,8 +449,6 @@ chooseVideoDriver(void)
 | 
			
		|||
	if (chosen_driver == NULL) {
 | 
			
		||||
#if defined  __i386__ || defined __amd64__ || defined __hurd__
 | 
			
		||||
	    chosen_driver = "vesa";
 | 
			
		||||
#elif defined __alpha__
 | 
			
		||||
	    chosen_driver = "vga";
 | 
			
		||||
#elif defined __sparc__
 | 
			
		||||
	    chosen_driver = "sunffb";
 | 
			
		||||
#else
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -494,7 +494,7 @@ xf86InputDriverlistFromConfig()
 | 
			
		|||
static void
 | 
			
		||||
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 *x;
 | 
			
		||||
    char **ati, **atimisc;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue