Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Desktop Environments
  • Search

Best upgrade method to Xserver1.5 with Hal and evdev

Problems with GUI applications? Questions about X, KDE, Gnome, Fluxbox, etc.? Come on in. NOTE: For multimedia, go up one forum
Post Reply
Advanced search
398 posts
  • Page 1 of 16
    • Jump to page:
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 16
  • Next
Author
Message
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

Best upgrade method to Xserver1.5 with Hal and evdev

  • Quote

Post by d2_racing » Mon Dec 29, 2008 5:00 pm

Hi, I would like to know what config file should I modify to have a working X server 1.5 with a fr_CA keyboard.

I read a lot of threads about theses 2 :

Code: Select all

/etc/hal/fdi/policy/10-keymap.fdi

Code: Select all

/etc/hal/fdi/policy/10-x11-input.fdi
I know that I need to remove my input section inside /etc/X11/xorg.conf because I have enabled the HAL use.

So what is the main difference between these 2 ?

The first thing that you need to have is the hal Use Flag inside your /etc/make.conf and make sure that you have this also :

Code: Select all

INPUT_DEVICES="keyboard mouse evdev"
Last edited by d2_racing on Sat Jan 03, 2009 2:47 am, edited 4 times in total.
Top
Voltago
Advocate
Advocate
User avatar
Posts: 2593
Joined: Tue Sep 02, 2003 1:54 pm
Location: userland

  • Quote

Post by Voltago » Mon Dec 29, 2008 6:41 pm

Apart from the name there isn't really a difference, any HAL config option can go in any of the policy files. The leading numbers determine the evaluation order I guess.
Last edited by Voltago on Mon Dec 29, 2008 8:13 pm, edited 1 time in total.
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Mon Dec 29, 2008 8:11 pm

Ok thanks for the info.

But is there any info about what will be the standard config file for that ?
Top
Voltago
Advocate
Advocate
User avatar
Posts: 2593
Joined: Tue Sep 02, 2003 1:54 pm
Location: userland

  • Quote

Post by Voltago » Mon Dec 29, 2008 8:14 pm

Up to the distributor, really. You should ask our staunch xorg folks.
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Mon Dec 29, 2008 8:22 pm

Yep, I will check that on IRC :P
Top
fsteinel
n00b
n00b
User avatar
Posts: 3
Joined: Thu Jan 19, 2006 3:53 pm
Location: Germany

  • Quote

Post by fsteinel » Mon Dec 29, 2008 11:23 pm

latest sys-apps/hal-0.5.11-r1 uses /etc/hal/fdi/policy/10-x11-input.fdi .
For fr_CA add

Code: Select all

<merge key="input.xkb.layout" type="string">ca(fr)</merge>
extracted from http://ajax.fedorapeople.org/fedora-setup-keyboard.c
:)
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Wed Dec 31, 2008 3:37 am

Now I have the solution : http://sources.gentoo.org/viewcvs.py/ge ... iew=markup

It's really this file : /etc/hal/fdi/policy/10-x11-input.fdi
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Wed Dec 31, 2008 4:05 am

So my file will be like this :

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
<device>
    <!-- Mouse configuration -->
    <match key="info.capabilities" contains="input.mouse">
      <merge key="input.x11_driver" type="string">evdev</merge>
    </match>

    <!-- Keyboard configuration -->
    <match key="info.capabilities" contains="input.keymap">
      <append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
    </match>
    <match key="info.capabilities" contains="input.keys">
      <merge key="input.xkb.model" type="string">evdev</merge>
      <merge key="input.x11_driver" type="string">evdev</merge>
      <merge key="input.xkb.layout" type="string">ca</merge>
      <merge key="input.xkb.variant" type="string">fr</merge>
      <append key="input.xkb.options" type="strlist">compose:menu</append>
    </match>
  </device>
</deviceinfo> 
Last edited by d2_racing on Sat Jan 03, 2009 3:20 am, edited 1 time in total.
Top
dweezil-n0xad
Apprentice
Apprentice
User avatar
Posts: 156
Joined: Mon Oct 30, 2006 3:47 pm
Location: Ostend, Belgium

  • Quote

Post by dweezil-n0xad » Wed Dec 31, 2008 9:47 am

d2_racing wrote:But is there any info about what will be the standard config file for that ?
look at /usr/share/hal/fdi/policy/10osvendor/
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Wed Dec 31, 2008 11:14 pm

