~linaro-maintainers/ubuntu/oneiric/xorg-server/pvr-omap4-fallback

« back to all changes in this revision

Viewing changes to debian/patches/111_armel-drv-fallbacks.patch

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington, Bryce Harrington, Chase Douglas
  • Date: 2011-03-31 23:58:07 UTC
  • Revision ID: james.westby@ubuntu.com-20110331235807-nv26c9su1xbp37mr
Tags: 2:1.10.0-0ubuntu3
[ Bryce Harrington ]
* patches/111_armel-drv-fallbacks.patch: Always fallback to -fbdev,
  not just when no other X driver matches. (Thanks jcristau)

[ Chase Douglas ]
* Fix jumpy cursor in XI 1.x applications.
  (LP: #736500)
  - Added 218_getValuatorEvents_cleanup.patch
  - Added 219_xi1_handle_noncontinuous_valuator_data.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
 static void
49
49
 listPossibleVideoDrivers(char *matches[], int nmatches)
50
50
 {
51
 
@@ -272,7 +300,18 @@
 
51
@@ -272,7 +300,15 @@
52
52
 #if !defined(__linux__) && defined(__sparc__)
53
53
        matches[i++] = xnfstrdup("wsfb");
54
54
 #else
59
59
+           matches[i++] = xnfstrdup("dovefb");
60
60
+        else if (test_sysfs_device("omapfb", "omapfb"))
61
61
+           matches[i++] = xnfstrdup("omapfb");
62
 
+        else
63
 
+           matches[i++] = xnfstrdup("fbdev");
64
 
+#else
 
62
+#endif /* defined(__linux__) && defined(__arm__) */
65
63
        matches[i++] = xnfstrdup("fbdev");
66
 
+#endif /* defined(__linux__) && defined(__arm__) */
67
64
 #endif
68
65
     }
69
66
 }