aboutsummaryrefslogtreecommitdiffstats
path: root/RELEASE-NOTES
diff options
context:
space:
mode:
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>2005-03-13 05:46:31 +0100
committerGreg KH <gregkh@suse.de>2005-04-26 23:53:17 -0700
commit28ce66de1750320d7f09547d8910d42ae580fe5e (patch)
tree046e79a814f6deb9af27772897f4d6d092ba73f2 /RELEASE-NOTES
parent3b6ed8bb06d18a2855d530dcb9034e9d37114827 (diff)
downloadudev-28ce66de1750320d7f09547d8910d42ae580fe5e.tar.gz
[PATCH] support =, ==, !=, += for the key match and assignment
Diffstat (limited to 'RELEASE-NOTES')
-rw-r--r--RELEASE-NOTES10
1 files changed, 10 insertions, 0 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 870020c4..ee77d845 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -8,3 +8,13 @@ a built-in userdb parser to resolve user and group names.
THE PLACE= key is gone. It can be replaced by an ID= for a long time, cause
we walk up the chain of physical devices to find a match.
+The KEY="<value>" format supports '=', '==', '!=,' , '+=' now. This makes it
+easier to skip certain devices without composing rules with weird character
+class negations like:
+ KERNEL="[!s][!c][!d]*"
+
+this can be replaced by:
+ KERNEL!="scd*"
+
+The simple '=' is still supported, but the rules should be converted if
+possible, to be better human-readable.