Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Definitive MX700 Howto
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8  Next  
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
JuveDuke
n00b
n00b


Joined: 07 Jul 2003
Posts: 4

PostPosted: Thu Apr 21, 2005 3:08 am    Post subject: Reply with quote

Here's my attempt at a guide:

http://www.slackerlounge.org/index.php?pageid=3

Suggestions are welcome.



I'll probably work on explaining xinitrc a little more to begin with.


Last edited by JuveDuke on Tue Nov 22, 2005 3:58 pm; edited 3 times in total
Back to top
View user's profile Send private message
upalom00
Tux's lil' helper
Tux's lil' helper


Joined: 11 Jan 2004
Posts: 78
Location: Santa Clara

PostPosted: Sat Apr 23, 2005 10:59 pm    Post subject: Reply with quote

JuveDuke

Your link was live a few minutes ago....but now it seems "dead". Access error message.
Back to top
View user's profile Send private message
iverson0881
Apprentice
Apprentice


Joined: 08 Jan 2004
Posts: 285
Location: CA

PostPosted: Sun Apr 24, 2005 3:47 am    Post subject: Reply with quote

Try this link instead
http://www.slackerlounge.org/slack.php?type=linux&id=1

Or go to the main domain and click the link to the guide.
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Sun Apr 24, 2005 4:03 am    Post subject: Reply with quote

iverson0881 wrote:
Try this link instead
http://www.slackerlounge.org/slack.php?type=linux&id=1

Or go to the main domain and click the link to the guide.

Some observations:

Code:
MX700 is a 10 button mouse, not 8

Mice and PS/2 Mouse modules in "Input Device Support" section are not needed to get this mouse working.

/dev/hiddev raw HID device support in "USB Support" section is not required.

Option "Device" "/dev/usbmouse" in xorg.conf will probably be /dev/input/xxxx for most people, not /dev/usbmouse. (xxxx is mouse0, event0, etc)

I don't think "Resolution" option in xorg.conf works for MX700 series. (Atleast it's not on mine)
Back to top
View user's profile Send private message
snizfast
n00b
n00b


Joined: 22 Sep 2004
Posts: 43

PostPosted: Sun Apr 24, 2005 3:57 pm    Post subject: Reply with quote

iverson0881 wrote:

MX700 is a 10 button mouse, not 8


No its an 8 button mouse. The glide up and down are the same as scrolling up and down in terms of the imput to the computer.
_________________
Talk is cheap, supply exceeds demand
alias nocomment='sed -e '\''s/#.*//;/^\s*$/d'\'' '
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Sun Apr 24, 2005 4:38 pm    Post subject: Reply with quote

snizfast wrote:

No its an 8 button mouse. The glide up and down are the same as scrolling up and down in terms of the imput to the computer.

Actually they are not. Those 2 buttons are "cruise control" buttons linked to the scroll wheel.

Using xev you can see that pressing either of those buttons produces 2 button codes: the first code is the same as wheel scroll and the second code is the cruise button code. Using the logitech_applet you can turn off the cruise feature and these buttons only produce their own code and not the scroll button code also.

This gives you 10 discreet button inputs. Works flawlessly here and having 10 buttons is great for ut2004 and activating public and team voice chats using those buttons. :-)
Back to top
View user's profile Send private message
upalom00
Tux's lil' helper
Tux's lil' helper


Joined: 11 Jan 2004
Posts: 78
Location: Santa Clara

PostPosted: Sun Apr 24, 2005 6:56 pm    Post subject: Reply with quote

I followed the link posted by jukedev and followed the guide. Now with different settings in xorg.conf my mouse is either not working at all when entering my desktop or gdm does not allow me to enter my desktop environment. Its a bit frusterating as I went from a semi-working mouse to no mouse at all.

I am typing this in by hand in links
Here is my xorg.conf:
Code:

