15 lines
514 B
Diff
15 lines
514 B
Diff
|
Index: xorg-server-1.6.3/hw/xfree86/common/xf86AutoConfig.c
|
||
|
===================================================================
|
||
|
--- xorg-server-1.6.3.orig/hw/xfree86/common/xf86AutoConfig.c
|
||
|
+++ xorg-server-1.6.3/hw/xfree86/common/xf86AutoConfig.c
|
||
|
@@ -545,7 +545,8 @@ listPossibleVideoDrivers(char *matches[]
|
||
|
#if !defined(__linux__) && defined(__sparc__)
|
||
|
matches[i++] = xnfstrdup("wsfb");
|
||
|
#else
|
||
|
- matches[i++] = xnfstrdup("vesa");
|
||
|
+ if (geteuid() == 0)
|
||
|
+ matches[i++] = xnfstrdup("vesa");
|
||
|
#endif
|
||
|
}
|
||
|
}
|