xserver-xorg-video-nouveau: Changes to 'ubuntu'

2013-03-27 Thread Maarten Lankhorst
debian/changelog|7 +++ debian/patches/102-fixup-close.diff | 77 debian/patches/series |1 3 files changed, 85 insertions(+) New commits: commit 0fd415f5c89966c3ae8f03cecb9f429570caadea Author: Maarten Lankhorst

xorg-server: Changes to 'ubuntu'

2013-03-27 Thread Maarten Lankhorst
debian/changelog |9 + debian/patches/series |2 + debian/patches/xephyr-glx-register.patch | 39 ++ debian/patches/xfree86-no-xv-for-gpuscreens.patch | 36 4 files

xserver-xorg-video-ati: Changes to 'ubuntu'

2013-03-27 Thread Maarten Lankhorst
debian/changelog |4 +++- debian/patches/drmmode-fail.patch | 31 +++ debian/patches/series |1 + 3 files changed, 35 insertions(+), 1 deletion(-) New commits: commit 7b4d292aa17cb8a338c88224d65371c15218512b Author: Maarten

libdrm: Changes to 'debian-experimental'

2013-03-27 Thread Maarten Lankhorst
.gitignore|1 ChangeLog | 209 +++ Makefile.am |6 configure.ac | 28 + debian/changelog |2 exynos/Makefile.am|2 exynos/exynos_drm.h

libdrm: Changes to 'ubuntu'

2013-03-27 Thread Maarten Lankhorst
.gitignore|1 ChangeLog | 209 +++ Makefile.am |6 configure.ac | 28 + debian/changelog | 26 - exynos/Makefile.am|2 exynos/exynos_drm.h

xserver-xorg-video-modesetting: Changes to 'ubuntu'

2013-03-27 Thread Maarten Lankhorst
autogen.sh|4 +- configure.ac |2 - debian/changelog | 12 -- debian/patches/series |2 - src/driver.c | 30 +++- src/drmmode_display.c | 91 +- 6 files changed, 125 insertions(+),

xserver-xorg-video-modesetting: Changes to 'debian-experimental'

2013-03-27 Thread Maarten Lankhorst
autogen.sh|4 +- configure.ac |2 - debian/changelog |2 - src/driver.c | 30 +++- src/drmmode_display.c | 91 +- 5 files changed, 116 insertions(+), 13 deletions(-) New commits: commit

xserver-xorg-video-modesetting: Changes to 'ubuntu'

2013-03-27 Thread Maarten Lankhorst
debian/changelog |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 165e0f5a31028383fec17ff2ce05e2b6efc40112 Author: Maarten Lankhorst maarten.lankho...@canonical.com Date: Wed Mar 27 13:45:27 2013 +0100 While arguably precise would benefit from a bump in

xserver-xorg-video-nouveau: Changes to 'ubuntu'

2013-03-27 Thread Maarten Lankhorst
ChangeLog | 125 configure.ac |2 debian/changelog | 19 + debian/patches/101-git-a80785f792.diff | 477 - debian/patches/102-fixup-close.diff| 77 -

xserver-xorg-video-nouveau: Changes to 'debian-experimental'

2013-03-27 Thread Maarten Lankhorst
ChangeLog | 125 ++ configure.ac |2 debian/changelog |6 + src/drmmode_display.c | 57 ++ src/nouveau_dri2.c| 18 +++ src/nouveau_exa.c |5 src/nv30_exa.c| 272

Bug#646686: [PATCH 01/18] debian/rules: Enable kdrive-mouse and kdrive-evdev on Linux

2013-03-27 Thread Geert Uytterhoeven
It seems the auto-detection for Linux in configure doesn't work anymore. As a consequence, none of the KDrive input drivers are enabled, and mouse and keyboard don't work. build-main/include/kdrive-config.h: /* #undef KDRIVE_KBD */ /* #undef KDRIVE_MOUSE */ /* #undef KDRIVE_EVDEV */ Explicitly

[PATCH 00/18] Xfbdev Atari and Amiga support

2013-03-27 Thread Geert Uytterhoeven
This patch series revives some of the support for Atari and Amiga that existed in XF68_FBDev, but got lost after XFree86 3.x. Generic: - All non-packed frame buffer layouts use shadowfb, and fast c2 for chunky-to-planar conversion. - As the KDrive keyboard driver is broken, you have to

