Author: pebender
Date: Sun Dec 28 11:19:47 2008
New Revision: 4138
Removed:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/lib/udev/mm_input
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/lib/udev/rules.d/02-minimyth-dev.rules
Log:
- Removed obsolete udev rules and script that where used used create
quasi-persistent input device names.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Sun Dec 28
11:19:47 2008
@@ -33,11 +33,17 @@
Modified Wiimote
- Improved checking for whether or not a Wiimote is in use before
initializing during init.
+ - Changed per-remote configuration file names
+ '/etc/cwiid/wminput/default_{number}' to
+ '/etc/cwiid/wminput/default_{address}'
-Modified persistent device links
- - Prepended kernel device name (without instance). This is needed for
- hardware that creates multiple device types (e.g. the Wiimote).
+Modified udev rules
+ - Prepended kernel device name (without instance) to the persistent
device
+ link. This is needed for hardware that creates multiple device types
(e.g.
+ the Wiimote).
- Added persistent device links for the Wiimote.
+ - Removed obsolete udev rules and script that where used used create
+ quasi-persistent input device names.
Fixed bugs
- Fixed a bug that prevented Wiimote devices from working.
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/lib/udev/rules.d/02-minimyth-dev.rules
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/lib/udev/rules.d/02-minimyth-dev.rules
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/lib/udev/rules.d/02-minimyth-dev.rules
Sun Dec 28 11:19:47 2008
@@ -1,19 +1,12 @@
# Input devices
-# If we can, then give the input device a predictable names using the
mm_input script.
-# Otherwise, give the input device whatever name the kernel gives it.
-KERNEL=="mice",
NAME="input/%k"
-KERNEL=="mouse*", PROGRAM="/lib/udev/mm_input", RESULT=="?*",
NAME="input/mouse-$result"
-KERNEL=="mouse*",
NAME="input/%k"
-KERNEL=="event*", PROGRAM="/lib/udev/mm_input", RESULT=="?*",
NAME="input/event-$result"
-KERNEL=="event*",
NAME="input/%k"
-KERNEL=="js*" , PROGRAM="/lib/udev/mm_input", RESULT=="?*",
NAME="input/js-$result"
-KERNEL=="js*",
NAME="input/%k"
-KERNEL=="ts*" , PROGRAM="/lib/udev/mm_input", RESULT=="?*",
NAME="input/ts-$result"
-KERNEL=="ts*",
NAME="input/%k"
-KERNEL=="uinput", PROGRAM="/lib/udev/mm_input", RESULT=="?*",
NAME="input/uinput-$result"
-KERNEL=="uinput,
NAME="input/%k"
+KERNEL=="event[0-9]*", NAME="input/%k"
+KERNEL=="js[0-9]*", NAME="input/%k"
+KERNEL=="mice", NAME="input/%k"
+KERNEL=="mouse[0-9]*", NAME="input/%k"
+KERNEL=="ts[0-9]*", NAME="input/%k"
+KERNEL=="uinput, NAME="input/%k"
-# DRI devices always go into a subdirectory (as per the LSB spec)
+# DRI devices
KERNEL=="card*", NAME="dri/card%n"
# alsa devices
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---