aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2006-01-27 01:41:07 +0100
committerKay Sievers <kay.sievers@suse.de>2006-01-27 01:41:07 +0100
commitcef28db9db6e40271ce72ee42c1bb1a3eecbe25c (patch)
treeebebe41d2ea8f75e3fababffef1cefb5c378b99a
parent2c02716281adaea9cf6f57caecaf51db8dbb0917 (diff)
downloadudev-cef28db9db6e40271ce72ee42c1bb1a3eecbe25c.tar.gz
083 release083
-rw-r--r--ChangeLog14
-rw-r--r--Makefile2
-rw-r--r--RELEASE-NOTES12
3 files changed, 21 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 9ca3e935..a2137019 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+Summary of changes from v082 to v083
+============================================
+
+Andrey Borzenkov:
+ man page: document when substitutions are applied for RUN and other keys
+ check for ignore_device in loop looks redundant
+
+Kay Sievers:
+ udevstart: fix NAME="" which prevents RUN from being executed
+ find programs in /lib/udev for IMPORT if {program} is not given
+ don't add $SUBSYSTEM automatically as $1 to programs
+ remove redundant substitution of RUN key
+
+
Summary of changes from v081 to v082
============================================
diff --git a/Makefile b/Makefile
index 09511c46..9da2964d 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
-VERSION = 082
+VERSION = 083
# set this to make use of syslog
USE_LOG = true
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 42048cce..cce8dc03 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -2,13 +2,13 @@ udev 083
========
Fix a bug where NAME="" would prevent RUN from beeing executed.
-RUN="/bin/program" does no longer automatically add the subsystem
+RUN="/bin/program" does not longer automatically add the subsystem
as the first parameter. This is from the days of /sbin/hotplug
-which is dead now and it's just confusing to need to add space at the
-end of the program name to prevent this. If you use rules that
-depend on this, like the old "udev_run_hotlugd" and "udev_run_devd",
-switch them to: RUN+="/bin/program $env{SUBSYSTEM}", otherwise
-they will no longer work as expected.
+which is dead now and it's just confusing to need to add a space at
+the end of the program name to prevent this.
+If you use rules that need the subsystem as the first parameter,
+like the old "udev_run_hotlugd" and "udev_run_devd", add the subsystem
+to the key like RUN+="/bin/program $env{SUBSYSTEM}".
udev 082
========