Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-15 | libudev: add gtk-doc | Kay Sievers | |
2009-06-14 | rules: Gentoo update | Matthias Schwarzott | |
2009-06-14 | USE_LOG -> ENABLE_LOGGING, DEBUG -> ENABLE_DEBUG, USE_SELINUX -> WITH_SELINUX | Kay Sievers | |
2009-06-11 | README: add INOTIFY and SIGNALFD | Kay Sievers | |
2009-06-11 | README: add kernel options | Kay Sievers | |
2009-06-10 | udevadm: info -revert "accept --query without argument" | Kay Sievers | |
Getopt is too dumb, the optional argument breaks "udevadm -q symlink". | |||
2009-06-10 | update NEWS | Kay Sievers | |
2009-06-10 | rules: remove scsi ch module loading rule | Kay Sievers | |
2009-06-09 | libudev: rename private files to *-private.c | Kay Sievers | |
2009-06-09 | move common stuff from udev/ to private parts of libudev/ | Kay Sievers | |
2009-06-09 | move syslog wrapper to libudev | Kay Sievers | |
2009-06-09 | libudev: call log functions conditionally | Kay Sievers | |
2009-06-09 | udevd: log info for created/killed workers | Kay Sievers | |
2009-06-09 | libudev: device_new() -> udev_device_new() | Kay Sievers | |
2009-06-08 | fix libudev include in Makefile.am.in | Kay Sievers | |
2009-06-08 | libudev: move to top-level directory | Kay Sievers | |
2009-06-08 | libudev: add comments to libudev.h | Kay Sievers | |
2009-06-08 | path_id: rename scsi sub-fuctions | Kay Sievers | |
2009-06-08 | udevd: print error if worker dies unexpectedly | Kay Sievers | |
2009-06-08 | path_id: delete old shell script | Kay Sievers | |
Removed with this is SAS disk support which never really worked properly, and legacy IDE disk support, which can be re-implemented if needed. | |||
2009-06-08 | path_id: add iscsi support | Kay Sievers | |
2009-06-08 | path_id: handle fibre channel | Kay Sievers | |
2009-06-07 | udevadm: monitor --environment -> --property | Kay Sievers | |
2009-06-07 | udevadm: control - --env -> --property | Kay Sievers | |
2009-06-07 | udevadm: info - accept --query without a value and print properties | Kay Sievers | |
2009-06-07 | udevadm: trigger - add --property-match=<key>:<value> | Kay Sievers | |
2009-06-07 | libudev: enumerate - allow multiple keys with the same name | Kay Sievers | |
2009-06-06 | fix signed/unsigned warning | Kay Sievers | |
2009-06-06 | path_id: add comments | Kay Sievers | |
2009-06-06 | path_id: update SCSI handling | Kay Sievers | |
2009-06-06 | path_id: implement in C using libudev | Kay Sievers | |
2009-06-06 | cleanup $attr{} substitution | Kay Sievers | |
2009-06-06 | allow format substitution in path of ATTR{<path>}=="<value>" | Kay Sievers | |
2009-06-05 | udevd: use enum instead of char in struct declaration | Kay Sievers | |
2009-06-05 | rules: make RFKILL control device world readable | Marcel Holtmann | |
2009-06-04 | rules: do not call path_id for virtual devices | Kay Sievers | |
2009-06-04 | udevd: close netlink socket in worker and set cloexec | Kay Sievers | |
2009-06-04 | udevd: convert to event worker processes | Kay Sievers | |
Event processes now get re-used after they handled an event. This reduces pressure on the CPU significantly because cloned event processes no longer cause page faults in the main daemon. After the events have settled, the no longer needed worker processes get killed. | |||
2009-06-01 | str[sp]cpyl: add __attribute__ ((sentinel)) | Kay Sievers | |
2009-05-29 | udevd: remove check for dev_t, DEVPATH_OLD takes care of that | Kay Sievers | |
2009-05-29 | udevadm: settle - add --exit-if-exists=<file> | Kay Sievers | |
2009-05-29 | cdrom_id: add error message if open() fails | Kay Sievers | |
2009-05-28 | udevadm: control - add comment to man page about --reload-rules | Kay Sievers | |
2009-05-28 | udevd: queue-export - fix crash | Alan Jenkins | |
The math in skip_to() was the wrong way round and allocated a variable size array on the stack with a massively negative size. Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk> | |||
2009-05-28 | udev-selinux.c: remove libudev header | Alan Jenkins | |
Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk> | |||
2009-05-26 | cdrom_id: suppress ID_CDROM_MEDIA_STATE=blank for plain non-writable CDROM media | Kay Sievers | |
Some broken fake cdrom drives return ID_CDROM_MEDIA_STATE=blank. $ /lib/udev/cdrom_id -d /dev/sr1 main: probing: '/dev/sr1' cd_inquiry: INQUIRY: [Nokia ][S60 ][1.0 ] cd_profiles: GET CONFIGURATION: number of profiles 76 cd_profiles: current profile 0x08 cd_media_toc: READ TOC: len: 12 cd_media_toc: last track 1 starts at block 0 cd_media_info: disk type 00 ID_CDROM=1 ID_CDROM_MRW=1 ID_CDROM_MRW_W=1 ID_CDROM_MEDIA=1 ID_CDROM_MEDIA_CD=1 ID_CDROM_MEDIA_STATE=blank Others work fine, but ID_CDROM_MEDIA_STATE is not needed for non-writable CDROM media: $ /lib/udev/cdrom_id -d /dev/sr1 main: probing: '/dev/sr1' cd_inquiry: INQUIRY: [SanDisk ][U3 Cruzer Micro ][8.02] cd_profiles: GET CONFIGURATION: number of profiles 72 cd_profiles: current profile 0x08 cd_media_toc: READ TOC: len: 20 cd_media_toc: track=1 info=0x4(data) start_block=0 cd_media_toc: last track 1 starts at block 0 cd_media_info: disk type 00 ID_CDROM=1 ID_CDROM_MRW=1 ID_CDROM_MRW_W=1 ID_CDROM_MEDIA=1 ID_CDROM_MEDIA_CD=1 ID_CDROM_MEDIA_STATE=complete ID_CDROM_MEDIA_SESSION_COUNT=1 ID_CDROM_MEDIA_TRACK_COUNT=1 ID_CDROM_MEDIA_TRACK_COUNT_DATA=1 | |||
2009-05-22 | test: check string substitutions in OWNER and GROUP | Benjamin Gilbert | |
String substitutions in OWNER and GROUP keys were broken in udev 137-142. Explicitly test for this, since such breakage will not manifest in typical rulesets. | |||
2009-05-22 | rules: add SUBSYSTEM match to scsi rules | Kay Sievers | |
On Fri, May 22, 2009 at 16:15, Alan Jenkins <alan-jenkins@tuffmail.co.uk> wrote: > I've been looking at what is responsible for all the path lookup activity in > coldplug. On my debian stable system, it looks like every device gets its > parent looked up in sysfs. I think this is due to SUBSYSTEMS matches. > > I see the udev default rules are different, but it looks like they still > test for SUBSYSTEMS on every single device. Should we add SUBSYSTEM="scsi_generic" > to these three rules? | |||
2009-05-21 | update NEWS | Kay Sievers | |
2009-05-21 | udevadm: settle - make --timeout=0 working | Kay Sievers | |