Section "InputDevice"
  Identifier "Mouse1"
  Driver "mouse"
  Option "Protocol" "uvdev"
  Option "Dev Name" "LogiTech USB Receiver"
  Option "Dev Phys" "usb-0000:00:02.1-2.21/input1"
  Option "Device" "/dev/input/event1"
  Option "Buttons" "10"
  Option "ZAxisMapping" "9 10"
  Option "Resolution" "1000"
EndSection


Here is what I get when I run the following command:
Code:

$cat /etc/src/linux/.config | grep -i -e hid
CONFIG_USB_HID=y
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
CONFIG_USB_HIDDEV=y
# CONFIG_USB_PHIDGETKIT is not set
CONFIG_USB_PHIDGETSERVO=m

Another command
Code:

$cat /etc/src/linux/.config | grep -i -e mouse
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_INPORT is not set
# CONFIG_MOUSE_LOGIBM is not set
# CONFIG_MOUSE_PC110PAD is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_USB_IDMOUSE is not set

I also configured the kernel following jukedev's guide on his website.

So...where did I mess up? Would love to get my mouse working again.
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Sun Apr 24, 2005 7:26 pm    Post subject: Reply with quote

upalom00,

try changing
Code:
Option "Dev Phys" "usb-0000:00:02.1-2.21/input1"
to
Code:
Option      "Dev Phys"      "usb-*/input1"


Also, you can try event0 and mouse0 instead of event1 in
Code:
Option "Device" "/dev/input/event1"
Back to top
View user's profile Send private message
upalom00
Tux's lil' helper
Tux's lil' helper


Joined: 11 Jan 2004
Posts: 78
Location: Santa Clara

PostPosted: Sun Apr 24, 2005 7:58 pm    Post subject: Reply with quote

Quote:
upalom00,

try changing
Code:
Option "Dev Phys" "usb-0000:00:02.1-2.21/input1"
to
Code:
Option "Dev Phys" "usb-*/input1"


SWEET!
What a simple fix. Thanks dude! My mouse is now working as well as the scroll wheel.
Back to top
View user's profile Send private message
JuveDuke
n00b
n00b


Joined: 07 Jul 2003
Posts: 4

PostPosted: Mon Apr 25, 2005 2:11 am    Post subject: Reply with quote

http://www.slackerlounge.org/index.php?pageid=3

Alright, sorry about that, fixed my link.

Learning php and mysql as I go (and ftp access on my host went down for a bit so I couldn't fix things).


Last edited by JuveDuke on Tue Nov 22, 2005 3:59 pm; edited 4 times in total
Back to top
View user's profile Send private message
JuveDuke
n00b
n00b


Joined: 07 Jul 2003
Posts: 4

PostPosted: Mon Apr 25, 2005 2:28 am    Post subject: Reply with quote

Headrush wrote:
iverson0881 wrote:
Try this link instead
http://www.slackerlounge.org/slack.php?type=linux&id=1

Or go to the main domain and click the link to the guide.

Some observations:

Code:
MX700 is a 10 button mouse, not 8

Mice and PS/2 Mouse modules in "Input Device Support" section are not needed to get this mouse working.

/dev/hiddev raw HID device support in "USB Support" section is not required.

Option "Device" "/dev/usbmouse" in xorg.conf will probably be /dev/input/xxxx for most people, not /dev/usbmouse. (xxxx is mouse0, event0, etc)

I don't think "Resolution" option in xorg.conf works for MX700 series. (Atleast it's not on mine)


Thanks for the input. :)

In my opinion it's an 8 button and 10 input mouse (I'm not going by what the computer thinks, but what seems natural to most people (myself included), especially people just getting in to linux). I don't think it's anything to worry about.

