Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2008-09-19 | scsi_id: compiler warning on 32-bit | Alan Jenkins | |
The sg_io_v4 interface passes pointers as u64s. It turns out GCC disapproves of us casting a u64 straight to a 32 bit pointer. cc1: warnings being treated as errors scsi_serial.c: In function ‘sg_err_category4’: scsi_serial.c:159: warning: cast to pointer from integer of different size scsi_serial.c: In function ‘scsi_dump_v4’: scsi_serial.c:303: warning: cast to pointer from integer of different size | |||
2008-09-16 | vol_id: fix lib logging glue | Kay Sievers | |
2008-09-10 | use size definitions from libudev | Kay Sievers | |
2008-09-10 | get rid of udev_sysdeps.c | Kay Sievers | |
2008-09-10 | convert to libudev and delete udev_utils_string.c | Kay Sievers | |
2008-09-10 | extras: use libudev code | Kay Sievers | |
2008-09-10 | libudev: do not use any udev source file | Kay Sievers | |
2008-09-10 | libudev: rename libudev-utils.c libudev-util.c | Kay Sievers | |