Bug#458692: Starts X regardless of whether keyboard is correctly setup

2008-01-02 Thread Simon Huggins
Package: xinit
Version: 1.0.7-1
Severity: normal

When running startx with a full /var I discovered ALT didn't work.  I
initially thought this was some higher level package like gtk or xfce that
was causing the problem but in fact it was X and specifically startx which
keeps going when xkbcomp fails.

I get a log like (copied by hand because /var was full):
The XKEYBOARD keymap compiler (xkbcomp) reports:
 Error:   bad length in CompatMap
  Output file /var/tmp/server-0.xkm removed
Errors from xkbcomp are not fatal to the X server

If I make some space on /var then everything works again.

I would have thought it was preferable to stop X from starting in such
situations or at least to make the error more obvious.

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

Kernel: Linux 2.6.23 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xinit depends on:
ii  cpp   4:4.2.1-6  The GNU C preprocessor (cpp)
ii  libc6 2.7-1  GNU C Library: Shared libraries
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  x11-common1:7.3+6X Window System (X.Org) infrastruc

xinit recommends no packages.

-- no debconf information




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#295530: [siliconmotion] Corrupted display on external monitor if external res built-in res

2007-04-01 Thread Simon Huggins
On Tue, Feb 13, 2007 at 02:21:57AM +0100, Brice Goglin wrote:
 Did you have a chance to try to reproduce this bug?

Right this is indeed fixed in xserver-xorg.  I tested against
1:7.1.0-7

I'm not quite sure what to do to the bug though?  Reassign it to
xserver-xorg, mark it fixed in that version and mail -done perhaps?

Simon.

