--- hw/xfree86/common/xf86AutoConfig.c.orig 2009-06-04 15:36:33.000000000 +0000 +++ hw/xfree86/common/xf86AutoConfig.c 2009-06-04 15:38:22.000000000 +0000 @@ -521,7 +524,7 @@ listPossibleVideoDrivers(char *matches[] /* Fallback to platform default hardware */ if (i < (nmatches - 1)) { #if defined(__i386__) || defined(__amd64__) || defined(__hurd__) - matches[i++] = xnfstrdup("vesa"); + matches[i++] = xnfstrdup("fbdev"); #elif defined(__sparc__) && !defined(sun) matches[i++] = xnfstrdup("sunffb"); #endif @@ -532,7 +535,7 @@ listPossibleVideoDrivers(char *matches[] #if !defined(__linux__) && defined(__sparc__) matches[i++] = xnfstrdup("wsfb"); #else - matches[i++] = xnfstrdup("fbdev"); + matches[i++] = xnfstrdup("vesa"); #endif } }