summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-12-15rules: add "block" match to floppy ruleKay Sievers
2009-12-15cdrom_id: remove deprecated device matchesKay Sievers
2009-12-15remove remaining support for CONFIG_SYSFS_DEPRECATEDKay Sievers
2009-12-15configure.ac: version bumpKay Sievers
2009-12-15floppy: fix rule to create additional floppy device nodesKay Sievers
2009-12-15libudev: wrap in extern "C" block for C++Daniel Elstner
When libudev.h is included from C++ code, wrap the declarations in an extern "C" { ... } block. This tells the C++ compiler that symbols are exported with C linkage and no name-mangling.
2009-12-15keymap: fix findkeyboardsMartin Pitt
Update findkeyboards for the recent ID_CLASS deprecation, use ID_INPUT_KEYBOARD instead. This simplifies the logic a bit, too.
2009-12-14keymap: handle atkbd force_release quirkJohannes Stezenbach
Some laptop keyboards don't generate release events for some hotkeys. Since linux-2.6.32 the list of scancodes for which to enable the force_release quirk can be set via sysfs. Apply this to Samsung N130. Signed-off-by: Johannes Stezenbach <js@sig21.net> Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
2009-12-1495-keymap.rules: Run on change events, tooMartin Pitt
2009-12-14keymap: add Samsung N130Johannes Stezenbach
Signed-off-by: Johannes Stezenbach <js@sig21.net> Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
2009-12-1070-acl.rules: ACL manage Android G1 dev phonesScott James Remnant
There doesn't seem to be any special class for their developer interface, so match by Vendor and Device id like we do for things like fingerprint readers. This is better than their current 0666 suggestion <g> Signed-off-by: Scott James Remnant <scott@ubuntu.com>
2009-12-10keymap: Add Acer Aspire 1810TMartin Pitt
https://launchpad.net/bugs/492657
2009-12-08util_unlink_secure(): chmod() before chown()Kay Sievers
2009-12-04Export ID_WWN_VENDOR_EXTENSION and ID_WWN_WITH_EXTENSIONDavid Zeuthen
Some SCSI devices use the same WWN and have a WWN extension that we need to take into account when creating the /dev/disk/by-id/wwn symlinks. Thus, introduce ID_WWN_WITH_EXTENSION. This property will contain either the WWN (if no extension is present) or the WWN with the vendor extension appended. Example: # /lib/udev/ata_id/ata_id --export /dev/sda |grep WWN ID_WWN=0x5001517387d61905 ID_WWN_WITH_EXTENSION=0x5001517387d61905 # /lib/udev/scsi_id --whitelisted --export -d /dev/sdb |grep WWN ID_WWN=0x600508b400105df7 ID_WWN_VENDOR_EXTENSION=0x0000e00000d80000 ID_WWN_WITH_EXTENSION=0x600508b400105df70000e00000d80000 # /lib/udev/scsi_id --whitelisted --export -d /dev/sdc |grep WWN ID_WWN=0x600508b400105df7 ID_WWN_VENDOR_EXTENSION=0x0000e00000db0000 ID_WWN_WITH_EXTENSION=0x600508b400105df70000e00000db0000 Signed-off-by: David Zeuthen <davidz@redhat.com>
2009-12-03release 149Kay Sievers
2009-12-03fix both in-tree and out-of-tree buildsKay Sievers
On Thu, Dec 3, 2009 at 14:31, Daniel Elstner <daniel.kitta@googlemail.com> wrote: > However, I'd recommend to look first in the build directory, and then in > the source directory to match the behavior of make with VPATH builds. > The idea is that a file in the build tree, if it exists, overrides a > file of the same name in the source tree.
2009-12-03really really fix both in-tree and out-of-tree buildsKay Sievers
The include is still missing: GEN extras/gudev/GUdev-1.0.gir In file included from <stdin>:4: /home/kay/work/src/udev/extras/gudev/gudev.h:26:34: error: gudev/gudevenumtypes.h: No such file or directory Also prepend $(builddir).
2009-12-03really fix both in-tree and out-of-tree buildsDaniel Elstner
Makefile.am (extras/gudev/GUdev-1.0.gir): Look for gudevenumtypes.h in both the build directory and the source directory, so that it works in either case.
2009-12-03configure.ac: version bumpKay Sievers
2009-12-03libudev: doc - use #NULLKay Sievers
2009-12-03udev_device_get_parent_with_subsystem_devtype(): Clarify documentationMartin Pitt
devtype can be NULL, in which case it is ignored for matching.
2009-12-03input-id: identify touchscreensDmitry Torokhov
Add detection of touchscreens to the input-id utility. Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
2009-12-03input_id: Check mouse button for ID_INPUT_MOUSEMartin Pitt
Before we bless an input device as a mouse, verify that it has a left button (BTN_MOUSE). Thanks to Dmitry Torokhov <dtor@mail.ru> for pointing out!
2009-12-03input_id: check event maskMartin Pitt
Check the capabilities/ev for the particular event class before testing bits in that event class. This avoids testing potentially bogus data if the device does not support that class of events at all. Thanks to Dmitry Torokhov for pointing out!
2009-12-03input_id: small optimizationMartin Pitt
In the parent traversal loop, use udev_device_get_parent_with_subsystem_devtype() to only grab "input" class devices.
2009-12-03input_id: Do not tag non-input devices with ID_INPUTMartin Pitt
Current rules only call it for input devices, but let's be correct.
2009-12-03input_id: Fix endless loop for non-input devicesMartin Pitt
When being called on a device which is not in the "input" subsystem, or doesn't have an "input" parent, it got stuck in an endless loop. Unfortunately this includes the virtual/input/mice multiplexer, which exposes this bug on just about every system.
2009-12-02release 148Kay Sievers
2009-12-02Revert "Fix out-of-tree builds"Kay Sievers
This reverts commit 326e15a8ed97a22f2fe52d203896763d75f93c2c. The issue in: http://git.kernel.org/?p=linux/hotplug/udev.git;a=commit;h=7fa9bb9dbf538bf3c8a25a6699f65a8ac9cc8bbf still exists. We need to find a reliable way not to break "make distcheck" here.
2009-12-02input_id: code cleanupMartin Pitt
Now use libudev to clean up hardcoded /sys/ and /device/ paths, and to also support direct input device arguments. Now both "input4" and "event4" will work.
2009-12-02Fix out-of-tree buildsScott James Remnant
gudevenumtypes.h won't be under $(top_srcdir) when built out-of-tree from GIT. Signed-off-by: Scott James Remnant <scott@ubuntu.com>
2009-11-30extras/input_id: Correctly identify touchpadsDmitry Torokhov
BTN_TOUCH (as well as ABS_PRESSURE) is used not only by touchpads but by touchscreens as well. The proper check for a touchpad is presence of BTN_TOOL_FINGER and absence of BTN_TOOL_PEN (the latter to filter out some tablets that use BTN_TOOL_FINGER). Tablet matching should be on either BTN_TOOL_PEN or BTN_STYLUS.
2009-11-30input: Deprecate ENV{ID_CLASS}Martin Pitt
The ID_CLASS property on input devices has been replaced by the more accurate set of flags ID_INPUT_{KEYBOARD,KEYS,MOUSE,TOUCHPAD,TABLET,JOYSTICK}. Rewrite 60-persistent-input.rules to use the new properties now and not export ID_CLASS any more, since it is not used by anything else any more. Add note about migration to NEWS, in case this is being used in custom rules.
2009-11-3070-acl.rules: Use new-style input propertiesMartin Pitt
ID_CLASS is deprecated for input devices. Use new ID_INPUT_JOYSTICK instead.
2009-11-30extras: Add input_idMartin Pitt
input_id probes input/event devices for their class (keyboard, keys, mouse, touchpad, tablet, joystick). This is based on the corresponding hal code in hald/linux/device.c, input_test_{abs,rel,...}. This should provide enough functionality to get hal-less X.org working (which in particular needs to know exactly which devices are touchpads). Replace the brittle hacks in 60-persistent-input.rules with checking for the new ID_INPUT_* flags. This keeps the old ID_CLASS properties for now (but they are to be removed later on). Note: The current code has several hacks still, which are to be replaced with proper libudev calls later on.
2009-11-25Also create /dev/disk/by-id/wwn-0x..-part%n symlinks for partitionsDavid Zeuthen
# ls -l /dev/disk/by-id/wwn-0x500 wwn-0x500000e01b83f360 wwn-0x50014ee25578924f-part1 wwn-0x500000e01b83f440 wwn-0x50014ee25578924f-part2 wwn-0x500000e01b83f520 wwn-0x50014ee2aabdc41b wwn-0x500000e01b843d90 wwn-0x50014ee2aabdc41b-part1 wwn-0x5000c50016359fd1 wwn-0x50014ee2aabdc41b-part2 wwn-0x50014ee0016eb4f5 wwn-0x5001517958cabd77 wwn-0x50014ee0016eb572 wwn-0x5001517958cabd77-part1 wwn-0x50014ee055d524e2 wwn-0x5001517958cabd77-part2 wwn-0x50014ee055d524e2-part1 wwn-0x5001517958d6a74e wwn-0x50014ee055d524e2-part2 wwn-0x5001517958d6a74e-part1 wwn-0x50014ee1003d9c50 wwn-0x5001517958d6a74e-part2 wwn-0x50014ee1003d9c50-part1 wwn-0x50024e9200c0c693 wwn-0x50014ee1003d9c50-part2 wwn-0x50024e9200c0c694 wwn-0x50014ee1aac30d4e wwn-0x50024e9200c0c6ae wwn-0x50014ee1aac30d4e-part1 wwn-0x50024e9200c0c6af wwn-0x50014ee1aac30d4e-part2 wwn-0x50024e9200c0c6b0 wwn-0x50014ee25578924f wwn-0x50024e9200c0c6b1 Signed-off-by: David Zeuthen <davidz@redhat.com>
2009-11-25Create /dev/disk/by-id/wwn-0x... symlinksDavid Zeuthen
Now that both ata_id and scsi_id exports the World Wide Name in the ID_WWN property, use this to create persistent symlinks. Example /dev/disk/by-id/wwn-0x500000e01b83f360 -> ../../sdn /dev/disk/by-id/wwn-0x500000e01b83f440 -> ../../sdm Signed-off-by: David Zeuthen <davidz@redhat.com>
2009-11-25Fix typo in NEWS, ConsoleKit-0.4.11 -> 0.4.1Daniel Mierswa
Signed-off-by: Daniel Mierswa <impulze@impulze.org>
2009-11-23modem-modeswitch: 61-option-modem-modeswitch.rules is only for Option NV devicesDan Williams
Make people aware that they shouldn't add devices not manufactured by Option NV to 61-option-modem-modeswitch.rules. modem-modeswitch only supports ejecting the fake CD for Option NV devices at this time. People should be using (and fixing) usb_modeswitch instead of modem-modeswitch.
2009-11-23Revert "extras/modem-modeswitch: Add Huawei E1550 GSM modem"Dan Williams
This reverts commit 53842b53820a0f0b2b0ff5b28caf01e3f7e26f22. The 'option-zerocd' method should *only* be used with Option NV devices since other manufacturers have completely different methods for killing their fake driver CD.
2009-11-23Revert "modem-modeswitch: add a device"Dan Williams
This reverts commit 5052297b6a8928d3ccfdd9996b71fdfff8bc8921. The 'option-zerocd' method should *only* be used with Option NV devices since other manufacturers have completely different methods for killing their fake driver CD.
2009-11-23scsi_id: Export WWN and Unit Serial NumberDavid Zeuthen
Since the Unit Serial Number and the WWN are useful bits of information export them as properties in the udev database. These bits of information are often printed on the physical disk, see http://people.freedesktop.org/~david/FUJITSU-MAY2036RC-sas-disk-picture.jpg and displaying them separately in the UI (or in /dev/disk) might help users identify the physical disk. This patch exports these bits of information as ID_WWN and ID_SCSI_SERIAL. Note that ata_id also use the ID_WWN property since commit 66094a4a7fc1d303e80785d586800eae9841502b (2009-11-04). Also print out ID_SCSI=1 so users of the udev database knows the disk speaks SCSI. Here's the scsi_id output from one of my SAS disks with these changes: ID_SCSI=1 ID_VENDOR=FUJITSU ID_VENDOR_ENC=FUJITSU\x20 ID_MODEL=MAY2036RC ID_MODEL_ENC=MAY2036RC\x20\x20\x20\x20\x20\x20\x20 ID_REVISION=0103 ID_TYPE=disk ID_SERIAL=3500000e01b83f520 ID_SERIAL_SHORT=500000e01b83f520 ID_WWN=0x500000e01b83f520 ID_SCSI_SERIAL=B3G1P8500RWT Unfortunately we can't overload ID_SERIAL for two reasons 1. ID_SERIAL (and ID_SERIAL_SHORT) exported by scsi_id isn't really the unit serial number (as defined by SCSI) - it is sometimes the WWN (since it is more unique than the Unit Serial Number) and complex rules (to make the serial unique) govern what value to use. 2. It would break existing setups if the value of ID_SERIAL changed Signed-off-by: David Zeuthen <davidz@redhat.com>
2009-11-20README.keymap.txt: small clarificationMartin Pitt
2009-11-20ata_id: skip ATA commands if we find an optical driveKay Sievers
Some drives are reported to erase CD-RW media with the ATA commands we send. Thanks to Christoph Stritt <phoenix@jobob.com> for his debugging. Original bug is here: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=556635
2009-11-19rules: remove support for IDE (hd*) devicesKay Sievers
The kernel IDE drivers get deprecated now: http://article.gmane.org/gmane.linux.ide/43151 Almost everybody has switched over to libata devices long ago. Recent services do not work with the now deprecated IDE drivers at all and require libata drivers and SCSI infrastructure. Systems who care about the old stuff need to add the rules to the compat rules.
2009-11-16udev-test.pl: catch-up with recent changesKay Sievers
2009-11-16test-udev: remove "ignore_device" codeKay Sievers
2009-11-16print warning for BUS=, SYSFS{}=, ID=Kay Sievers
2009-11-16remove "ignore_device"Kay Sievers
There is no way to ignore an event these days. Libudev events can not be suppressed. It only prevents RUN keys from being executed, which results in an inconsistent behavior in current setups.
2009-11-12modem-modeswitch: add a deviceHarald Hoyer