So basically, here what you need to do when you will upgrade to the version 1.5 or if you are using nowadays with the ~arch branch.

First, your make.conf should have the hal Use Flag.

If you use the desktop profile, then you have already this Use Flag.

Also, you need to have at least this also :

Code: Select all

INPUT_DEVICES="keyboard mouse evdev" 
The evdev is pretty important, because the new hal config works with evdev.

Make sure that you have this inside your kernel :

Code: Select all

Device Drivers 
       ->Input device support
               ->Event interface
Second, don't touch your /etc/X11/xorg.conf, because there a script that will automagically tweak the hal policy for you for each and every input device that you have inside your xorg.conf.

After that, you should update your box.

Code: Select all

# emerge -auDNv world
# rc-update add hald default
Finally, you should check this file to see if everything is fine : /etc/hal/fdi/policy/10-x11-input.fdi

If everything is fine, then you should remove the input device for your keyboard and mouse inside the /etc/X11/xorg.conf

Code: Select all

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder58)  Wed Oct  1 15:12:53 PDT 2008

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
EndSection

Section "Module"
    Load           "dbe"
    Load           "extmod"
    Load           "type1"
    Load           "freetype"
    Load           "glx"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection
Last edited by d2_racing on Mon Jan 12, 2009 6:18 pm, edited 3 times in total.
Top
gionnico
Apprentice
Apprentice
User avatar
Posts: 192
Joined: Fri Jun 29, 2007 9:34 am
Location: Italy

  • Quote

Post by gionnico » Thu Jan 01, 2009 3:43 pm

I've also got a synaptics touch pad. What about it?

I know that it was the only thing that worked without evdev.
So, will it work WITH evdev (I mean without the synaptics configuration inside xorg.conf)?

And how should the hal policy look like?
Top
Hwoarang
Retired Dev
Retired Dev
User avatar
Posts: 701
Joined: Sat Feb 24, 2007 10:41 am
Location: Leeds, UK
Contact:
Contact Hwoarang
Website

  • Quote

Post by Hwoarang » Thu Jan 01, 2009 3:48 pm

What I do is to add under ServerFlags Section on xorg.conf the following

Code: Select all

Option "AutoAddDevices" "False"
After that, X inputs works fine
Top
VoidMage
Watchman
Watchman
User avatar
Posts: 6196
Joined: Sat Oct 14, 2006 8:43 am

  • Quote

Post by VoidMage » Thu Jan 01, 2009 4:05 pm

Hwoarang wrote:What I do is to add under ServerFlags Section on xorg.conf the following

Code: Select all

Option "AutoAddDevices" "False"
After that, X inputs works fine
So let's just duck and cover and hope we'll manage to survive.

Well, really.... :roll:

Once again, my fdi file:

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
  <device>
    <match key="info.capabilities" contains="input.keys">
          <merge key="input.x11_options.XkbRules" type="string">evdev</merge>
          <merge key="input.x11_options.XkbModel" type="string">evdev</merge>
          <merge key="input.x11_options.XkbLayout" type="string">pl</merge>
          <merge key="input.x11_options.XkbOptions" type="string">altwin:menu</merge>
    </match>
  </device>
</deviceinfo>
Comments:
1. with xorg-server 1.4.2, info.callouts.add line was needed as a hack to get things working.
IIRC, since 1.5.0 (and definitely with 1.5.3) it's not needed anymore,
unless you want it for something non-trivial
2. input.x11_options.* style was introduced in 1.5.0, IIRC and according to server sources,
input.x11_options.XkbOptions (formerly input.xkb.options) can be simply a string now
3. as for touchpad, I don't have one, but IIRC, the capability you should match against is
'input.touchpad', options with style input.x11_options.* (option names same as in xorg.conf)
- if in doubt google it, this should be somewhere among first hits
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Thu Jan 01, 2009 7:36 pm

For synaptic, you can use this file :

Code: Select all

# cat /etc/hal/fdi/policy/11-x11-synaptics.fdi:

Code: Select all

