diff options
-rw-r--r-- | RELEASE-NOTES | 7 | ||||
-rw-r--r-- | udev_rules.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 248944bd51..db1e6b838f 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,3 +1,10 @@ +udev 062 +======== +Mostly a Bugfix release. + +Added WAIT_FOR_SYSFS="<attribute>" to be able to fight against the sysfs +timing with custom rules. + udev 061 ======== We changed the internal rule storage format. Our large rule files took diff --git a/udev_rules.c b/udev_rules.c index 27fb0a89a6..41855eb9d7 100644 --- a/udev_rules.c +++ b/udev_rules.c @@ -31,6 +31,7 @@ #include <unistd.h> #include <errno.h> #include <sys/wait.h> +#include <sys/stat.h> #include "libsysfs/sysfs/libsysfs.h" #include "list.h" |