[Wine] Re: no ForceFeedback in Wine

petiz wineforum-user at winehq.org
Tue Apr 21 07:35:55 CDT 2009


thanks for your help:


This is the content of /etc/udev/rules.d/60-persistent-input.rules


Code:

SUBSYSTEM!="input",			GOTO="persistent_input_end"
ACTION!="add|change",			GOTO="persistent_input_end"
# ignore the mid-level drivers
KERNEL=="input[0-9]*",			GOTO="persistent_input_end"

# usb devices
SUBSYSTEMS=="usb",			IMPORT{program}="usb_id --export"
SUBSYSTEMS=="usb", \
	ATTRS{bInterfaceClass}=="03", ATTRS{bInterfaceProtocol}=="01", \
					ENV{ID_CLASS}="kbd"
SUBSYSTEMS=="usb", \
	ATTRS{bInterfaceClass}=="03", ATTRS{bInterfaceProtocol}=="02", \
					ENV{ID_CLASS}="mouse"

# other devices
DRIVERS=="pcspkr",			ENV{ID_CLASS}="spkr"
DRIVERS=="atkbd",			ENV{ID_CLASS}="kbd"
DRIVERS=="psmouse",			ENV{ID_CLASS}="mouse"
ATTRS{name}=="*dvb*|*DVB*|* IR *",	ENV{ID_CLASS}="ir"
# this means (ABS_X || ABS_WHEEL || ABS_THROTTLE) && !BTN_TOUCH
ATTRS{modalias}=="input:*-*a[068],*|input:*-*a*,[68],*m*", \
	ATTRS{modalias}!="input:*-*k*14A,*r*", \
					ENV{ID_CLASS}="joystick"

ENV{ID_CLASS}=="?*", ENV{ID_SERIAL}=="", ENV{ID_SERIAL}="noserial"

# by-id links, generic and for the event devices
KERNEL=="mouse*|js*", ENV{ID_BUS}=="?*", ENV{ID_CLASS}=="?*", \
	SYMLINK+="input/by-id/$env{ID_BUS}-$env{ID_SERIAL}-$env{ID_CLASS}"
KERNEL=="event*", ENV{ID_BUS}=="?*", ENV{ID_CLASS}=="?*", \
	SYMLINK+="input/by-id/$env{ID_BUS}-$env{ID_SERIAL}-event-$env{ID_CLASS}"

# by-path links
IMPORT{program}="path_id $devpath"
KERNEL=="mouse*|js*", ENV{ID_PATH}=="?*", \
	SYMLINK+="input/by-path/$env{ID_PATH}-$env{ID_CLASS}"
KERNEL=="event*", ENV{ID_PATH}=="?*", \
	SYMLINK+="input/by-path/$env{ID_PATH}-event-$env{ID_CLASS}"

LABEL="persistent_input_end"




This is the content of /etc/udev/rules.d/025_logitechmouse.rules


Code:

BUS!="usb", GOTO="kcontrol_rules_end"
ACTION!="add", GOTO="kcontrol_rules_end"
SUBSYSTEM!="usb_device", GOTO="kcontrol_rules_end"

SYSFS{idProduct}=="c00e", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c00f", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c012", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c01b", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c01d", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c024", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c025", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c031", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c501", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c502", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c504", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c505", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c506", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c508", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c50b", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c50e", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"
SYSFS{idProduct}=="c702", SYSFS{idVendor}=="046d", MODE="660", GROUP="plugdev"

LABEL="kcontrol_rules_end"




This two files are the only ones which names could fit. 
The second looks like the right file. But i have no idea how to find out which is the right id







More information about the wine-users mailing list