1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 03:25:31 +03:00

release 114

This commit is contained in:
Kay Sievers 2007-08-05 14:08:47 +02:00
parent 538876cdc8
commit 585e838856
3 changed files with 58 additions and 1 deletions

View File

@ -1,3 +1,46 @@
Summary of changes from v113 to v114
============================================
Hannes Reinecke (3):
collect: extra to synchronize actions across events
add $driver subtitution
rules_generator: add S/390 persistent network support
Kay Sievers (24):
rules_generator: remove executable flag from include file
always unlink temporary file before creating new one
rules: SUSE update
volume_id: ext4 detection
udevtrigger: allow to specify action string
add option to RUN key to ignore the return value of the program
use global udev_log variable instead of parameter in run_program
add udev_rules_run() to handle RUN list
move udev_utils_run.c into udev_rules.c
rules: SUSE update
name_list: rename loop_name -> name_loop
handle dynamic rules created in /dev/.udev/rules.d/
allow SYMLINK== match
libvolume_id: use /usr/$libdir in pc file
Makefile: add --as-needed flag to ld
restore behavior of NAME==
rules_generator: remove "installation" function
udevtrigger: trigger "driver" events
rules: update SUSE
rules: Fedora update
rules: add "do not edit" comment
rules: Fedora update
rules_generator: skip random MAC addresses
write changed network interface names to the kernel log
Matthias Schwarzott (3):
rules: Gentoo update
fix inotify to work not only once
rules: Gentoo update
Richard Hughes (1):
Makefile: add "make dist" for nightly snapshots
Summary of changes from v112 to v113
============================================

View File

@ -16,7 +16,7 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
VERSION = 113
VERSION = 114
# set this to make use of syslog
USE_LOG = true

View File

@ -1,3 +1,17 @@
udev 114
========
Bugfixes.
Dynamic rules can be created in /dev/.udev/rules.d/ to trigger
actions by dynamically created rules.
SYMLINK=="<value>" matches agains the entries in the list of
currently defined symlinks. The links are not created in the
filesystem at that point in time, but the values can be matched.
RUN{ignore_error}+="<program>" will ignore any exit code from the
program and not record as a failed event.
udev 113
========
Bugfixes.