summaryrefslogtreecommitdiff
path: root/udev/lib/libudev.c
AgeCommit message (Collapse)Author
2009-06-08libudev: move to top-level directoryKay Sievers
2009-05-20require key names in uppercaseKay Sievers
Drop pretty expensive case-insensitive matching, and key names in mixed or lowercase are not supported anyway.
2009-03-26libudev: GPL -> LGPLKay Sievers
2008-11-04fix list handling in enumerate and rules file sortingKay Sievers
2008-11-01move some info() to dbg()Kay Sievers
2008-10-26kerneldoc comment fixesAlan Jenkins
s/ressources/resources/ Also reduce commas per sentence and add a possessive apostrophe.
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-18udev_list_cleanup() -> udev_list_cleanup_entries()Kay Sievers
2008-10-16libudev: always add UDEV_LOGKay Sievers
2008-10-16libudev: add global property listKay 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-02libudev: enumerate - add_device() -> add_syspath()Kay Sievers
2008-09-29replace strerror() usage with threadsafe "%m" format stringAlan Jenkins
strerror() is not threadsafe. It uses a buffer to build messages of the form "Unknown error 387689". syslog() provides a %m format which is equivalent to strerror(errno). As a GNU extension, this is also accepted by printf and friends. At least in the current implementation, it is correctly threadsafe. Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
2008-09-26libudev: initialize selinux only when neededKay Sievers
2008-09-24libudev: add userdata pointerKay Sievers
2008-09-19always include config.h from MakefileKay Sievers
2008-09-10libudev: do not use any udev source fileKay Sievers
2008-09-10libudev: get rid of udev_utils.cKay Sievers
2008-09-10libudev: get rid of udev_sysfs.cKay Sievers
2008-09-10libudev: udev_device - add more propertiesKay Sievers
2008-09-10libudev: initialize selinux after loggingKay Sievers
2008-09-10libudev: add selinuxKay Sievers
2008-09-09test-udev: cleanup libudev context and overridden rules file stringKay Sievers
2008-09-06use libudev code, unify logging, pass udev context around everywhereKay Sievers
2008-08-30libudev: fix --disable-logKay Sievers
2008-08-28libudev: add udev event monitor APIKay Sievers
2008-08-27libudev: split source filesKay Sievers
2008-08-27libudev: add library to access udev informationKay Sievers