Gentoo Archives: gentoo-user

From: Alan McKinnon <alan.mckinnon@×××××.com>
To: gentoo-user@l.g.o
Cc: Kevin O'Gorman <kogorman@×××××.com>
Subject: Re: [gentoo-user] Re: xorg-server mouse and keyboard woes
Date: Fri, 10 Jul 2009 17:47:42
Message-Id: 200907101946.00954.alan.mckinnon@gmail.com
In Reply to: Re: [gentoo-user] Re: xorg-server mouse and keyboard woes by Kevin O'Gorman
1 On Friday 10 July 2009 17:43:44 Kevin O'Gorman wrote:
2 > On Fri, Jul 10, 2009 at 4:55 AM, Philip Webb<purslow@××××××××.net> wrote:
3 > > 090709 Kevin O'Gorman wrote:
4 > >>> On Thu, Jul 9, 2009 at 8:51 PM, Dale<rdalek1967@×××××.com> wrote:
5 > >>>> If all else fails:
6 > >>>> x11-base/xorg-server -hal
7 > >>>
8 > >>> Is there any other advice?
9 > >>
10 > >> A new HAL made no difference. Sigh.
11 > >
12 > > I ran into this twice, first on my frontline machine, then on the
13 > > stand-by. The solution was 'USE="-hal" emerge xorg-server', then remerge
14 > > all drivers. There was a Gentoo help doc re it, which gave this as the
15 > > simplest option.
16 > >
17 > > 'evdev' is a separate matter: you need to include it in your kernel,
18 > > than you can simplify your drivers.
19 > >
20 > > HTH
21 >
22 > Evdev has been included in my kernels throughout this mess. It hasn't
23 > helped. The Gentoo doc on the upgrade was a bit scetchy about
24 > configuring HAL; now that I find that disabling HAL in xorg is the
25 > solution, I suspect that the underlying problem is HAL configuration.
26 > After all, there's nothing at all special about my mouse or keyboard.
27 >
28 > Why should we have to configure HAL manually? Since the stone ages,
29 > Linux installations have determined what keyboard we have and have set
30 > things up for us. How different can PS/2 or USB mice be?
31 >
32 > SO: if anyone succeeded with xorg and HAL, with a USA keyboard and a
33 > wheel mouse, would please tell me about their HAL config, I'd sure
34 > love to see it.
35
36 I run latest unstable here with a regular USA layout on a Dell XPS M1530 with
37 nvidia driver, hal and evdev. The HAL config is empty apart from a policy file
38 for a touch pad, and it's a dual-screen setup. Here's my xorg.conf:
39
40 # egrep -v '^$|^#' /etc/X11/xorg.conf
41 Section "ServerLayout"
42 Identifier "Layout0"
43 Screen 0 "Screen0" 0 0
44 EndSection
45 Section "Files"
46 EndSection
47 Section "Module"
48 Load "dbe"
49 Load "extmod"
50 Load "glx"
51 EndSection
52 Section "ServerFlags"
53 Option "Xinerama" "0"
54 EndSection
55 Section "Monitor"
56 # HorizSync source: edid, VertRefresh source: edid
57 Identifier "Monitor0"
58 VendorName "Unknown"
59 ModelName "Samsung SyncMaster"
60 HorizSync 30.0 - 81.0
61 VertRefresh 56.0 - 75.0
62 Option "DPMS"
63 EndSection
64 Section "Device"
65 Identifier "Device0"
66 Driver "nvidia"
67 VendorName "NVIDIA Corporation"
68 BoardName "GeForce 8600M GT"
69 EndSection
70 Section "Screen"
71 Identifier "Screen0"
72 Device "Device0"
73 Monitor "Monitor0"
74 DefaultDepth 24
75 Option "NoLogo" "True"
76 Option "TwinView" "1"
77 Option "TwinViewXineramaInfoOrder" "DFP-0"
78 Option "metamodes" "CRT: nvidia-auto-select @1440x900 +1920+0,
79 DFP: nvidia-auto-select +0+0"
80 SubSection "Display"
81 Depth 24
82 EndSubSection
83 EndSection
84
85 It all JustWorks for me, I assume in my case at least it's working as
86 designed.
87
88 --
89 alan dot mckinnon at gmail dot com

Replies

Subject Author
Re: [gentoo-user] Re: xorg-server mouse and keyboard woes Dale <rdalek1967@×××××.com>