Gentoo Archives: gentoo-user

From: Alan Mackenzie <acm@×××.de>
To: gentoo-user@l.g.o
Subject: [gentoo-user] mdev + xorg + Gnome up and running. :-)
Date: Thu, 15 Mar 2012 04:20:22
Message-Id: 20120315041714.GA2867@acm.acm
1 Hi, Gentoo.
2
3 Yes, I've got Gnome going under mdev. Thanks to Mike Edenfield for the
4 tip about needing to configure things in xorg.conf.
5
6 Here's how I did it:
7
8 (i) Rebuild xorg-server without udev.
9 * Insert this line into /etc/package.use:
10
11 x11-base/xorg-server -udev
12
13 * build the program with:
14
15 emerge xorg-server
16
17 (ii) Configure the keyboard and mouse explicitly in /etc/X11/xorg.conf
18 (or wherever else you keep your xorg.conf).
19 * Edit the two "InputDevice" sections to look like this. The critical
20 lines are emphasised:
21
22 Section "InputDevice"
23 Identifier "Keyboard0"
24 Driver "evdev" <--------------
25 Option "Device" "/dev/input/event3" <--------------
26 EndSection
27
28 Section "InputDevice"
29 Identifier "Mouse0"
30 Driver "evdev" <--------------
31 Option "Protocol" "auto"
32 Option "Device" "/dev/input/event4" <--------------
33 Option "ZAxisMapping" "4 5 6 7"
34 EndSection
35
36 Here's another section for your instructions, Walter. :-)
37
38 --
39 Alan Mackenzie (Nuremberg, Germany).

Replies

Subject Author
Re: [gentoo-user] mdev + xorg + Gnome up and running. :-) Pandu Poluan <pandu@××××××.info>
Re: [gentoo-user] mdev + xorg + Gnome up and running. :-) Walter Dnes <waltdnes@××××××××.org>