Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-05-21 | fix location of database files | Kay Sievers | |
2009-05-21 | keep the ifdef'd udevd testing/profiling hack | Kay Sievers | |
2009-05-20 | require key names in uppercase | Kay Sievers | |
Drop pretty expensive case-insensitive matching, and key names in mixed or lowercase are not supported anyway. | |||
2009-05-20 | remove unused GL_FORMAT from rules parser | Kay Sievers | |
2009-05-20 | update TODO | Kay Sievers | |
2009-05-20 | use openat(), unlinkat(), fstatat() | Kay Sievers | |
2009-05-20 | edd_id: use openat() | Kay Sievers | |
2009-05-20 | use more efficient string copying | Kay Sievers | |
2009-05-20 | udevadm: settle - fix timeout | Alan Jenkins | |
The timeout wasn't working when settle was run as root: # udevadm control --stop-exec-queue # udevadm trigger # udevadm settle --timeout=1 ... (hangs) Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk> | |||
2009-05-19 | remove format char string truncation syntax | Kay Sievers | |
2009-05-14 | OWNER/GROUP: fix if logic | Scott James Remnant | |
The introduction of the --resolve-names=early/never code introduced a bug to the OWNER/GROUP lookup. Previously if the name had contained $, lookup would have been performed later; after the patch, the key ended up being ignored! | |||
2009-05-14 | rule-generator: cd - skip by-path links if we create by-id links | Kay Sievers | |
2009-05-14 | Revert "rules: v4l do not mix vbi and video nodes" | Kay Sievers | |
This reverts commit 6205f1186e4980544ea425d31770358d1b2579e4. | |||
2009-05-13 | fix possible endless loop for GOTO to non-existent LABEL | Kay Sievers | |
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=526365 | |||
2009-05-13 | rules: v4l do not mix vbi and video nodes | Kay Sievers | |
2009-05-13 | version bump | Kay Sievers | |
2009-05-13 | release 142 | Kay Sievers | |
2009-05-12 | delete libvolume_id | Kay Sievers | |
2009-05-11 | delete vol_id and require util-linux-ng's blkid | Kay Sievers | |
2009-05-11 | update TODO | Kay Sievers | |
2009-05-07 | add "static" back to the inline functions | Kay Sievers | |
<Keybuk> kay: udev git head ftbfs <Keybuk> udev-watch.o: In function `udev_selinux_init': <Keybuk> /../udev/udev.h:130: multiple definition of `udev_selinux_init' | |||
2009-05-05 | rules: fix ieee1394 rules | Kay Sievers | |
2009-05-05 | remove asmlinkage | Kay Sievers | |
2009-05-04 | remove all PHYSDEVPATH handling and warning about | Kay Sievers | |
2009-05-04 | oops, removed ppp entry from rules got committed | Kay Sievers | |
2009-05-04 | handle devtmpfs nodes | Kay Sievers | |
UDev follows the kernel given name, and re-uses the kernel created device node. If the kernel and spcecified udev rules disagree, the udev specified node node is created and the kernel-created on is deleted. | |||
2009-05-03 | rule-generator: net - whitelist NICs that violate MAC local scheme | Lubomir Rintel | |
According to list of assigned ethernet codes [1] referred to by IANA [2] certain global addresses do not follow the assignement scheme and use numbers reserved for local use. Several such adapters are quite widely used, generate rules for them. [1] http://www.cavebear.com/archive/cavebear/Ethernet/vendor.html [2] http://www.iana.org/assignments/ethernet-numbers | |||
2009-05-03 | rules: remove initramfs comment | Kay Sievers | |
2009-05-02 | udevd: revert initial device node creation | Kay Sievers | |
2009-05-01 | rules: add "event*" match | Kay Sievers | |
2009-05-01 | build: use AC_MSG_RESULT | Kay Sievers | |
2009-04-29 | update TODO | Kay Sievers | |
2009-04-28 | accept DEVNAME from the kernel as a hint for the node name | Kay Sievers | |
2009-04-28 | rules: add rfcomm* to group dialout | Kay Sievers | |
https://bugs.launchpad.net/bugs/368109 | |||
2009-04-27 | rules: input - fix comments | Kay Sievers | |
2009-04-27 | rules: input - add links for USB/platform non-kbd/mouse devices | Kay Sievers | |
2009-04-26 | rule_generator: net - fix usb comment generation | Kay Sievers | |
On Sat, Apr 4, 2009 at 22:17, Omair Eshkenazi <stimpson@phys.huji.ac.il> wrote: > I noticed that in (70-)persistent-net.rules, the comments for USB devices > are missing the device/vendor id's. Example: > # USB device 0x:0x (rt73usb) | |||
2009-04-26 | drop "extern" keyword from non-static function | Kay Sievers | |
2009-04-24 | update NEWS | Kay Sievers | |
2009-04-24 | rules: create /dev/cpu/<n>/cpuid world readable | Andre Przywara | |
I don't see any security implications, to be actually useful, /dev/cpu/<n>/cpuid should be world readable. The cpuid instruction can be called from userspace anyway, so there is nothing to hide. The device does not support any write operation, so 0444 should suffice. Signed-off-by: Andre Przywara <andre.przywara@amd.com> | |||
2009-04-23 | libudev: monitor - export filter_update() | Kay Sievers | |
2009-04-23 | libudev: queue - clarify comments | Kay Sievers | |
2009-04-23 | cdrom_id: skip media tests if CDROM_DRIVE_STATUS != CDS_DISC_OK | Kay Sievers | |
2009-04-23 | libudev: queue - fix get_seqnum_is_finished() | Kay Sievers | |
On Thu, Apr 23, 2009 at 11:39, Alan Jenkins <alan-jenkins@tuffmail.co.uk> wrote: > I'm puzzled by this function: > > /* if we have not seen this seqnum, check if it is/was already queued */ > if (seqnum < udev_queue->last_seen_udev_seqnum) { > udev_queue_get_udev_seqnum(udev_queue); > if (seqnum < udev_queue->last_seen_udev_seqnum) > > Shouldn't the test be (seqnum > udev_queue->last_seen_udev_seqnum) ? | |||
2009-04-23 | libudev: monitor - add udev_monitor_filter_remove | Kay Sievers | |
2009-04-23 | udevadm: monitor - add <subsytem>:<devtype> support | Kay Sievers | |
2009-04-23 | libudev: monitor - do not filter messages with wrong magic | Kay Sievers | |
2009-04-23 | libudev: monitor - switch to filter_add_match_subsystem_devtype() | Kay Sievers | |
2009-04-22 | libudev: monitor - use simpler hash | Kay Sievers | |
2009-04-22 | edd_id: add cciss devices | John Wright | |
Since cciss devices can be BIOS boot devices just as well as sd* and hd*, the edd_id program should be run on them so that the later /dev/disk/by-id/edd-* rules will work. |