Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-12-25 | builtin: kmod - hook up udev main logging to libkmod | Kay Sievers | |
2011-08-05 | implement path_id, usb_id, input_id as built-in command | Kay Sievers | |
2011-07-14 | udevadm: move udevadm command descriptions into their files | Kay Sievers | |
2011-04-17 | udevadm: test - use printf() instead of info() for non-debug output | Kay Sievers | |
2011-03-23 | use /run/udev/ if possible and fall back to /dev/.udev/ | Kay Sievers | |
2010-05-27 | while (1) -> for (;;) | Kay Sievers | |
2009-12-25 | udevadm: logging - copy va_list and do not use it twice | Kay Sievers | |
2009-12-25 | fix typo in log message priority handling | Kay Sievers | |
2009-09-14 | udevadm: print all messages to stderr with priority higher or equal than LOG_ERR | Marco d'Itri | |
It is needed to prevent errors in udev from going unnoticed (e.g. when udevd is not running). | |||
2009-09-07 | udevadm: remove symlink support for old commands | Kay Sievers | |
2009-08-01 | update a few years of copyright | Kay Sievers | |
2009-06-09 | move syslog wrapper to libudev | Kay Sievers | |
2009-01-16 | remove stray initializer | Alan Jenkins | |
Picked up by "gcc -Wextra". udevadm.c:83: warning: initialized field overwritten udevadm.c:83: warning: (near initialization for ‘cmds[2].help’) This is just a cleanup. It doesn't change the code generated by gcc. | |||
2008-11-15 | udevadm: fix option parsing breakage with klibc | Sergey Vlasov | |
The klibc implementation of getopt_long() behaves slightly different from the glibc one - in particular, it treats the change of the option string argument between invocations as start of parsing a different command line, and resets its state. However, the udevadm code expected getopt_long() invocations in subcommands to continue parsing the rest of command line after initial options has been parsed at the top level; with klibc this broke, causing all udevadm subcommands to stop recognizing their options. Instead of relying on the glibc behavior, reset the getopt_long() state properly before invoking the subcommand handler: move argv to point to the subcommand name, decrease argc appropriately, and set optind = 0. This also fixes a minor bug visible with glibc - without setting optind = 0 all getopt_long() calls in subcommand handlers were behaving as if "+" was specified as the first character of the option string (which disables option reordering), because that state was set by the first getopt_long() call at the top level, and was not reset when parsing subcommand options. Signed-off-by: Sergey Vlasov <vsu@altlinux.ru> | |||
2008-10-18 | selinux_init(udev) -> udev_selinux_init(udev) | Kay Sievers | |
2008-10-16 | udevd: 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-09-19 | always include config.h from Makefile | Kay Sievers | |
2008-09-10 | update file headers | Kay Sievers | |
2008-09-09 | udevadm: log message if udevadm link is used | Kay Sievers | |
2008-09-07 | udevadm: add --version --help options to man page, hide them as commands | Kay Sievers | |
2008-09-06 | use libudev code, unify logging, pass udev context around everywhere | Kay Sievers | |
2008-09-04 | udevadm: move init from commands to udevadm | Kay Sievers | |
2008-09-03 | udevadm: rename internal functions to udevadm_* | Kay Sievers | |
2008-09-03 | udevadm: print warning to stderr if udevadm is called by symlink | Kay Sievers | |
2008-09-02 | remove deprecated envp[] in main() | Alan Jenkins | |
envp is not standardized, and may become invalid when environment variables are modified. Since udev never actually uses it, we can simply remove it. Should anyone miss it in future, they can use the standardized environ variable - like udev_rules.c does already. | |||
2008-07-30 | use autotools | Kay Sievers | |
2008-07-30 | delete all Makefiles and move udev source to udev/ | Kay Sievers | |