Bug#741509: libdrm: please include exynos and freedreno DRM

2014-03-13 Thread Fathi Boudra
Source: libdrm
Severity: wishlist

Dear Maintainer,

Exynos and freedreno DRM aren't enabled during libdrm build.
Please could you enable Exynos and freedreno APIs?

I packaged the X.Org driver side and only need libdrm support is missing
now.

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.10-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140313091205.11879.70342.reportbug@dc7700p



Tryd 3, Chegou a Nova Versão da Melhor Plataforma de Negociação do Mercado.

2014-03-13 Thread UltimoInstante Publicidade




Você está recebendo esta mensagem porque se cadastrou em nosso site com o email 
debian-x@lists.debian.org.

Clique no link abaixo para cancelar sua inscrição:
http://uinewsletter.com.br/box.php?nl=7&c=1026&m=1023&s=02081772b04b3b32c9657ce76f5a4b73&funcml=unsub2

mesa: Changes to 'ubuntu'

2014-03-13 Thread Maarten Lankhorst
 debian/changelog |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 56acb595ae3d3b00eea82130b0b29f0698a2f9bb
Author: Maarten Lankhorst 
Date:   Thu Mar 6 10:29:01 2014 +0100

release to trusty

diff --git a/debian/changelog b/debian/changelog
index bac3357..4bfba3a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-mesa (10.1.0~rc3-0ubuntu3) UNRELEASED; urgency=low
+mesa (10.1.0~rc3-0ubuntu3) trusty; urgency=medium
 
   * Add --dynamic-list to undo damage from -Bsymbolic-functions.
 - This fixes vdpau interop properly.
 
- -- Maarten Lankhorst   Wed, 05 Mar 2014 
14:19:17 +0100
+ -- Maarten Lankhorst   Thu, 06 Mar 2014 
10:28:47 +0100
 
 mesa (10.1.0~rc3-0ubuntu2) trusty; urgency=medium
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wo55p-0002qe...@moszumanska.debian.org



xorg-server: Changes to 'ubuntu'

2014-03-13 Thread Maarten Lankhorst
 debian/changelog|6 ++
 debian/patches/fix-detach-gpu.patch |   89 
 debian/patches/series   |1 
 3 files changed, 96 insertions(+)

New commits:
commit bde4ef51bfb29021ff8e979cc14b55fdaab34da8
Author: Maarten Lankhorst 
Date:   Thu Mar 13 13:11:01 2014 +0100

release to trusty