<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
  <device>
    <match key="info.capabilities" contains="input.touchpad">
      <match key="info.product" contains="Synaptics TouchPad">
        <merge key="input.x11_driver" type="string">synaptics</merge>
   <merge key="input.x11_options.SHMConfig" type="string">on</merge>
   <!-- Tapping -->
        <merge key="input.x11_options.TapButton1" type="string">1</merge>
        <merge key="input.x11_options.TapButton2" type="string">2</merge>
        <merge key="input.x11_options.TapButton3" type="string">3</merge>
   <!-- Scrolling up/down -->
        <merge key="input.x11_options.VertEdgeScroll" type="string">1</merge>
        <merge key="input.x11_options.HorizEdgeScroll" type="string">1</merge>
        <!-- Corner clicks -->
        <merge key="input.x11_options.RBCornerButton" type="string">2</merge>
        <merge key="input.x11_options.RTCornerButton" type="string">3</merge>
      </match>
    </match>
  </device>
</deviceinfo>
Top
Goshanecr
Apprentice
Apprentice
User avatar
Posts: 158
Joined: Wed Aug 17, 2005 7:58 am
Location: Russia
Contact:
Contact Goshanecr
Website

  • Quote

Post by Goshanecr » Tue Jan 06, 2009 11:43 pm

Please help me! I don't understand what must i do for keymap switch work with new xorg-server
I want us and ru keymaps, and it switches CTRL+SHIFT. I'm remove input section from xorg.conf, copy 10-keymap.fdi and 10-x11-input.fdi from /usr/...../ to /etc/hal/..../ and i don't know what to edit in these files for keyboard switch works. Maybe i'm something not understand on english.. can someone tell me what i need to add in these files?
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Wed Jan 07, 2009 12:18 am

I don't know how to have 2 layouts keyboard on the same box...
Top
Goshanecr
Apprentice
Apprentice
User avatar
Posts: 158
Joined: Wed Aug 17, 2005 7:58 am
Location: Russia
Contact:
Contact Goshanecr
Website

  • Quote

Post by Goshanecr » Wed Jan 07, 2009 12:28 am

ok.... i'm not good write on english...
before update to xorg 1.5.x i have english language and on press CTRL+SHIFT i have russian language. After upgrade i have only Russian language.
In xorg.conf (for xorg<1.5.x) it setup with these lines:

Code: Select all

Section "InputDevice"
    Identifier  "Keyboard1"
    Driver      "kbd"
    Option "AutoRepeat" "500 30"
    Option "XkbRules"   "xorg"
    Option "XkbModel"   "pc104"
    Option "XkbLayout"  "us,ru(winkeys)"
    Option "XkbOptions" "grp:ctrl_shift_toggle,grp_led:scroll,caps:internal_nocancel"
EndSection
How i can setup this piece of config in fdi file?
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Wed Jan 07, 2009 12:53 am

Hi, can you try this version

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
<device>
    <!-- Mouse configuration -->
    <match key="info.capabilities" contains="input.mouse">
      <merge key="input.x11_driver" type="string">evdev</merge>
    </match>

    <!-- Keyboard configuration -->
    <match key="info.capabilities" contains="input.keymap">
      <append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
    </match>
    <match key="info.capabilities" contains="input.keys">
      <merge key="input.xkb.model" type="string">evdev</merge>
      <merge key="input.x11_driver" type="string">evdev</merge>
      <merge key="input.xkb.layout" type="string">us,ru</merge>
      <merge key="input.xkb.variant" type="string"></merge>
      <append key="input.xkb.options" type="strlist">grp:ctrl_shift_toggle,grp_led:scroll,caps:internal_nocancel</append>
    </match>
  </device>
</deviceinfo>
Top
Goshanecr
Apprentice
Apprentice
User avatar
Posts: 158
Joined: Wed Aug 17, 2005 7:58 am
Location: Russia
Contact:
Contact Goshanecr
Website

  • Quote

Post by Goshanecr » Wed Jan 07, 2009 11:40 am

