summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-05-13path_id: remove on make uninstallMiklos Vajna
2007-05-13create_floppy_devices: add man pageMiklos Vajna
2007-05-11udevd: close /proc/meminfo after readingKay Sievers
2007-05-10release 111Kay Sievers
2007-05-10volume_id: vol_id depends on libvolume_idKay Sievers
2007-05-09rules: SUSE updateKay Sievers
2007-05-09volume_id: add remaining names for prober lookup by typeKay Sievers
2007-05-09rules: Gentoo updateMatthias Schwarzott
2007-05-08vol_id: use libvolume_id prober list for --probe-allKay Sievers
2007-05-08volume_id: give access to list of all available probersKay Sievers
2007-05-07rules: SUSE updateKay Sievers
2007-05-07rules: use ID_FS_UUID_SAFEKay Sievers
2007-05-06vol_id: add ID_FS_UUID_SAFEKay Sievers
2007-05-06volume_id: rename UUID_64BIT_LE/BEKay Sievers
2007-05-04vol_id: README updateKay Sievers
2007-05-04volume_id: add DDF supportKay Sievers
2007-05-04volume_id: add internal UUID_STRINGKay Sievers
2007-05-03volume_id: fix Makefile for parallel makeMatthias Schwarzott
2007-05-03udevd: use fgets() to read /proc filesKay Sievers
Based on a patch by: George Beshers <gbeshers@sgi.com>
2007-05-03vol_id: use volume_id_get_*Kay Sievers
2007-05-03volume_id: add volume_id_get_* functionsKay Sievers
In a future version of libvolume_id, struct volume_id will be an opaque data type, which can't be accessed directly. No interface has changed for now, until all known users are converted not to access the structure directly.
2007-05-03vol_id: use long optionsKay Sievers
2007-05-03volume_id: use md native uuid formatKay Sievers
2007-05-03rules: Fedora updateKay Sievers
2007-05-03rules: SUSE updateKay Sievers
2007-05-01release 110Kay Sievers
2007-05-01rules: SUSE updateKay Sievers
2007-05-01ata_id: use getopt_long()Kay Sievers
2007-05-01usb_id: add <devpath> to help textKay Sievers
2007-04-30don't create $tempnode for devices without majorKay Sievers
2007-04-29ata_id: don't log error for libata devices on older kernelsMatthias Schwarzott
2007-04-28volume_id: minix version 3 supportKay Sievers
2007-04-28volume_id: old md metadata has only 32 bit for the uuidKay Sievers
2007-04-28rules: Fedora updateKay Sievers
2007-04-27rules: Gentoo updateMatthias Schwarzott
2007-04-26udevcontrol: allow to set global variables in udevdHarald Hoyer
The initial patch is from Harald, possible new bugs are from me.
2007-04-26volume_id: ext - fix endianess in version numberKay Sievers
2007-04-25Makefile: respect CFLAGS/LDFLAGSMatthias Schwarzott
2007-04-25delete copies of default rules in SUSE rulesKay Sievers
2007-04-25unset variable with ENV{VAR}=""Kay Sievers
2007-04-24volume_id: add md metadata 1.0, 1.1, 1.2 supportKay Sievers
2007-04-24update SUSE rulesKay Sievers
2007-04-24remove eventrecorder.shKay Sievers
2007-04-23release 109Kay Sievers
2007-04-23update SUSE rulesKay Sievers
2007-04-23libvolume_id: do not install static libraryKay Sievers
2007-04-22path_id: remove broken exampleKay Sievers
2007-04-22path_id: add man pageVMiklos
2007-04-19udevd: fix serialization of eventsKay Sievers
We see sequences like: UEVENT[1176966403.907336] add@/block/dasda UDEV [1176966403.920359] add@/block/dasda UEVENT[1176966403.964379] add@/block/dasda/dasda1 UEVENT[1176966403.964438] add@/block/dasda/dasda2 UEVENT[1176966403.964483] online@/block/dasda UEVENT[1176966403.964519] online@/block/dasda/dasda1 UEVENT[1176966403.964555] online@/block/dasda/dasda2 UDEV [1176966403.967413] add@/block/dasda/dasda1 UDEV [1176966403.968719] add@/block/dasda/dasda2 UDEV [1176966403.974750] online@/block/dasda/dasda1 UDEV [1176966403.982241] online@/block/dasda/dasda2 UDEV [1176966403.999847] online@/block/dasda where the event for the disk (last event) should come before the events for the partitons. We skipped events for dependency reasons, but the dependency check for later events did not see the skipped events.
2007-04-12create_path: don't fail if something else created the directoryKay Sievers
Thanks to Jeremy for the patch.