Belkin PF31 Specifications Page 41

  • Download
  • Add to my manuals
  • Print
  • Page
    / 46
  • Table of contents
  • TROUBLESHOOTING
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 40
212
|
Chapter 7: Bluetooth
Input device support entails enabling the user-level driver support in the
Input device drivers section of your Linux kernel. As its name suggests, this
allows regular programs to inject events into the system’s input device chan-
nels. Secondly, you must compile and configure the development version of
BlueZ:
# cvs -d :pserver:[email protected] login
# cvs -z3 -d :pserver:[email protected] \
co libs2 utils2
# cd libs2
# ./bootstrap
# ./configure --prefix=/opt/bluez2
# make && make install
# cd ../utils2
# ./bootstrap
# ./configure --prefix=/opt/bluez2 --with-bluetooth=/opt/bluez2
# make && make install
# echo /opt/bluez2/lib >> /etc/ld.so.conf
# ldconfig
Put BlueZ into /opt/bluez2 to avoid conflict with earlier,
production-quality versions of the BlueZ tools. We suggest
that you don’t put /opt/bluez2/bin in your path, but invoke
the 2.0 tools with their full path. When BlueZ 2.0 is
released, however, feel free to use them with wild abandon.
Next, you must verify that the user-level input module is working. Check
that the device /dev/misc/uinput exists. If not, create it with
mknod /dev/misc/
uinput c 10 223
. Load the module with modprobe uinput.
If you use your mouse with the XFree86 windowing system, ensure that it
has a suitable entry. If you already use a USB mouse, you should have this
already. Here is a configuration appropriate for the Microsoft Bluetooth
mouse, supporting its scroll wheel:
Section "InputDevice"
Identifier "MSMouse"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Buttons" "5"
Option "Emulate3Buttons" "false"
EndSection
Additionally, ensure that InputDevice "MSMouse" "SendCoreEvents" is added
to the ServerLayout section of your XFree86 configuration.
Page view 40
1 2 ... 36 37 38 39 40 41 42 43 44 45 46

Comments to this Manuals

No comments