diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2005-03-13 05:46:31 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:53:17 -0700 |
commit | 28ce66de1750320d7f09547d8910d42ae580fe5e (patch) | |
tree | 046e79a814f6deb9af27772897f4d6d092ba73f2 /RELEASE-NOTES | |
parent | 3b6ed8bb06d18a2855d530dcb9034e9d37114827 (diff) |
[PATCH] support =, ==, !=, += for the key match and assignment
Diffstat (limited to 'RELEASE-NOTES')
-rw-r--r-- | RELEASE-NOTES | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 870020c430..ee77d845be 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. |