Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Sep 2004 14:36:09 +0200
From:      Claude Buisson <cbuisson@nerim.net>
To:        Jochen Gensch <incmc@gmx.de>
Cc:        freebsd-current@freebsd.org
Subject:   Re: Keyboard localisation broken under xorg 6.7?
Message-ID:  <41556639.1080104@nerim.net>
In-Reply-To: <4155575F.4010605@gmx.de>
References:  <4155575F.4010605@gmx.de>

next in thread | previous in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.
--------------080508050803000300010405
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

Jochen Gensch wrote:
> Hi,
> 
> since I have upgraded to xorg 6.7 and FBSD 5.3 there is a problem with
> my keyboard language. I cannot change it from the default. When trying
> to run xorgconfig, it shows an error message that goes:
> 
> XKB rules file '/usr/X11R6/lib/X11/xkb/rules/' not found
> 
> Any clues?
> 

There is a bug in:

programs/Xserver/hw/xfree86/xf86config/xorgconfig.c

Try adding the attached patch to the xorg-server port. It works for me.

> Cheers, Jochen
> 

Claude Buisson

PS: cc'ed freebsd-x11, as it may be of interest here.

--------------080508050803000300010405
Content-Type: text/plain;
 name="patch-xorgconfig.c"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="patch-xorgconfig.c"

--- programs/Xserver/hw/xfree86/xf86config/xorgconfig.c.orig	Fri Apr  2 23:47:33 2004
+++ programs/Xserver/hw/xfree86/xf86config/xorgconfig.c	Mon Aug 16 19:21:04 2004
@@ -706,7 +706,7 @@
         rulesfile = XKB_RULES_DIR "/xfree98";
 #else
 	config_xkbrules = __XKBDEFRULES__;	/* static */
-        rulesfile = XKB_RULES_DIR "/";
+        rulesfile = XKB_RULES_DIR "/xorg";
 #endif
 
         rules = XkbRF_Load(rulesfile, "", True, False);

--------------080508050803000300010405--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?41556639.1080104>