diff options
author | Ross Burton <ross.burton@intel.com> | 2018-06-18 11:05:46 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-21 09:34:40 +0100 |
commit | 55dfcf5808171d925024ee484316fd866996e216 (patch) | |
tree | aaf0c79c34c43b1b3e5485528b23539d5998fc4d /meta/recipes-graphics/xorg-driver/xf86-video-omapfb/0004-blacklist-tv-out.patch | |
parent | ebdaf83e01dc95581d632094fda14f9b9c795924 (diff) | |
download | poky-55dfcf5808171d925024ee484316fd866996e216.tar.gz |
xf86-video-omapfb: remove
We were shipping the Debian fork of the original code, but that has disappeared
now that Alioth is down. The driver didn't provide anything better than the
kernel and xserver's modesetting driver, so remove it.
(From OE-Core rev: 0e0b5e8abff3b0c30676bcfb76c60388ad2cfafe)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-driver/xf86-video-omapfb/0004-blacklist-tv-out.patch')
-rw-r--r-- | meta/recipes-graphics/xorg-driver/xf86-video-omapfb/0004-blacklist-tv-out.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/0004-blacklist-tv-out.patch b/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/0004-blacklist-tv-out.patch deleted file mode 100644 index b0ac9a44c8..0000000000 --- a/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/0004-blacklist-tv-out.patch +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | From cfa46b67f59115f6d8ef9414af60380749ff3eb3 Mon Sep 17 00:00:00 2001 | ||
2 | From: Koen Kooi <koen@dominion.thruhere.net> | ||
3 | Date: Wed, 26 Jan 2011 13:21:12 +0100 | ||
4 | Subject: [PATCH 4/6] blacklist tv out | ||
5 | |||
6 | The tv-out gets added last and the driver tries to reconfigure dvi to TV resolutions, which fails. so blacklist it | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | |||
10 | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> | ||
11 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
12 | --- | ||
13 | src/omapfb-output-dss.c | 4 ++++ | ||
14 | 1 file changed, 4 insertions(+) | ||
15 | |||
16 | diff --git a/src/omapfb-output-dss.c b/src/omapfb-output-dss.c | ||
17 | index 6cc52de..83cb711 100644 | ||
18 | --- a/src/omapfb-output-dss.c | ||
19 | +++ b/src/omapfb-output-dss.c | ||
20 | @@ -205,6 +205,10 @@ OMAPFBDSSOutputDetect (xf86OutputPtr output) | ||
21 | if(ofb->timings[idx][0] == '\0') | ||
22 | return XF86OutputStatusDisconnected; | ||
23 | |||
24 | + // Hack to disable the tv out | ||
25 | + if (strncmp(output->name, "tv", 2) == 0) | ||
26 | + return XF86OutputStatusDisconnected; | ||
27 | + | ||
28 | return XF86OutputStatusConnected; | ||
29 | } | ||
30 | |||
31 | -- | ||
32 | 1.8.0 | ||
33 | |||