chiark / gitweb /
[PATCH] udevd: don't delay events with TIMEOUT in the environment
[elogind.git] / RELEASE-NOTES
1 udev 056
2 ========
3 Possible use of a system-wide klibc:
4   make USE_KLIB=true KLCC=/usr/bin/klcc all
5 will link against an external klibc and our own version will be ignored.
6
7 udev 055
8 ========
9 We support an unlimited count of symlinks now.
10
11 If USE_STATIC=true is passed to a glibc build, we link statically and use
12 a built-in userdb parser to resolve user and group names.
13
14 The PLACE= key is gone. It can be replaced by an ID= for a long time, cause
15 we walk up the chain of physical devices to find a match.
16
17 The KEY="<value>" format supports '=', '==', '!=,' , '+=' now. This makes it
18 easy to skip certain attribute matches without composing rules with weird
19 character class negations like:
20   KERNEL="[!s][!c][!d]*"
21 this can now be replaced with:
22   KERNEL!="scd*"
23 The current simple '=' is still supported, and should work as it does today,
24 but existing rules should be converted if possible, to be better readable.
25
26 We have new ENV{}== key now, to match against a maximum of 5 environment
27 variables.
28
29 udevstart is its own binary again, cause we don't need co carry this araound
30 with every forked event.