This not help :( I have only english language... :(
1. my /etc/make.conf have line INPUT_DEVICES="keyboard mouse evdev"
2. my xorg.conf have commented all sections InputDevice (for keyboard and mouse)
3. my /etc/make.conf have USE="hal" and hald service starts normal
4. i have file /etc/hald/...../10-keymap.fdi with such contents:

Code: Select all

<?xml version="1.0" encoding="UTF-8"?> 
<deviceinfo version="0.2"> 
<device> 
    <!-- Mouse configuration --> 
    <match key="info.capabilities" contains="input.mouse"> 
      <merge key="input.x11_driver" type="string">evdev</merge> 
    </match> 

    <!-- Keyboard configuration --> 
    <match key="info.capabilities" contains="input.keymap"> 
      <append key="info.callouts.add" type="strlist">hal-setup-keymap</append> 
    </match> 
    <match key="info.capabilities" contains="input.keys"> 
      <merge key="input.xkb.model" type="string">evdev</merge> 
      <merge key="input.x11_driver" type="string">evdev</merge> 
      <merge key="input.xkb.layout" type="string">us,ru</merge> 
      <merge key="input.xkb.variant" type="string"></merge> 
      <append key="input.xkb.options" type="strlist">grp:ctrl_shift_toggle,grp_led:scroll,caps:internal_nocancel</append> 
    </match> 
  </device> 
</deviceinfo>
Is this enough?
Top
DaggyStyle
Watchman
Watchman
User avatar
Posts: 5969
Joined: Wed Mar 22, 2006 6:57 am

  • Quote

Post by DaggyStyle » Wed Jan 07, 2009 11:55 am

lets try this and see if it is working:

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<deviceinfo version="0.2">
   <match key="info.capabilities" contains="input.keys">
       <match key="info.product" contains="keyboard">
           <merge key="input.xkb.rules" type="string">xorg</merge>
           <!-- Option "XkbModel" "pc105" -->
           <merge key="input.xkb.model" type="string">evdev</merge>
           <merge key="input.xkb.layout" type="string">us,ru</merge>
           <merge key="input.xkb.options" type="string">grp:alt_shift_toggle</merge>
       </match>
   </match>
</deviceinfo>

if it does, then start playing with it.
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Top
Goshanecr
Apprentice
Apprentice
User avatar
Posts: 158
Joined: Wed Aug 17, 2005 7:58 am
Location: Russia
Contact:
Contact Goshanecr
Website

  • Quote

Post by Goshanecr » Wed Jan 07, 2009 6:46 pm

No :( This is not help.. Please can you tell me all steps which must be done to layout switch works?
And in what file i must insert configs gived by you, 10-keymap.fdi or 10-x11-...fdi?
Maybe needs some log? But i don't know where hal stores his log...
Top
jancici
Apprentice
Apprentice
Posts: 284
Joined: Tue Jan 27, 2004 8:30 am
Location: Slovakia

  • Quote

Post by jancici » Wed Jan 07, 2009 6:56 pm

I am getting problems here too

my hw:
laptop : asus M51VR with USB logitech mouse and keyboard (classic without any multimedia buttons) and synaptics touchpad

I am running
xorg-server 1.5.3
hal 0.5.11-r6

here is my fdi file

Code: Select all

cat /etc/hal/fdi/policy/10-x11-input.fdi 
<?xml version="1.0" encoding="utf-8"?>
<deviceinfo version="0.2">

    <!-- kalvesnica -->
    <match key="info.capabilities" contains="input.keys">
      <merge key="input.xkb.model" type="string">evdev</merge>
      <merge key="input.xkb.layout" type="string">gb,sk</merge>
      <merge key="input.xkb.options" type="string">grp:alt_shift_toggle</merge>
      <append key="input.xkb.options" type="strlist">grp_led:scroll</append>
    </match> 

    <!-- mys -->
    <match key="info.capabilities" contains="input.mouse">
        <merge key="input.x11_driver" type="string">evdev</merge>
    </match>

    <!-- touchpad -->
    <match key="info.capabilities" contains="input.touchpad">
        <match key="info.product" contains="SynPS/2">
          <merge key="input.x11_driver" type="string">synaptics</merge>
          <merge key="input.x11_options.SHMConfig" type="string">true</merge>
        </match>
    </match>

</deviceinfo>
problems:
a)
when my gnome session is starting I am getting popUp window with error message about keyboard configuration. I think that gnome is not ready for new xorg + hal. Do you have any idea ?
b)
I want to use two layouts GB and SK, I am using gnome keyboard indicator on panel, during ALT+SHIFT I can see GBR , SVK and unknown "?" character on it. what is that mean ?
c)
I want to use "qwerty" for SK layout, default is qwertz.
I old xorg.conf I did use

Code: Select all

Option "xkbVariant" ",qwerty"
how to do that in fdi ?
d)
looking into X log file I can see this:

Code: Select all

