summaryrefslogtreecommitdiff
path: root/extras
AgeCommit message (Collapse)Author
2008-11-18volume_id: update btrfs magicKay Sievers
2008-11-14vol_id: clarify error messageKay Sievers
2008-11-13volume_id: ntfs - mark as no other fs must matchKay Sievers
2008-11-13fix spelling in commentKay Sievers
2008-11-13volume_id: fat - accept empty FAT32 fsinfo signatureKay Sievers
2008-11-13volume_id: always check for all filesystem types and skip conflicting resultsKay Sievers
We probe for all known filesystems to find conflicting signatures. If we find multiple matching signatures and one of the detected filesystem types claims that it can not co-exist with any other filesystem type, we do not return a probing result. We can not afford to mount a volume with the wrong filesystem code and possibly corrupt it. Linux ssytems have the problem of dozens of possible filesystem types, and volumes with left-over signatures from former filesystem types. Invalid signature need to be removed from the volume to make the filesystem detection successful. We do not want to read that many bytes from probed floppies, skip volumes smaller than a usual floppy disk.
2008-11-13volume_id: fat - move check for msdos signature (0x55 0xaa)Karel Zak
Make the msdos signature (0x55 0xaa) at 510 and 511 optional when the standard FAT magic string is present.
2008-11-13scsi_id: we don't use DEVPATH env var anymore, update man pageAlan Jenkins
Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
2008-11-05unify string replacementKay Sievers
2008-11-05usb_id: MassStorage SubClass 6 is "scsi" not "disk"Kay Sievers
2008-11-05volume_id: btrfs updateKay Sievers
2008-11-04firmware.sh: record missing files in /dev/.udev/firmware-missing/Kay Sievers
2008-10-30fstab_import: add "change" event matchKay Sievers
2008-10-30edd_id: add "change" event matchKay Sievers
2008-10-26do not init string arrays, just clear first byteKay Sievers
2008-10-24fix uninitialized variable warningsKay Sievers
2008-10-23rule_generator: fix netif NAME= value extraction regexKay Sievers
$ sed -n -r \ -e 's/^#.*//' \ -e 's/[[:space:],]NAME="(eth[0-9]*)"[[:space:]]*(,.*|\\|)$/\1/p' \ /dev/null /etc/udev/rules.d/70-persistent-net.rules SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:16:41:e2:8d:c7", ATTR{type}=="1", KERNEL=="eth*",eth4 $ sed -n -r \ -e 's/^#.*//' \ -e 's/.*[[:space:],]NAME="(eth[0-9]*)".*/\1/p' \ /dev/null /etc/udev/rules.d/70-persistent-net.rules eth4
2008-10-22add util_resolve_subsys_kernel()Kay Sievers
2008-10-22volume_id: swap - larger PAGE_SIZE supportMatthias Koenig
2008-10-21replace strncpy() with strlcpy()Alan Jenkins
The problem was strncpy() doesn't stop after writing the terminating NUL; by definition it goes on to zero the entire buffer. I spy another use of strncpy in udev_device_add_property_from_string(), which is responsible for another ~1% user cpu time... Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
2008-10-21use more appropriate alternatives to malloc()Alan Jenkins
Use calloc to request cleared memory instead. Kernel and libc conspire to make this more efficient. Also, replace one malloc() + strcpy() with strdup(). Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
2008-10-21cdrom_id: remove ARRAY_SIZE() declarationKay Sievers
2008-10-20libudev: device - get_attr_value() -> get_sysattr_value()Kay Sievers
2008-10-18pass make distcheckKay Sievers
2008-10-18prefix udev-util.c functions with util_*Kay Sievers
2008-10-17collect: use udev_listKay Sievers
2008-10-16rename udev source filesKay Sievers
2008-10-16volume_id: btrfs - update magic to latest disk formatKay Sievers
2008-10-16libudev: add global property listKay Sievers
2008-10-13vol_id: update READMEKay Sievers
2008-10-13volume_id: support for GFS2 UUIDsSteven Whitehouse
2008-10-06volume_id: more fat debuggingKay Sievers
2008-10-06volume_id: add more vfat debugging informationKay Sievers
2008-10-03volume_id: use PRIu64i, PRIx64 macrosKay Sievers
2008-10-03volume_id: add btrfsKay Sievers
2008-10-03volume_id: better DDF raid detectionKay Sievers
2008-10-03vol_id: always use the safe string versions for unencoded label and uuidKay Sievers
2008-10-03vol_id: fix logging glueKay Sievers
2008-10-03volume_id: add dbg() as noop to check for compile errorsKay Sievers
2008-10-03move selinux noops to udev.hKay Sievers
2008-10-03vol_id: add size= optionKay Sievers
2008-10-02usb_id: use libudevKay Sievers
2008-10-02libudev: get rid of selinuxKay Sievers
"Hello world!" linked against libselinux parses /proc/mounts and whatever else on startup, even when the lib is not needed at all. Not funny! Get rid of that thing where it's not absolutely needed.
2008-10-02use no_argument, required_argument, optional_argument in longoptsKay Sievers
2008-10-02volume_id: hpfs - read label and uuidKay Sievers
2008-10-01build: include Makefile.am.inc in all Makefile.amKay Sievers
Many thanks to Chris Spiegel for finding the still current vol_id non-large-file-access bug, because of not including config.h.
2008-09-29fix dbg() callersKay Sievers
2008-09-29gitignore: move *.8 to subdirsKay Sievers
2008-09-26libudev: rework list handlingKay Sievers
2008-09-19always include config.h from MakefileKay Sievers