chiark / gitweb /
[PATCH] support =, ==, !=, += for the key match and assignment
[elogind.git] / RELEASE-NOTES
1 udev 055
2 ========
3 We support an unlimited count of symlinks now.
4
5 If USE_STATIC=true is passed to a glibc build, we link statically and use
6 a built-in userdb parser to resolve user and group names.
7
8 THE PLACE= key is gone. It can be replaced by an ID= for a long time, cause
9 we walk up the chain of physical devices to find a match.
10
11 The KEY="<value>" format supports '=', '==', '!=,' , '+=' now. This makes it
12 easier to skip certain devices without composing rules with weird character
13 class negations like:
14   KERNEL="[!s][!c][!d]*"
15
16 this can be replaced by:
17   KERNEL!="scd*"
18
19 The simple '=' is still supported, but the rules should be converted if
20 possible, to be better human-readable.