From 0e879c25dc94bbd7c3fabcf1944de57350f5e68f Mon Sep 17 00:00:00 2001 From: Yu Ke Date: Tue, 25 Jan 2011 15:15:09 +0800 Subject: xf86-video-omapfb: upgrade to 044617665d6737f4909aab96 Also apply four patches from Koen to fix four issus: - The tv-out gets added last and the driver tries to reconfigure dvi to TV resolutions, which fails - The new DSS mode breaks XV, so force plain mode - Picture is garbled after switching resolutions - Virtual size too big CC: Koen Kooi Signed-off-by: Yu Ke --- .../xf86-video-omapfb/omap-blacklist-tv-out.patch | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-blacklist-tv-out.patch (limited to 'meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-blacklist-tv-out.patch') diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-blacklist-tv-out.patch b/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-blacklist-tv-out.patch new file mode 100644 index 0000000000..506e174cb1 --- /dev/null +++ b/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-blacklist-tv-out.patch @@ -0,0 +1,25 @@ +commit 05efb061f1945425d214ff6b6050883e6d8633bf +Author: Koen Kooi +Date: Wed Jan 26 13:21:12 2011 +0100 + + blacklist tv out + + The tv-out gets added last and the driver tries to reconfigure dvi to TV resolutions, which fails. so blacklist it + + Signed-off-by: Koen Kooi + +diff --git a/src/omapfb-output-dss.c b/src/omapfb-output-dss.c +index 6cc52de..83cb711 100644 +--- a/src/omapfb-output-dss.c ++++ b/src/omapfb-output-dss.c +@@ -205,6 +205,10 @@ OMAPFBDSSOutputDetect (xf86OutputPtr output) + if(ofb->timings[idx][0] == '\0') + return XF86OutputStatusDisconnected; + ++ // Hack to disable the tv out ++ if (strncmp(output->name, "tv", 2) == 0) ++ return XF86OutputStatusDisconnected; ++ + return XF86OutputStatusConnected; + } + -- cgit v1.2.3-54-g00ecf