[PATCH 03/18] [RFC] mi: Avoid division by zero errors in miInitializeColormap()

2013-03-27 Thread Geert Uytterhoeven
If depth 3, one or more of {red,green,blue}Mask and lim[rgb] will be zero, causing division by zero errors. Add checks to avoid this. Question: Should we restrict depth 3 to grayscale visuals instead? For monochrome this is already needed, as miCreateDefColormap() only preallocates black and

[PATCH 12/18] Shadow: Add support for Atari iplan2p8

2013-03-27 Thread Geert Uytterhoeven
Add support for Atari-style interleaved bitplanes, with 2 bytes interleave and 8 bits per pixel. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- miext/shadow/Makefile.am |1 + miext/shadow/shadow.h |3 + miext/shadow/shiplan2p8.c | 137

[PATCH 11/18] Shadow: Add support for Atari iplan2p4

2013-03-27 Thread Geert Uytterhoeven
Add support for Atari-style interleaved bitplanes, with 2 bytes interleave and 4 bits per pixel. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- miext/shadow/Makefile.am |1 + miext/shadow/shadow.h |3 + miext/shadow/shiplan2p4.c | 136

[PATCH 08/18] Xfbdev: Add support for monochrome visuals

2013-03-27 Thread Geert Uytterhoeven
Monochrome supports StaticGray, with hardcoded black and white pixels. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- hw/kdrive/fbdev/fbdev.c | 24 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/hw/kdrive/fbdev/fbdev.c

[PATCH 09/18] Xfbdev: Treat 1 bpp pseudocolor as monochrome

2013-03-27 Thread Geert Uytterhoeven
miCreateDefColormap() only preallocates black and white pixels if depth 1. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- hw/kdrive/fbdev/fbdev.c | 10 ++ 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/hw/kdrive/fbdev/fbdev.c b/hw/kdrive/fbdev/fbdev.c index

[PATCH 07/18] Xfbdev: Handle unset var.bits_per_pixel

2013-03-27 Thread Geert Uytterhoeven
Older frame buffer devices may not fill in var.bits_per_pixel, in which case it must be calculated by the application. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- hw/kdrive/fbdev/fbdev.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git

[PATCH 05/18] KDrive: Bail out if screen initialization failed

2013-03-27 Thread Geert Uytterhoeven
Else we may get a segmentation fault later. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- hw/kdrive/src/kdrive.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/hw/kdrive/src/kdrive.c b/hw/kdrive/src/kdrive.c index 716f18e..84d39bb 100644 ---

[PATCH 02/18] miext/shadow/shpacked.c: Remove unused PickBit() define

2013-03-27 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- miext/shadow/shpacked.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/miext/shadow/shpacked.c b/miext/shadow/shpacked.c index d2b2e5e..5ef18f8 100644 --- a/miext/shadow/shpacked.c +++ b/miext/shadow/shpacked.c

[PATCH 10/18] Shadow: Add c2p core

2013-03-27 Thread Geert Uytterhoeven
Add Chunky-to-Planar core functionality, to be used by the Atari and Amiga (interleaved) bitplanes code. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- miext/shadow/c2p_core.h | 184 +++ 1 files changed, 184 insertions(+), 0 deletions(-)

[PATCH 06/18] Xfbdev: Make char *fbdevDevicePath const

2013-03-27 Thread Geert Uytterhoeven
This fixes: hw/kdrive/fbdev/fbdev.c: In function 'fbdevInitialize': hw/kdrive/fbdev/fbdev.c:41:25: warning: assignment discards 'const' qualifier from pointer target type [enabled by default] Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- hw/kdrive/fbdev/fbdev.c |2 +-

[PATCH 04/18] test/input: Fix double-aligned test in dix_valuator_alloc() on m68k

2013-03-27 Thread Geert Uytterhoeven
On m68k, doubles are not 64-bit aligned, just like on i386 and sh. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- test/input.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/test/input.c b/test/input.c index 90ab9ae..e2c8f4d 100644 --- a/test/input.c +++

[PATCH 17/18] Xfbdev: Wire up Atari iplan2p4 and iplan2p8 support

2013-03-27 Thread Geert Uytterhoeven
Add support for Atari-style interleaved bitplanes, with 2 bytes interleave and 4 or 8 bits per pixel. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- hw/kdrive/fbdev/fbdev.c | 19 ++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git