-- 
UK based domain, email and web hosting ***/  I got everything up to the /*
http://www.blackcatnetworks.co.uk/ **/   part about `Now listen /**
[EMAIL PROTECTED]   */ closely' - The Cat. /***
Black Cat Networks /  /


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#336226: .ICE-unix not correctly created

2007-02-02 Thread Simon Huggins
Hi Julien,

On Fri, Feb 02, 2007 at 05:27:08PM +0100, Julien Cristau wrote:
 /tmp/.ICE-unix is supposed to be created by /etc/init.d/x11-common at
 startup.  Is any of you able to reproduce this problem recently?

Yeah I think we can probably close this.  If you deliberately remove it
and don't reboot then it won't be created with the right permissions but
there isn't a lot you can do about that really.

If I move it out of the way xfce4 still starts with startx (though it's
possible that starting it a second time would fail).

X looks to be doing mostly the right thing for sane setups.

-- 
Simon  [ [EMAIL PROTECTED] ] *\   Cardinal Fang!  Fetch... the comfy  \**
** ]-+-+-+-+-+-+-+-+-[ **\chair! - Monty Python  \*
** [  Htag.pl 0.0.22 ] ***\\


signature.asc
Description: Digital signature


Bug#295530: [siliconmotion] Corrupted display on external monitor if external res built-in res

2007-01-13 Thread Simon Huggins
On Sat, Jan 13, 2007 at 02:34:42AM +0100, Brice Goglin wrote:
 About 2 years ago, you reported a bug to the Debian BTS regarding a
 corrupted display on an external monitor with a siliconmotion board. A
 patch got proposed, apparently fixing the problem. Did you reproduce
 this problem recently? If not, I will close this bug in the next
 weeks.

Thanks for your QA effort.

I'll try to reproduce it for you.  Do you believe it's fixed in xorg
then?

Simon.

-- 
* Le doute est le commencement de la sagesse.   *
|   |
*   *
   Brought to you by the letter K and the number 48


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#295530: [siliconmotion] Corrupted display on external monitor if external res built-in res

2005-02-21 Thread Simon Huggins
On Wed, Feb 16, 2005 at 02:10:20PM +, Simon Huggins wrote:
 Using the siliconmotion driver and attaching an external display I get
 corrupted pixels on the right hand side (note not on the bottom as well)
 beyond where the display would have stopped.

 e.g. my internal display does 1024x768 and the external LCD does
 1280x1024 so anything from 1024 - 1280 is corrupted.  The corruption
 takes the form of two copies of the righthand most parts of the display
 which look normal with blues changed to red and then blues changed to
 green.

 It sounds like:
 http://bugs.xfree86.org/show_bug.cgi?id=727

 I've not been able to build X myself to test this yet however.  I need
 to find a host with enough disk and time to do it.

Just to confirm I rebuilt -11 with the attached patch and it did indeed
solve this so if you want some low-hanging fruit to please a humble user
please apply this... :)

I just dropped the following as 083a_siliconmotion_widthfix.diff in
debian/patches.  It is just the patch in the URL above but rejigged so
the build system doesn't barf and I've now confirmed it fixes this bug.

Simon.

-- 
[ Deja Moo - the feeling you've heard this bull before.]
Black Cat Networks.  http://www.blackcatnetworks.co.uk/
--- xc/programs/Xserver/hw/xfree86/drivers/siliconmotion/smi_driver.c.orig  
2005-02-16 19:55:25.0 +
+++ xc/programs/Xserver/hw/xfree86/drivers/siliconmotion/smi_driver.c   
2005-02-16 19:57:08.0 +
@@ -2676,12 +2676,12 @@
new-VPR0C = pSmi-FBOffset  3;
if (pSmi-rotate)
{
-   new-VPR10 = min(pSmi-lcdWidth, pSmi-height) * pSmi-Bpp) 
 3)
+   new-VPR10 = pSmi-height * pSmi-Bpp)  3)
+ 2)  16) | ((pSmi-height * pSmi-Bpp)  3);
}
else
{
-   new-VPR10 = min(pSmi-lcdWidth, pSmi-width) * pSmi-Bpp) 
 3)
+   new-VPR10 = pSmi-width * pSmi-Bpp)  3)
+ 2)  16) | ((pSmi-width * pSmi-Bpp)  3);
}
 


Bug#295530: [siliconmotion] Corrupted display on external monitor if external res built-in res

2005-02-16 Thread Simon Huggins
Package: xserver-xfree86
Version: 4.3.0.dfsg.1-10
Tags: patch

Using the siliconmotion driver and attaching an external display I get
corrupted pixels on the right hand side (note not on the bottom as well)
beyond where the display would have stopped.

e.g. my internal display does 1024x768 and the external LCD does
1280x1024 so anything from 1024 - 1280 is corrupted.  The corruption
takes the form of two copies of the righthand most parts of the display
which look normal with blues changed to red and then blues changed to
green.

It sounds like:
http://bugs.xfree86.org/show_bug.cgi?id=727

I've not been able to build X myself to test this yet however.  I need
to find a host with enough disk and time to do it.


Simon.

-- 
* blitz ouais, et ce qui est génial, par rapport à irl*
| blitz c'est que si on te fait chier t'a qu'a changer d'écran :) |
*   *
   Brought to you by the letter B and the number 50


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



x-window-manager - what must it provide?

2004-03-29 Thread Simon Huggins
[Please honour my Mail-Followup-To]

Hi,

I'm trying to work out what the intended purpose of x-window-manager is.

This is prompted by bug 194195.

wdm thinks that x-window-manager should provide an X session with a way
to launch applications and so on.

xfwm4 ships as an alternative to x-window-manager because it's a window
manager.  However all the menuing, panel, other bits and bobs are
provided in other components of XFce.

Basically I want to know if xfwm4 should be saying it's an alternative
to x-window-manager - given it provides the positioning, window border
bits - or if more is needed in order to satisfy being x-window-manager.

I read policy but it didn't really seem to specify much just gave points
for different bits.

Thanks,

-- 
 ,--huggie-at-earth-dot-listuff-thing-stuff--DF5CE2B4--.
_|   Mais bouilli avec de la sauce à la menthe, Astérix !  Pauvre|_
 |bête ! - Obélix - Astérix chez les Bretons.|
 `- http://www.earth.li/~huggie/ - http://www.blackcatnetworks.co.uk/ -'