Accepting request 141007 from home:fcrozat:branches:X11:XOrg

- Update N_autoconfig_fallback_fbdev_first.diff to ensure
  modesetting driver is used before fbdev.

(this is needed because fbdev doesn't work properly under kvm / qemu and modesetting driver should be prefer to other fallback anyway).

OBS-URL: https://build.opensuse.org/request/show/141007
OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xorg-x11-server?expand=0&rev=420
This commit is contained in:
Stefan Dirsch 2012-12-07 10:51:17 +00:00 committed by Git OBS Bridge
parent 0a9f43021e
commit 44d02ed5df
2 changed files with 23 additions and 2 deletions

View File

@ -2,7 +2,14 @@ Index: hw/xfree86/common/xf86AutoConfig.c
===================================================================
--- hw/xfree86/common/xf86AutoConfig.c.orig
+++ hw/xfree86/common/xf86AutoConfig.c
@@ -264,7 +264,7 @@ listPossibleVideoDrivers(char *matches[]
@@ -267,26 +267,26 @@ listPossibleVideoDrivers(char *matches[]
if (i < (nmatches - 1))
i = xf86PciMatchDriver(matches, nmatches);
#endif
+
+#if defined(__linux__)
+ matches[i++] = xnfstrdup("modesetting");
+#endif
/* Fallback to platform default hardware */
if (i < (nmatches - 1)) {
#if defined(__i386__) || defined(__amd64__) || defined(__hurd__)
@ -11,7 +18,15 @@ Index: hw/xfree86/common/xf86AutoConfig.c
#elif defined(__sparc__) && !defined(sun)
matches[i++] = xnfstrdup("sunffb");
#endif
@@ -276,7 +276,7 @@ listPossibleVideoDrivers(char *matches[]
}
-#if defined(__linux__)
- matches[i++] = xnfstrdup("modesetting");
-#endif
-
#if !defined(sun)
/* Fallback to platform default frame buffer driver */
if (i < (nmatches - 1)) {
#if !defined(__linux__) && defined(__sparc__)
matches[i++] = xnfstrdup("wsfb");
#else

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Nov 12 17:27:21 UTC 2012 - fcrozat@suse.com
- Update N_autoconfig_fallback_fbdev_first.diff to ensure
modesetting driver is used before fbdev.
-------------------------------------------------------------------
Tue Oct 30 10:45:57 UTC 2012 - sndirsch@suse.com