Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-11-18 | volume_id: update btrfs magic | Kay Sievers | |
2008-11-14 | vol_id: clarify error message | Kay Sievers | |
2008-11-13 | volume_id: ntfs - mark as no other fs must match | Kay Sievers | |
2008-11-13 | fix spelling in comment | Kay Sievers | |
2008-11-13 | volume_id: fat - accept empty FAT32 fsinfo signature | Kay Sievers | |
2008-11-13 | volume_id: always check for all filesystem types and skip conflicting results | Kay 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-13 | volume_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-13 | scsi_id: we don't use DEVPATH env var anymore, update man page | Alan Jenkins | |
Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk> | |||
2008-11-05 | unify string replacement | Kay Sievers | |
2008-11-05 | usb_id: MassStorage SubClass 6 is "scsi" not "disk" | Kay Sievers | |
2008-11-05 | volume_id: btrfs update | Kay Sievers | |
2008-11-04 | firmware.sh: record missing files in /dev/.udev/firmware-missing/ | Kay Sievers | |
2008-10-30 | fstab_import: add "change" event match | Kay Sievers | |
2008-10-30 | edd_id: add "change" event match | Kay Sievers | |
2008-10-26 | do not init string arrays, just clear first byte | Kay Sievers | |
2008-10-24 | fix uninitialized variable warnings | Kay Sievers | |
2008-10-23 | rule_generator: fix netif NAME= value extraction regex | Kay 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-22 | add util_resolve_subsys_kernel() | Kay Sievers | |
2008-10-22 | volume_id: swap - larger PAGE_SIZE support | Matthias Koenig | |
2008-10-21 | replace 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-21 | use 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-21 | cdrom_id: remove ARRAY_SIZE() declaration | Kay Sievers | |
2008-10-20 | libudev: device - get_attr_value() -> get_sysattr_value() | Kay Sievers | |
2008-10-18 | pass make distcheck | Kay Sievers | |
2008-10-18 | prefix udev-util.c functions with util_* | Kay Sievers | |
2008-10-17 | collect: use udev_list | Kay Sievers | |
2008-10-16 | rename udev source files | Kay Sievers | |
2008-10-16 | volume_id: btrfs - update magic to latest disk format | Kay Sievers | |
2008-10-16 | libudev: add global property list | Kay Sievers | |
2008-10-13 | vol_id: update README | Kay Sievers | |
2008-10-13 | volume_id: support for GFS2 UUIDs | Steven Whitehouse | |
2008-10-06 | volume_id: more fat debugging | Kay Sievers | |
2008-10-06 | volume_id: add more vfat debugging information | Kay Sievers | |
2008-10-03 | volume_id: use PRIu64i, PRIx64 macros | Kay Sievers | |
2008-10-03 | volume_id: add btrfs | Kay Sievers | |
2008-10-03 | volume_id: better DDF raid detection | Kay Sievers | |
2008-10-03 | vol_id: always use the safe string versions for unencoded label and uuid | Kay Sievers | |
2008-10-03 | vol_id: fix logging glue | Kay Sievers | |
2008-10-03 | volume_id: add dbg() as noop to check for compile errors | Kay Sievers | |
2008-10-03 | move selinux noops to udev.h | Kay Sievers | |
2008-10-03 | vol_id: add size= option | Kay Sievers | |
2008-10-02 | usb_id: use libudev | Kay Sievers | |
2008-10-02 | libudev: get rid of selinux | Kay 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-02 | use no_argument, required_argument, optional_argument in longopts | Kay Sievers | |
2008-10-02 | volume_id: hpfs - read label and uuid | Kay Sievers | |
2008-10-01 | build: include Makefile.am.inc in all Makefile.am | Kay 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-29 | fix dbg() callers | Kay Sievers | |
2008-09-29 | gitignore: move *.8 to subdirs | Kay Sievers | |
2008-09-26 | libudev: rework list handling | Kay Sievers | |
2008-09-19 | always include config.h from Makefile | Kay Sievers | |