[PATCH 14/18] Shadow: Add support for Amiga afb8

2013-03-27 Thread Geert Uytterhoeven
Add support for Amiga-style bitplanes, with 8 bits per pixel. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- miext/shadow/Makefile.am |1 + miext/shadow/shadow.h|3 + miext/shadow/shafb8.c| 143 ++ 3 files changed, 147

[PATCH 18/18] Xfbdev: Wire up Amiga afb4 and afb8 support

2013-03-27 Thread Geert Uytterhoeven
Add support for Amiga-style bitplanes, with 4 or 8 bits per pixel. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- hw/kdrive/fbdev/fbdev.c | 30 +- 1 files changed, 29 insertions(+), 1 deletions(-) diff --git a/hw/kdrive/fbdev/fbdev.c

[PATCH 13/18] Shadow: Add support for Amiga afb4

2013-03-27 Thread Geert Uytterhoeven
Add support for Amiga-style bitplanes, with 4 bits per pixel. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- miext/shadow/Makefile.am |1 + miext/shadow/shadow.h|3 + miext/shadow/shafb4.c| 139 ++ 3 files changed, 143

[PATCH 15/18] Xfbdev: Reject unsupported frame buffer types

2013-03-27 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- hw/kdrive/fbdev/fbdev.c | 75 +++--- 1 files changed, 50 insertions(+), 25 deletions(-) diff --git a/hw/kdrive/fbdev/fbdev.c b/hw/kdrive/fbdev/fbdev.c index ebbfeb9..f31635d 100644 ---

[PATCH 16/18] Xfbdev: Force shadowfb for frame buffers with non-packed pixels

2013-03-27 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- hw/kdrive/fbdev/fbdev.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/hw/kdrive/fbdev/fbdev.c b/hw/kdrive/fbdev/fbdev.c index f31635d..52dfbf5 100644 --- a/hw/kdrive/fbdev/fbdev.c +++ b/hw/kdrive/fbdev/fbdev.c

Re: [PATCH 00/18] Xfbdev Atari and Amiga support

2013-03-27 Thread Jasper St. Pierre
Uh, I think you accidentally sent this patch set five days early. On Wed, Mar 27, 2013 at 9:20 AM, Geert Uytterhoeven ge...@linux-m68k.orgwrote: This patch series revives some of the support for Atari and Amiga that existed in XF68_FBDev, but got lost after XFree86 3.x. Generic: - All

Re: [PATCH 04/18] test/input: Fix double-aligned test in dix_valuator_alloc() on m68k

2013-03-27 Thread Mark Kettenis
From: Geert Uytterhoeven ge...@linux-m68k.org Date: Wed, 27 Mar 2013 14:20:37 +0100 On m68k, doubles are not 64-bit aligned, just like on i386 and sh. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- test/input.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)

Re: [PATCH 00/18] Xfbdev Atari and Amiga support

2013-03-27 Thread John Paul Adrian Glaubitz
On 03/27/2013 02:20 PM, Geert Uytterhoeven wrote: This patch series revives some of the support for Atari and Amiga that existed in XF68_FBDev, but got lost after XFree86 3.x. Whoa, that's pretty cool, thanks for that! I saw an older posting from you on debian-68k [1] that you'd be working on

Re: [PATCH 04/18] test/input: Fix double-aligned test in dix_valuator_alloc() on m68k

2013-03-27 Thread Geert Uytterhoeven
On Wed, Mar 27, 2013 at 2:55 PM, Mark Kettenis mark.kette...@xs4all.nl wrote: -#if !defined(__i386__) !defined(__sh__) +#if !defined(__i386__) !defined(__mc68000__) !defined(__sh__) Any reason not to use __m68k__? That's what we tend to use in BSD land. __m68k__ is fine for me, too.

xserver-xorg-video-nouveau: Changes to 'upstream-experimental'

2013-03-27 Thread Sven Joachim
configure.ac |2 src/drmmode_display.c | 57 ++ src/nouveau_dri2.c| 18 +++ src/nouveau_exa.c |5 src/nv30_exa.c| 272 +- src/nv_accel_common.c | 13 ++ src/nv_driver.c | 11 +- 7 files

Bug#649275: Wheezy

2013-03-27 Thread sergey
This bug is still exists in Wheezy (in version that comes with installer RC1). -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130328003052.34496ebb.sergey-...@yandex.ru