chiark / gitweb /
[PATCH] support log-priority levels in udev.conf
[elogind.git] / RELEASE-NOTES
1 udev 057
2 ========
3 We support log priority levels now. The value udev_log in udev.conf is used
4 to determine what is printed to syslog. This makes it possible to
5 run a version with compiled-in debug messages in a production environment
6 which is sometimes needed to find a bug.
7 It is still possible to supress the inclusion of _any_ syslog usage with
8 USE_LOG=false to create the smallest possible binaries if needed.
9 The configured udev_log value can be overridden with the environment variable
10 UDEV_LOG.
11
12 udev 056
13 ========
14 Possible use of a system-wide klibc:
15   make USE_KLIB=true KLCC=/usr/bin/klcc all
16 will link against an external klibc and our own version will be ignored.
17
18 udev 055
19 ========
20 We support an unlimited count of symlinks now.
21
22 If USE_STATIC=true is passed to a glibc build, we link statically and use
23 a built-in userdb parser to resolve user and group names.
24
25 The PLACE= key is gone. It can be replaced by an ID= for a long time, cause
26 we walk up the chain of physical devices to find a match.
27
28 The KEY="<value>" format supports '=', '==', '!=,' , '+=' now. This makes it
29 easy to skip certain attribute matches without composing rules with weird
30 character class negations like:
31   KERNEL="[!s][!c][!d]*"
32 this can now be replaced with:
33   KERNEL!="scd*"
34 The current simple '=' is still supported, and should work as it does today,
35 but existing rules should be converted if possible, to be better readable.
36
37 We have new ENV{}== key now, to match against a maximum of 5 environment
38 variables.
39
40 udevstart is its own binary again, cause we don't need co carry this araound
41 with every forked event.