summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--RELEASE-NOTES13
-rw-r--r--udevmonitor.c4
2 files changed, 15 insertions, 2 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 91cef0ccd4..ee992d1e60 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,3 +1,16 @@
+udev 068
+========
+More bugfixes. If udevd was started from the kernel, we don't
+have stdin/stdout/stderr, which broke the forked tools in some
+situations.
+
+udev 067
+========
+Bugfix. udevstart event ordering was broken for a long time.
+The new run_program() uncovered it, cause /dev/null was not
+available while we try to run external programs.
+Now udevstart should create it before we run anything.
+
udev 066
========
Minor bugfixes and some distro rules updates. If you don't have the
diff --git a/udevmonitor.c b/udevmonitor.c
index c1538883c9..2775b295ce 100644
--- a/udevmonitor.c
+++ b/udevmonitor.c
@@ -133,8 +133,8 @@ int main(int argc, char *argv[])
goto out;
init_uevent_netlink_sock();
- printf("udevmonitor prints received from the kernel [UEVENT] and after\n"
- "the udev processing, the event which udev [UDEV] has generated\n\n");
+ printf("udevmonitor prints the received event from the kernel [UEVENT]\n"
+ "and the event which udev sends out after rule processing [UDEV]\n\n");
while (1) {
static char buf[UEVENT_BUFFER_SIZE*2];