You are not logged in.
I have same problem. After upgrade my keyboard and touchpad don`t work.. ![]()
Last edited by scippio (2008-12-17 13:07:17)
Sorry for my English...
Offline
make sure hal is running before xorg starts and you have evdev installed
Offline
Xorg works differently now that hotplugging is enabled by default.
See the xorg input hotplugging wiki article for details.
Bob
Offline
make sure hal is running before xorg starts and you have evdev installed
I have evdev installed and HAL is running..
Sorry for my English...
Offline
Now... I complete deleted xorg.conf and mouse and keyboard function is ok but resolution is bad .... I try add only resolution to xorg.conf... I`ll be back :]
Sorry for my English...
Offline
Now.... I copy my xorg.conf back :] I deleted only mouse section and all works fine. Only one last thing... my touchpad don`t reacting on "click" (when I punch to it...)
And my XkbOptions "grb:ctrl_shift_toggle" not function too.
Last edited by scippio (2008-12-16 19:34:07)
Sorry for my English...
Offline
For the touchpad the new drivers are configured differently now, take a look at the wiki page (based on what you have said you probably should follow the hotplugging section.
Offline
For the touchpad the new drivers are configured differently now, take a look at the wiki page (based on what you have said you probably should follow the hotplugging section.
Yes I know this section..
I try according to Wiki but unsuccessfully...
After several minutes...
I have it! ![]()
My finaly configuration is:
[scippio@jerry ~]$ cat /etc/hal/fdi/policy/11-x11-synaptics.fdi
<?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">mouse</merge>
<merge key="input.x11_options.Device" type="string">/dev/psaux</merge>
<merge key="input.x11_options.AlwayCore" type="string">true</merge>
<merge key="input.x11_options.VertEdgeScroll" type="string">true</merge>
<merge key="input.x11_options.HorizEdgeScroll" type="string">true</merge>
<!-- <merge key="input.x11_options.TapButton1" type="string">1</merge>
<merge key="input.x11_options.TabButton2" type="string">2</merge>
<merge key="input.x11_options.TabButton3" type="string">3</merge> -->
</match>
</match>
</device>
</deviceinfo>
[scippio@jerry ~]$ cat /etc/hal/fdi/policy/10-keymap.fdi
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
<deviceinfo version="0.2">
<device>
<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.rules" type="string">base</merge>
<!-- If we're using Linux, we use evdev by default (falling back to
keyboard otherwise). -->
<merge key="input.xkb.model" type="string">keyboard</merge>
<match key="/org/freedesktop/Hal/devices/computer:system.kernel.name"
string="Linux">
<merge key="input.xkb.model" type="string">pc105</merge>
</match>
<merge key="input.xkb.layout" type="string">us,cz_qwerty</merge>
<merge key="input.xkb.variant" type="string">qwerty</merge>
<merge key="input.xkb.options" type="string">grp:ctrl_shift_toggle</merge>
</match>
</device>
</deviceinfo>Thanks for your all comments ![]()
Last edited by scippio (2008-12-17 07:03:28)
Sorry for my English...
Offline
Hi, scippio, this layout "cz_qwerty" working for you ? Becouse if I tried:
[bendo@shami ~]$ setxkbmap -layout "cz_qwerty"
[bendo@shami ~]$ setxkbmap -layout "sk_qwerty"
Error loading new keyboard description
I trying to set up sk qwerty keyboard, but implicit is set to qwertz.
-- hm, its working when I put "," before qwerty like this:
...
<merge key="input.xkb.layout" type="string">us,sk</merge>
<merge key="input.xkb.variant" type="string">,qwerty</merge>
...Last edited by shami (2008-12-18 14:42:27)
Offline