I added an optional kernel settings section (I still think PS/2 support is important and wouldn't want to mislead people, and I'm not sure what raw HID device support does right now, so I don't want to take it off yet).

I saw that I made the usbmouse symlink so I fixed that up and took out the resolution (I think you're right about it not doing anything for this mouse, after testing it out).

EDIT: Upon further investigation I took out the raw HID device support.
Back to top
View user's profile Send private message
iverson0881
Apprentice
Apprentice


Joined: 08 Jan 2004
Posts: 285
Location: CA

PostPosted: Mon Apr 25, 2005 5:07 am    Post subject: Reply with quote

Alright well tried out the guide and it's quite nice but.......

I'm a bit confused with the last part, the xbindkeys configuration. I tried copying your config onto mine and that didn't work so I tried using xbindkeys -mk and I didn't get anything close to like yours. For example CTRL + R would yield m:0x04 + c:27. So I think something is up. My buttons are all screwed up too. For example, the left click does do the the normal clicking but I can't highlight. The quick scroll up/down does left clicking but with highlighting. It's a bit weird.

.xinitrc contents:
Code:

 /usr/X11R6/bin/xmodmap -e "pointer = 1 2 3 6 7 8 9 10 4 5" &
xbindkeys
beagled
best


.xbindkeysrc
Code:

 "xvkbd -xsendevent -text "\[Alt_L]\[Left]""
m:0x08 + c:100

"xvkbd -xsendevent -text "\[Alt_L]\[Right]""
m:0x08 + c:102

xvkbd -xsendevent -text "\[Page_Up]""
m:0x0 + c:99

"xvkbd -xsendevent -text "\[Page_Down]""
m:0x0 + c:105

"xvkbd -xsendevent -text "\Cr""
m:0x4 + c:27


Thanks.
Back to top
View user's profile Send private message
JuveDuke
n00b
n00b


Joined: 07 Jul 2003
Posts: 4

PostPosted: Mon Apr 25, 2005 11:45 am    Post subject: Reply with quote

The xbindkeys -mk utility is meant to (at least in this use of the program) capture mouse button clicks and tell you what mouse button is being pressed inside that little window. This helps to match up the values coming after the "b:" with what you want.

So, if you notice that what you're programming to be the forward button (in this case I was mapping "b:7" to be forward) actually corresponds to a different button (maybe the back button) then you can switch up the b:7 and b:6 lines.

And when you did it originally what exactly happened?
Back to top
View user's profile Send private message
[Lx]-=Mystify=-
Apprentice
Apprentice


Joined: 16 Mar 2004
Posts: 180

PostPosted: Mon Apr 25, 2005 11:25 pm    Post subject: Reply with quote

I also try to get my MX500 to work...

I didn't solve the problem, that some buttons produce more than 1 button click...

I use evdev compiled into my kernel, and in the xorg config
Code:
Section "InputDevice"
        Identifier  "Mouse[1]"
        Option      "Name" "Logitech MX500 USB"
        Driver      "mouse"

####################################################################
# new configuration with evdev protocol
####################################################################
        Option      "Protocol" "evdev"
        Option      "Dev Name" "B16_b_02 USB-PS/2 Optical Mouse"
        Option      "Dev Phys" "usb-*/input0"
        Option      "Buttons" "10"
        Option      "ZAxisMapping" "9 10"
EndSection


my buttons give the following events (look here for my naming convention of the buttons):
Code:

Left: button1          <= that's ok
scroll press: button2          <= that's ok
sroll up: button9          <= that's ok
scroll down: button10          <= that's ok
right: button3          <= that's ok
up: button2, button7          <= NOT ok
down: button8          <= that's ok
program switcher: button1, button6          <= NOT ok
foward: button5          <= that's ok
back: button4          <= that's ok


smart scroll/cruise control is disabled via the logitech_applet.

can anoyone give a hint why the 2 mouse buttons produce 2 events when pressed? don't know where to search and what might be my problem...
Back to top
View user's profile Send private message
Genfoo'
Tux's lil' helper
Tux's lil' helper


Joined: 24 Feb 2004
Posts: 112

PostPosted: Tue Apr 26, 2005 9:58 pm    Post subject: Reply with quote

I got my MX1000 to work the way I want it to with this:

emerge -p gentoo-sources
Code:
[ebuild   R   ] sys-kernel/gentoo-sources-2.6.11-r6

/usr/src/linux/.config
Code:
...
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_EHCI_HCD=y
# CONFIG_USB_EHCI_SPLIT_ISO is not set
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_UHCI_HCD=y
...
CONFIG_INPUT_EVDEV=y
...
CONFIG_USB_HID=y
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
# CONFIG_USB_HIDDEV is not set
...
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_MOUSE is not set
# CONFIG_USB_IDMOUSE is not set
...

emerge -p xorg-x11
Code:
[ebuild   R   ] x11-base/xorg-x11-6.8.2-r1

/etc/X11/xorg.conf
Code:
...
Section "InputDevice"
    Identifier   "Mouse1"
    Driver "mouse"
    Option "Protocol"     "evdev"
    Option "Dev Name"     "Logitech USB Receiver"
    Option "Dev Phys"     "usb-0000:00:1f.2-2/input0"
    Option "Device"       "/dev/input/event0"
    Option "Buttons"      "12"
    Option "ZAxisMapping" "11 12"
    Option "Resolution"   "800"
EndSection
...

/etc/X11/xinit/Xmodmap
Code:
pointer = 1 2 3 8 9 10 11 12 6 7 4 5\n

~/.xbindkeysrc
Code:
# Back and Forward
"xvkbd -xsendevent -text "\[Alt_L]\[Left]""
m:0x10 + b:8
"xvkbd -xsendevent -text "\[Alt_L]\[Right]""
m:0x10 + b:9

# 'Cruise Control'
"xvkbd -xsendevent -text "\[Page_Up]""
m:0x10 + b:11
"xvkbd -xsendevent -text "\[Page_Down]""
m:0x10 + b:12

GNOME Menu -> Desktop -> Preferences -> Sessions -> Startup Programs -> add xbindkeys

The scroll and tilt on the wheel work, forward and back on the side work, and the 'Cruise Control' buttons work. I haven't found a use for the App Switch button yet, but it does work. All the buttons, except 'Cruise Control', work in America's Army.

Can anyone tell me how to get xbindkeys to start with X so the settings are global and not just for this user account?
Back to top
View user's profile Send private message
kiel.wells
Tux's lil' helper
Tux's lil' helper


Joined: 10 Sep 2004
Posts: 97

PostPosted: Wed Apr 27, 2005 6:05 am    Post subject: Reply with quote

Why does the "Device" line have to be something besides /dev/input/mice?

No matter what I put for "Device", Xorg cannot find my mouse when I have this config
Code:
Section "InputDevice"
   Identifier  "Mouse1"
   Driver      "mouse"
   Option       "Protocol" "evdev"
#   Option       "Protocol" "auto"
   Option      "Dev Name" "Logitech USB Reciever"
   Option       "Dev Phys" "usb-*/input0"
   Option       "Device" "/dev/input/mouse0"
   Option       "Buttons" "10"
   Option       "ZAxisMapping" "4 5"
EndSection
but it works like a regular 3 button mouse (without the extra buttons) when I use this config
Code:
Section "InputDevice"
   Identifier  "Mouse1"
   Driver      "mouse"
#   Option       "Protocol" "evdev"
   Option       "Protocol" "auto"
#   Option      "Dev Name" "Logitech USB Reciever"
#   Option       "Dev Phys" "usb-*/input0"
   Option       "Device" "/dev/input/mice"
   Option       "Buttons" "10"
   Option       "ZAxisMapping" "4 5"
EndSection
I don't quite understand how to get this working, and I've tried putting all sorts of different specifications in for Device, but none of them actually worked.

Also, is there a way to get all this working with gdm, or in such away that I can boot to graphics, and not have to type in startx from the command line and still get all the button functionality?
_________________
AMD Athlon64 3000+ Winchester Core @ 1.813 GHz
Asus A8N5X
2GB RAM (4x512) PC3200 400MHz
1 200 GB HDD (SATA), 1 250GB HDD (SATA)
1 NEC DVD-RW, 1 DVD-R/CD-RW
420W Enermax ATX 2.0
Back to top
View user's profile Send private message
Genfoo'
Tux's lil' helper
Tux's lil' helper


Joined: 24 Feb 2004
Posts: 112

PostPosted: Wed Apr 27, 2005 1:00 pm    Post subject: Reply with quote

If you are using evdev protocol then use:
Code:
Option "Device"       "/dev/input/event0"

To start GDM at boot type:
Code:
rc-update add xdm default

and look in /etc/rc.conf and make sure
Code:
DISPLAYMANAGER="gdm"
Back to top
View user's profile Send private message
iverson0881
Apprentice
Apprentice


Joined: 08 Jan 2004
Posts: 285
Location: CA

PostPosted: Wed Apr 27, 2005 2:28 pm    Post subject: Reply with quote

kiel.wells wrote:
Why does the "Device" line have to be something besides /dev/input/mice?

No matter what I put for "Device", Xorg cannot find my mouse when I have this config
Code:
Section "InputDevice"
   Identifier  "Mouse1"
   Driver      "mouse"
   Option       "Protocol" "evdev"
#   Option       "Protocol" "auto"
   Option      "Dev Name" "Logitech USB Reciever"
   Option       "Dev Phys" "usb-*/input0"
   Option       "Device" "/dev/input/mouse0"
   Option       "Buttons" "10"
   Option       "ZAxisMapping" "4 5"
EndSection
but it works like a regular 3 button mouse (without the extra buttons) when I use this config
Code:
Section "InputDevice"
   Identifier  "Mouse1"
   Driver      "mouse"
#   Option       "Protocol" "evdev"
   Option       "Protocol" "auto"
#   Option      "Dev Name" "Logitech USB Reciever"
#   Option       "Dev Phys" "usb-*/input0"
   Option       "Device" "/dev/input/mice"
   Option       "Buttons" "10"
   Option       "ZAxisMapping" "4 5"
EndSection
I don't quite understand how to get this working, and I've tried putting all sorts of different specifications in for Device, but none of them actually worked.

Also, is there a way to get all this working with gdm, or in such away that I can boot to graphics, and not have to type in startx from the command line and still get all the button functionality?


You did what I did. Spell something wrong =P

Option "Dev Name" "Logitech USB Reciever"

repeat after me I before E except after C

Change it to:
Option "Dev Name" "Logitech USB Receiver"

Uncomment the line and try again.
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Wed Apr 27, 2005 3:35 pm    Post subject: Reply with quote

kiel.wells, how are you testing the configuration?

Start the program xev and while the mouse pointer is in the window that appears, try each mouse button and see if it produces any code.

You'll probably want to use XAxisMapping "9 10" and then use xmodmap to change the mappings.


Last edited by Headrush on Wed Apr 27, 2005 10:22 pm; edited 1 time in total
Back to top
View user's profile Send private message
kiel.wells
Tux's lil' helper
Tux's lil' helper


Joined: 10 Sep 2004
Posts: 97

PostPosted: Wed Apr 27, 2005 5:51 pm    Post subject: Reply with quote

Well, with my current config it recognizes left, right, scroll-up, scroll-down, and middle-click.

The cruise control buttons are attached to the scroll wheel, but when cruisecontrol is disabled, they aren't recognized.

the quick switch button is listed as button1.

I've tried the walk-through of that link above, followed it exactly to the letter, and couldn't get it to recognize a core pointer.

I also want to have imwheel and xmodmap run when gdm starts, so i don't have to 'startx' from a console.

TIA

-Kiel
_________________
AMD Athlon64 3000+ Winchester Core @ 1.813 GHz
Asus A8N5X
2GB RAM (4x512) PC3200 400MHz
1 200 GB HDD (SATA), 1 250GB HDD (SATA)
1 NEC DVD-RW, 1 DVD-R/CD-RW
420W Enermax ATX 2.0
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Wed Apr 27, 2005 6:08 pm    Post subject: Reply with quote

kiel.wells wrote:
Well, with my current config it recognizes left, right, scroll-up, scroll-down, and middle-click.

The cruise control buttons are attached to the scroll wheel, but when cruisecontrol is disabled, they aren't recognized.

You keep saying it's recognized, but by what? An application or xev?
You have to start at basic levels first and see if the input layer recognizes the buttons, hence why you need to use xev. Don't run anything else effecting the mouse, including xbindkeys, xmodmap, imwheel.

You said when cruside control is disabled; are you using logitech_applet to try to disable? If so, ignore it for now. You are trying two many things at once.

kiel.wells wrote:
I also want to have imwheel and xmodmap run when gdm starts, so i don't have to 'startx' from a console.
Like I said, forget key mappings and such until we know input from device is being properly recognized.
Back to top
View user's profile Send private message
kiel.wells
Tux's lil' helper
Tux's lil' helper


Joined: 10 Sep 2004
Posts: 97

PostPosted: Wed Apr 27, 2005 9:22 pm    Post subject: Reply with quote

Sorry, I meant to say 'xev' but forgot when I posted earlier.

Yes, xev recognizes button 1(left click), button 2 (middle click), button 3 (right click), button 4 (scroll up), and button 5 (scroll down). The 'quick switch' button produces a button 1 event in xev.

The cruise control buttons produce the same events as scroll up and down, just like they should. When cruise control is disabled by the logitech_applet, neither button produces an event in xev.

The two side buttons do not produce an event in xev at all.
_________________
AMD Athlon64 3000+ Winchester Core @ 1.813 GHz
Asus A8N5X
2GB RAM (4x512) PC3200 400MHz
1 200 GB HDD (SATA), 1 250GB HDD (SATA)
1 NEC DVD-RW, 1 DVD-R/CD-RW
420W Enermax ATX 2.0
Back to top
View user's profile Send private message
Headrush
Watchman
Watchman


Joined: 06 Nov 2003
Posts: 5597
Location: Bizarro World

PostPosted: Wed Apr 27, 2005 9:31 pm    Post subject: Reply with quote

kiel.wells,

Are you sure no other programs ran that modified mouse input?

The cruise buttons should produce two button pushes in xev, not one. Then when cruise is deactivated by logitech_applet you are left with the unique one. Seems like logitech_applet is correctly removing the second one, so leads me to believe, either something else is modifying the input, or your not getting the right input.

Have you tried the other inputs in /dev/input including /dev/input/event0?
You have to modify xorg.conf and restart X each time to test.

And can you change the ZAxisMApping to "9 10"
Back to top
View user's profile Send private message
kiel.wells
Tux's lil' helper
Tux's lil' helper


Joined: 10 Sep 2004
Posts: 97

PostPosted: Wed Apr 27, 2005 10:07 pm    Post subject: Reply with quote

Well, right now all the buttons produce separate events in xev, but they're a little confused.

Button 1 = Left click
Button 2 = middle click
Button 3 = right click
button 4 = big side button
button 5 = little side button
button 6 = quick switch button
button 7 = cruise up button
button 8 = cruise down button
button 9 = wheel up
button 10 = wheel down

The two side buttons control scrolling at the moment, but they are backwards (forward one goes down, rearward one goes up).
_________________
AMD Athlon64 3000+ Winchester Core @ 1.813 GHz
Asus A8N5X
2GB RAM (4x512) PC3200 400MHz
1 200 GB HDD (SATA), 1 250GB HDD (SATA)
1 NEC DVD-RW, 1 DVD-R/CD-RW
420W Enermax ATX 2.0
Back to top
View user's profile Send private message
iverson0881
Apprentice
Apprentice


Joined: 08 Jan 2004
Posts: 285
Location: CA

PostPosted: Wed Apr 27, 2005 10:07 pm    Post subject: Reply with quote

Dev name isn't just a display name. It does matter. it is what is listed in cat /proc/bus/input/devices . My spelling error made a big difference as X would refuse to run and would say no pointer was available. It isn't the same as "Identifier" as described in video card area. So yeah it isn't just a name it corresponds to your device.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8  Next
Page 6 of 8

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum