Bug#953810: /usr/bin/xmag: [xmag] Doesn't show the pixel RGB value any more.

2022-04-01 Thread Geert Uytterhoeven
ails. I do not know if this is a bug in these applications, or in some other layer (X libs, X server, compositor, ...). Thanks! Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations

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

2013-04-24 Thread Geert Uytterhoeven
Hi Alan, On Thu, Apr 25, 2013 at 7:42 AM, Alan Coopersmith wrote: > On 04/24/13 10:28 PM, Geert Uytterhoeven wrote: >> On Thu, Apr 25, 2013 at 7:23 AM, Alan Coopersmith >> wrote: >>> On 04/24/13 10:00 PM, Keith Packard wrote: >>>> Alan Coopersmith write

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

2013-04-24 Thread Geert Uytterhoeven
I'd prefer at least a BUG_WARN() over a no-op, to give us a hint why > stuff isn't working, though FatalError() also works for something that > should be impossible to hit. Or assert(), or . This should be indeed impossible to hit, as all calls to the c2p functions use hardcoded p

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

2013-04-18 Thread Geert Uytterhoeven
Hi Keith. On Mon, Apr 8, 2013 at 8:10 PM, Keith Packard wrote: > Geert Uytterhoeven writes: >> This patch series revives some of the support for Atari and Amiga that >> existed >> in XF68_FBDev, but got lost after XFree86 3.x. > > I've reviewed the patches whic

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

2013-04-08 Thread Geert Uytterhoeven
On Mon, Apr 8, 2013 at 6:55 PM, Keith Packard wrote: > Geert Uytterhoeven writes: >> miCreateDefColormap() only preallocates black and white pixels if >> depth > 1. > > I think you should also set pScreen->whitePixel and pScreen->blackPixel to > match the MONO01

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

2013-04-08 Thread Geert Uytterhoeven
On Mon, Apr 8, 2013 at 6:47 PM, Keith Packard wrote: > Geert Uytterhoeven writes: > >> Older frame buffer devices may not fill in var.bits_per_pixel, in which >> case it must be calculated by the application. > > I think you mean 'fix.line_length' here. Woop

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

2013-03-27 Thread Geert Uytterhoeven
__m68k__ is fine for me, too. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to j

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

2013-03-27 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven --- 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 @@ -326,7 +326,8

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

2013-03-27 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven --- 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 --- 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 --- miext/shadow/Makefile.am |1 + miext/shadow/shadow.h|3 + miext/shadow/shafb4.c| 139 ++ 3 files changed, 143 insertions(+), 0

[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 --- hw/kdrive/fbdev/fbdev.c | 30 +- 1 files changed, 29 insertions(+), 1 deletions(-) diff --git a/hw/kdrive/fbdev/fbdev.c b/hw/kdrive/fbdev/fbdev.c index 40747fe

[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 --- miext/shadow/Makefile.am |1 + miext/shadow/shadow.h|3 + miext/shadow/shafb8.c| 143 ++ 3 files changed, 147 insertions(+), 0

[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 --- hw/kdrive/fbdev/fbdev.c | 19 ++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git a/hw/kdrive/fbdev/fbdev.c b/hw/kdrive

[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 --- 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 +++ b/test/input.c

[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 --- hw/kdrive/fbdev/fbdev.c |2 +- hw/

[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 --- miext/shadow/c2p_core.h | 184 +++ 1 files changed, 184 insertions(+), 0 deletions(-) create mode 100644

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

2013-03-27 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven --- 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 @@ -98,7 +98,6

[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 --- 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 --- a/hw/kdrive/src/kdrive.c +++ b/hw

[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 --- hw/kdrive/fbdev/fbdev.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/hw/kdrive/fbdev/fbdev.c b/hw/kdrive

[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 --- 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 0082575..ebbf

[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 --- hw/kdrive/fbdev/fbdev.c | 24 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/hw/kdrive/fbdev/fbdev.c b/hw/kdrive/fbdev/fbdev.c index 7b29f42

[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 --- miext/shadow/Makefile.am |1 + miext/shadow/shadow.h |3 + miext/shadow/shiplan2p4.c | 136 + 3 files

[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 --- miext/shadow/Makefile.am |1 + miext/shadow/shadow.h |3 + miext/shadow/shiplan2p8.c | 137 + 3 files

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

2013-03-27 Thread Geert Uytterhoeven
ck and white pixels if depth > 1. Signed-off-by: Geert Uytterhoeven --- mi/micmap.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mi/micmap.c b/mi/micmap.c index 3ef0c8c..c02596b 100644 --- a/mi/micmap.c +++ b/mi/micmap.c @@ -138,13 +138,13 @@ miInitializ

[PATCH 00/18] Xfbdev Atari and Amiga support

2013-03-27 Thread Geert Uytterhoeven
ecific) apply to current xorg-server.git. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm

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

2013-03-27 Thread Geert Uytterhoeven
gi-bin/bugreport.cgi?bug=646686 ("xserver-xephyr: Xephyr doesn't work with evdev input drivers") Signed-off-by: Geert Uytterhoeven Cc: 640...@bugs.debian.org Cc: 646...@bugs.debian.org --- debian/rules |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/deb

Bug#654630: Please review this diff for atomic ops in mesa on m68k

2012-01-10 Thread Geert Uytterhoeven
h is always safe to use. Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journ

Bug#654630: Please review this diff for atomic ops in mesa on m68k

2012-01-10 Thread Geert Uytterhoeven
On Tue, Jan 10, 2012 at 13:55, Andreas Schwab wrote: > Geert Uytterhoeven writes: > >> On Tue, Jan 10, 2012 at 09:56, Thorsten Glaser wrote: >>> mesa FTBFS on m68k due to lack of GCC atomic intrinsics. (Why are >>> they (still) missing, anyway?) I’ve had a look

Bug#654630: Please review this diff for atomic ops in mesa on m68k

2012-01-10 Thread Geert Uytterhoeven
e the existence of CONFIG_RMW_INSNS in the kernel). Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalist

Bug#480656: Second run of xawtv fails with XF86DGANoDirectVideoMode

2008-05-11 Thread Geert Uytterhoeven
) Serial number of failed request: 67 Current serial number in output stream: 67 $ Xawtv continues to work with -nodga. There are no message reported in /var/log/Xorg.log.0 when this happens. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There&#

Bug#387922: m68k syscalls for xserver-xorg-input-evdev

2006-09-19 Thread Geert Uytterhoeven
later :) Both my 2.95.2 and 3.2 cross compilers define __mc68000__, but not __m68k__. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I cal

Bug#387922: m68k syscalls for xserver-xorg-input-evdev

2006-09-18 Thread Geert Uytterhoeven
On Mon, 18 Sep 2006, Drew Parsons wrote: > On Mon, 2006-09-18 at 10:35 +0200, Geert Uytterhoeven wrote: > > > According to > > http://linux-m68k-cvs.ubb.ca/c/cvsweb/linux/include/asm-m68k/unistd.h: > > > > | #define __NR_inotify_init 284 > > | #define __NR_in

Re: m68k syscalls for xserver-xorg-input-evdev

2006-09-18 Thread Geert Uytterhoeven
ux/include/asm-m68k/unistd.h: | #define __NR_inotify_init 284 | #define __NR_inotify_add_watch285 | #define __NR_inotify_rm_watch 286 Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTE

Re: mouse for x

2004-09-22 Thread Geert Uytterhoeven
figuration" > ;; > Q40*) # Q40/Q60 > trace "$func(): no good defaults known for Q40/Q60 mouse" > "configuration" > ;; > esac > > I'd appreciate knowing: > > 1) If th

Bug#226973: [Linux-fbdev-devel] Re: Bug#226973: xserver-xfree86: [glint] second card at wrong resolution

2004-03-31 Thread Geert Uytterhoeven
ement was with the permedia3, so maybe ask Alan Hourihane about > it. If your graphics controller is limited by memory bandwidth, the maximum pixel clock depends on the number of bits per pixels, since larger pixels mean more memory bandwidth. Gr{oetje,eeting}s,

Re: XFree86's HasLinuxInput symbol and m68k

2003-06-12 Thread Geert Uytterhoeven
OK to assume that m68k has input support, from the XFree86 point of view. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call my

Re: XFree86's HasLinuxInput symbol and m68k

2003-06-12 Thread Geert Uytterhoeven
OK to assume that m68k has input support, from the XFree86 point of view. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call my

Re: XFree86's HasLinuxInput symbol and m68k

2003-06-11 Thread Geert Uytterhoeven
ts "but there > is this cool USB Adapter for Amiga"), so this should never be executed on > m68k. Maybe not even compiled (I did not read the code too thoroughly). The input core does compile on m68k if you really want to, but no devices use it (for now). So as soon as we get this US

Re: XFree86's HasLinuxInput symbol and m68k

2003-06-11 Thread Geert Uytterhoeven
ts "but there > is this cool USB Adapter for Amiga"), so this should never be executed on > m68k. Maybe not even compiled (I did not read the code too thoroughly). The input core does compile on m68k if you really want to, but no devices use it (for now). So as soon as we get this US

Re: review wanted of new Debian X FAQ entry

2003-03-06 Thread Geert Uytterhoeven
On 5 Mar 2003, Wouter Verhelst wrote: > Op di 04-03-2003, om 22:24 schreef Geert Uytterhoeven: > [added [EMAIL PROTECTED] to the Cc list; -x and -powerpc should > probably be removed, so setting reply-to] > > > There are actually some 2.4 kernels available for m68k, but due

Re: review wanted of new Debian X FAQ entry

2003-03-06 Thread Geert Uytterhoeven
On 5 Mar 2003, Wouter Verhelst wrote: > Op di 04-03-2003, om 22:24 schreef Geert Uytterhoeven: > [added [EMAIL PROTECTED] to the Cc list; -x and -powerpc should > probably be removed, so setting reply-to] > > > There are actually some 2.4 kernels available for m68k, but due

Re: review wanted of new Debian X FAQ entry

2003-03-05 Thread Geert Uytterhoeven
On Wed, 5 Mar 2003, Christian T. Steigies wrote: > On Tue, Mar 04, 2003 at 10:24:45PM +0100, Geert Uytterhoeven wrote: > > What's the real problem? I'm running 2.4.20 (from Linux/m68k CVS) on my > > Amiga, > > with glibc-2.2.5-3? Or is this version glibc too old to

Re: review wanted of new Debian X FAQ entry

2003-03-05 Thread Geert Uytterhoeven
On Wed, 5 Mar 2003, Christian T. Steigies wrote: > On Tue, Mar 04, 2003 at 10:24:45PM +0100, Geert Uytterhoeven wrote: > > What's the real problem? I'm running 2.4.20 (from Linux/m68k CVS) on my Amiga, > > with glibc-2.2.5-3? Or is this version glibc too old to exhib

Re: review wanted of new Debian X FAQ entry

2003-03-04 Thread Geert Uytterhoeven
e, which was > rather quickly reassigned to the kernel-patch-2.4.7-m68k package. Since, > to date, nobody ever solved the issue, the latter package has now been > removed from the archive. What's the real problem? I'm running 2.4.20 (from Linux/m68k CVS) on my Amiga, with glibc-2.2.

Re: review wanted of new Debian X FAQ entry

2003-03-04 Thread Geert Uytterhoeven
quickly reassigned to the kernel-patch-2.4.7-m68k package. Since, > to date, nobody ever solved the issue, the latter package has now been > removed from the archive. What's the real problem? I'm running 2.4.20 (from Linux/m68k CVS) on my Amiga, with glibc-2.2.5-3? Or is t

Re: review wanted of new Debian X FAQ entry

2003-03-03 Thread Geert Uytterhoeven
lkyriefb can do mode switching. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call myself a hacker. But when I'm talking t

Re: review wanted of new Debian X FAQ entry

2003-03-03 Thread Geert Uytterhoeven
lkyriefb can do mode switching. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call myself a hacker. But when I'm talking t

Re: xserver-xfree8 4.0.1-8 on powerpc

2000-12-09 Thread Geert Uytterhoeven
as the same thing. I still must be computer graphic illiterate > :-).o Bpp (bits per pixel) is the number of bits occupied by each pixel, usually 8, 16, 24 or 32. Depth is the actual number of bits that's used for color information. Common values are 8, 15, 16, 24 and 30. Gr{oetje,eeting

Re: xserver-xfree8 4.0.1-8 on powerpc

2000-12-09 Thread Geert Uytterhoeven
must be computer graphic illiterate :-).o Bpp (bits per pixel) is the number of bits occupied by each pixel, usually 8, 16, 24 or 32. Depth is the actual number of bits that's used for color information. Common values are 8, 15, 16, 24 and 30. Gr{oetje,eeting}s,

Re: XFree86 4 phase2v5 available for powerpc

2000-09-14 Thread Geert Uytterhoeven
inclined to pay > any attention to it until we finish fixing the driver, though. Does it work better with the new PPC PCI code in the latest 2.4.0-testX? Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond i

Re: XFree86 4 phase2v5 available for powerpc

2000-09-14 Thread Geert Uytterhoeven
inclined to pay > any attention to it until we finish fixing the driver, though. Does it work better with the new PPC PCI code in the latest 2.4.0-testX? Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond i

Re: /etc/X11/Xmodmap re-revisited

2000-03-02 Thread Geert Uytterhoeven
y a PC keyboard to amiga keyboard connecter, > that will let you use any "PC" keyboard as if it were an amiga keyboard, > transparently. But it behaves like an Amiga keyboard! Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- Linux/{m68k~A

Re: /etc/X11/Xmodmap re-revisited

2000-03-02 Thread Geert Uytterhoeven
On Thu, 2 Mar 2000, Benjamin Herrenschmidt wrote: > On Thu, Mar 2, 2000, Geert Uytterhoeven <[EMAIL PROTECTED]> wrote: > >> I'll see with the maintainer if this can be changed to simply use PC > >> keycodes all the time on all archs _except_ when we are running on a

Re: /etc/X11/Xmodmap re-revisited

2000-03-02 Thread Geert Uytterhoeven
conversion is evil. I can dig up this 1995-discussion on linux-m68k if you're interested. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- Linux/{m68k~Amiga,PPC~CHRP} -- [EMAIL PROTECTED] In personal conversations with technical

Re: /etc/X11/Xmodmap re-revisited

2000-03-02 Thread Geert Uytterhoeven
the type of keyboard it says, if it's not being adapted > somehow. PReP takes a PS/2 keyboard PowerMac takes an ADB keyboard CHRP takes a PS/2 or ADB keyboard APUS takes an Amiga keyboard and USB is something special... Gr{oetje,eeting}s,

Re: xfree86-1 3.3.6-3; 3 down, 3 to go

2000-01-27 Thread Geert Uytterhoeven
his patch definitely has to go in. > The second patch fbdev-dpms.patch contains a patch to have dpms aware fbdev > Xserver. Since i cannot compile, i couldn't test it. I never tried that patch, but it's needed to make use of the power save ioctl in frame buffer devices. Gr{oetje,