II) config/hal: Adding input device Video Bus
(**) Video Bus: always reports core events
(**) Video Bus: Device: "/dev/input/event5"
(II) Video Bus: Found keys
(II) Video Bus: Configuring as keyboard
(II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Video Bus: xkb_rules: "evdev"
(**) Option "xkb_model" "evdev"
(**) Video Bus: xkb_model: "evdev"
(**) Option "xkb_layout" "gb,sk"
(**) Video Bus: xkb_layout: "gb,sk"
(**) Option "xkb_options" "grp:alt_shift_toggle"
(**) Video Bus: xkb_options: "grp:alt_shift_toggle"
what that means? video bus as input keyboard???

thanks for any tip
Top
Goshanecr
Apprentice
Apprentice
User avatar
Posts: 158
Joined: Wed Aug 17, 2005 7:58 am
Location: Russia
Contact:
Contact Goshanecr
Website

  • Quote

Post by Goshanecr » Wed Jan 07, 2009 7:17 pm

There is my X output when AutoAddDevices "False":

Code: Select all

(EE) No Input driver matching `mouse'
(**) Option "CoreKeyboard"
(**) <default keyboard>: always reports core events
(**) Option "Protocol" "standard"
--
(II) evaluating device (<default keyboard>)
(II) XINPUT: Adding extended input device "<default keyboard>" (type: KEYBOARD)
(II) config/hal: Adding input device Genius       Optical Mouse
(EE) config/hal: NewInputDeviceRequest failed
(II) config/hal: Adding input device AT Translated Set 2 keyboard
(EE) config/hal: NewInputDeviceRequest failed
and my 10-x11-input.fdi

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
	<deviceinfo version="0.2">
		<device>
		<!-- Mouse configuration -->
			<match key="info.capabilities" contains="input.mouse">
				<merge key="input.x11_driver" type="string">evdev</merge>
			</match>

		<!-- Keyboard configuration -->
			<match key="info.capabilities" contains="input.keymap">
				<append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
			</match>
			<match key="info.capabilities" contains="input.keys">
				<merge key="input.xkb.model" type="string">evdev</merge>
				<merge key="input.x11_driver" type="string">evdev</merge>
				<merge key="input.xkb.layout" type="string">us,ru</merge>
				<merge key="input.xkb.variant" type="string"></merge>
				<append key="input.xkb.options" type="strlist">grp:ctrl_shift_toggle,grp_led:scroll,caps:internal_nocancel</append>
			</match>
		</device>
	</deviceinfo>
Top
jancici
Apprentice
Apprentice
Posts: 284
Joined: Tue Jan 27, 2004 8:30 am
Location: Slovakia

  • Quote

Post by jancici » Wed Jan 07, 2009 7:38 pm

here is part of my xorg.conf

Code: Select all

Section "ServerFlags"
     Option "AllowEmptyInput" "true"
     Option "AutoAddDevices" "true"
     Option "AutoEnableDevices" "true"
EndSection

Section "ServerLayout"
    Identifier  "Main Layout"
    Screen      "screen_jedna"
    Option      "OffTime" "20"
EndSection
I did remove all InputSection and InputDevice lines from serverLayout section

I did find a solution for point c) and also did add option which is turning scroll LED when different layout is schoose
here is new keyboard part of fdi

Code: Select all

 <match key="info.capabilities" contains="input.keyboard">
      <merge key="input.xkb.model" type="string">evdev</merge>
      <merge key="input.xkb.layout" type="string">gb,sk</merge>
      <merge key="input.xkb.variant" type="string">,qwerty</merge>
      <merge key="input.xkb.options" type="string">grp:alt_shift_toggle, grp_led:scroll</merge>
</match>
Top
APolozov
Apprentice
Apprentice
User avatar
Posts: 194
Joined: Thu Sep 28, 2006 3:44 pm
Location: Voronezh, Russia

  • Quote

Post by APolozov » Wed Jan 07, 2009 11:51 pm

My way step by step :-)
1. Enable CONFIG_INPUT_EVDEV=m and rebuild kernel and reboot
2. Set INPUT_DEVICES="evdev" (without mouse and keboard) and USE="hal"
3. emerge -uND world and emerge --depclean :twisted:
4. Remove input section in xorg.conf and add to Section "ServerFlags"
Option "AutoAddDevices" "on"
Option "AutoEnableDevices" "on"
Option "AllowEmptyInput" "on"
5. Copy 10-x11-input.fdi with this tred :)
6. Restart hald and xdm daemons
7. Tune 10-x11-input.fdi and return to :)
8. End
Excuse my bad English, I only study it.
Top
Post Reply

398 posts
  • Page 1 of 16
    • Jump to page:
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 16
  • Next

Return to “Desktop Environments”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy