chiark / gitweb /
[PATCH] export DEVNAME to RUN-key executed programs
[elogind.git] / RELEASE-NOTES
1 udev 057
2 ========
3 All rules are applied now, but only the first matching rule with a NAME-key
4 will be applied. All later rules with NAME-key are ignored. This way system
5 supplied symlinks or permissions gets applied to user-defined naming rules.
6 Note:
7 Please check your rules setup, if you may need to add OPTIONS="last_rule"
8 to some rules, to keep the old behavior.
9
10 The rules are read on "remove"-events too. That makes is possible to match
11 with keys that are available on remove (KERNEL, SUBSYSTEM, ID, ENV, ...) to
12 instruct udev to ignore a event (OPTIONS="ignore_device").
13 The new ACTION-key may be used to match a rule only at a "remove"-event.
14
15 The new RUN-key supports rule-based execution of programs after device-node
16 handling. This can replace the dev.d/-rules to make them more efficient.
17
18 The %s{}-sysfs format char replacement values are searched at any of the
19 devices in the device chain now, not only at the class-device.
20
21 We support log priority levels now. The value udev_log in udev.conf is used
22 to determine what is printed to syslog. This makes it possible to
23 run a version with compiled-in debug messages in a production environment
24 which is sometimes needed to find a bug.
25 It is still possible to supress the inclusion of _any_ syslog usage with
26 USE_LOG=false to create the smallest possible binaries if needed.
27 The configured udev_log value can be overridden with the environment variable
28 UDEV_LOG.
29
30 udev 056
31 ========
32 Possible use of a system-wide klibc:
33   make USE_KLIB=true KLCC=/usr/bin/klcc all
34 will link against an external klibc and our own version will be ignored.
35
36 udev 055
37 ========
38 We support an unlimited count of symlinks now.
39
40 If USE_STATIC=true is passed to a glibc build, we link statically and use
41 a built-in userdb parser to resolve user and group names.
42
43 The PLACE= key is gone. It can be replaced by an ID= for a long time, cause
44 we walk up the chain of physical devices to find a match.
45
46 The KEY="<value>" format supports '=', '==', '!=,' , '+=' now. This makes it
47 easy to skip certain attribute matches without composing rules with weird
48 character class negations like:
49   KERNEL="[!s][!c][!d]*"
50 this can now be replaced with:
51   KERNEL!="scd*"
52 The current simple '=' is still supported, and should work as it does today,
53 but existing rules should be converted if possible, to be better readable.
54
55 We have new ENV{}== key now, to match against a maximum of 5 environment
56 variables.
57
58 udevstart is its own binary again, cause we don't need co carry this araound
59 with every forked event.