diff --git a/debian/changelog b/debian/changelog
index 65a3122..6d3777d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-xorg-server (2:1.15.0-1ubuntu7) UNRELEASED; urgency=medium
+xorg-server (2:1.15.0-1ubuntu7) trusty; urgency=medium
 
   * Fix crash in RRCrtcDetachScanoutPixmap. (LP: #1280743)
 
- -- Maarten Lankhorst   Thu, 13 Mar 2014 
12:32:19 +0100
+ -- Maarten Lankhorst   Thu, 13 Mar 2014 
13:10:52 +0100
 
 xorg-server (2:1.15.0-1ubuntu6) trusty; urgency=low
 

commit 353e45d377174636c074491db699eb8419644bf5
Author: Maarten Lankhorst 
Date:   Thu Mar 13 13:10:32 2014 +0100

Fix crash in RRCrtcDetachScanoutPixmap. (LP: #1280743)

diff --git a/debian/changelog b/debian/changelog
index ce8e09d..65a3122 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xorg-server (2:1.15.0-1ubuntu7) UNRELEASED; urgency=medium
+
+  * Fix crash in RRCrtcDetachScanoutPixmap. (LP: #1280743)
+
+ -- Maarten Lankhorst   Thu, 13 Mar 2014 
12:32:19 +0100
+
 xorg-server (2:1.15.0-1ubuntu6) trusty; urgency=low
 
   * Add a small patch to hopefully fix FTBFS on ppc64el.
diff --git a/debian/patches/fix-detach-gpu.patch 
b/debian/patches/fix-detach-gpu.patch
new file mode 100644
index 000..cba33cf
--- /dev/null
+++ b/debian/patches/fix-detach-gpu.patch
@@ -0,0 +1,89 @@
+--- a/hw/xfree86/modes/xf86RandR12.c
 b/hw/xfree86/modes/xf86RandR12.c
+@@ -1800,7 +1800,8 @@
+ ScreenPtr cmScreen = pScreen->current_master;
+ 
+ xf86DetachOutputGPU(pScreen);
+-AttachUnboundGPU(cmScreen, pScreen);
++if (!pScreen->current_master)
++AttachUnboundGPU(cmScreen, pScreen);
+ }
+ provider->output_source = NULL;
+ return TRUE;
+@@ -1811,7 +1812,8 @@
+ 
+ SetRootClip(source_provider->pScreen, FALSE);
+ 
+-DetachUnboundGPU(pScreen);
++if (!pScreen->current_master)
++DetachUnboundGPU(pScreen);
+ AttachOutputGPU(source_provider->pScreen, pScreen);
+ 
+ provider->output_source = source_provider;
+@@ -1828,7 +1830,8 @@
+ if (provider->offload_sink) {
+ ScreenPtr cmScreen = pScreen->current_master;
+ xf86DetachOutputGPU(pScreen);
+-AttachUnboundGPU(cmScreen, pScreen);
++if (!pScreen->current_master)
++AttachUnboundGPU(cmScreen, pScreen);
+ }
+ 
+ provider->offload_sink = NULL;
+@@ -1838,7 +1841,8 @@
+ if (provider->offload_sink == sink_provider)
+ return TRUE;
+ 
+-DetachUnboundGPU(pScreen);
++if (!pScreen->current_master)
++DetachUnboundGPU(pScreen);
+ AttachOffloadGPU(sink_provider->pScreen, pScreen);
+ 
+ provider->offload_sink = sink_provider;
+@@ -1917,12 +1921,14 @@
+ config->randr_provider->offload_sink = NULL;
+ RRSetChanged(screen);
+ }
+-else if (config->randr_provider->output_source) {
++
++if (config->randr_provider->output_source) {
+ xf86DetachOutputGPU(screen);
+ config->randr_provider->output_source = NULL;
+ RRSetChanged(screen);
+ }
+-else if (screen->current_master)
++
++if (screen->current_master)
+ DetachUnboundGPU(screen);
+ }
+ config->randr_provider = NULL;
+--- a/dix/dispatch.c
 b/dix/dispatch.c
+@@ -3911,6 +3911,8 @@ AttachUnboundGPU(ScreenPtr pScreen, ScreenPtr new)
+ assert(new->isGPU);
+ assert(!new->current_master);
+ xorg_list_add(&new->unattached_head, &pScreen->unattached_list);
++xorg_list_init(&new->offload_head);
++xorg_list_init(&new->output_head);
+ new->current_master = pScreen;
+ }
+ 
+@@ -3937,7 +3937,8 @@
+ {
+ assert(slave->isGPU);
+ xorg_list_del(&slave->output_head);
+-slave->current_master = NULL;
++if (xorg_list_is_empty(&slave->offload_head))
++slave->current_master = NULL;
+ }
+ 
+ void
+@@ -3953,6 +3954,7 @@
+ {
+ assert(slave->isGPU);
+ xorg_list_del(&slave->offload_head);
+-slave->current_master = NULL;
++if (xorg_list_is_empty(&slave->output_head))
++slave->current_master = NULL;
+ }
+ 
diff --git a/debian/patches/series b/debian/patches/series
index f033d85..c365dce 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -44,6 +44,7 @@ xrandr-rroutputchanged-main.patch
 rrcrtc-brackets-are-hard.patch
 config-add-no-removal.patch
 xf86-ignore-conflicting-rr-caps.patch
+fix-detach-gpu.patch
 
 pixman-validate.patch
 fix-ftbfs-ppc64el.patch


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas.

Processed: Bug#734154: evdev regression: touchpad cursor not working

2014-03-13 Thread Debian Bug Tracking System
Processing control commands:

> retitle -1 evdev regression: touchpad cursor not working
Bug #734154 [debian-installer] debian-installer: touchpad driver missing
Changed Bug title to 'evdev regression: touchpad cursor not working' from 
'debian-installer: touchpad driver missing'
> tags -1 d-i
Bug #734154 [debian-installer] evdev regression: touchpad cursor not working
Added tag(s) d-i.
> reassign -1 xserver-xorg-input-evdev
Bug #734154 [debian-installer] evdev regression: touchpad cursor not working
Bug reassigned from package 'debian-installer' to 'xserver-xorg-input-evdev'.
Ignoring request to alter found versions of bug #734154 to the same values 
previously set
Ignoring request to alter fixed versions of bug #734154 to the same values 
previously set

-- 
734154: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734154
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b734154.13947286905754.transcr...@bugs.debian.org