[systemd-commits] Changes to 'refs/tags/059'

Kay Sievers kay at kemper.freedesktop.org
Mon Jun 4 16:23:03 PDT 2012


Tag '059' created by  at 1970-01-01 00:00 -0800
udev 059

Changes since 058:
Greg KH (3):
      Fix makefile to allow 'make release' to work with git
      Fix udevinfo for empty sysfs directories
      Merge gregkh at ehlo.org:/home/kay/public_html/pub/scm/linux/hotplug/udev-kay

Greg Kroah-Hartman (2):
      Update the gentoo rule file
      059 release

Hannes Reinecke (2):
      udevcontrol: fix exit code
      udev: fix netdev RUN handling

Kay Sievers (33):
      udevd: listen for netlink events
      udevd: add udevcontrol
      udevd: add initsend
      Makefile: fix DESTDIR
      udevd: improve timeout handling
      udev: allow final assignments :=
      udev: move dev.d/ handling to external helper
      udev: clear lists if a new value is assigned
      volume_id: use udev-provided log-level
      udev: handle all events - not only class and block devices
      klibc: version 1.0.14
      udevd: allow starting of udevd with stopped exec-queue
      udev man page: add operators
      udevinitsend: handle replay messages correctly
      klibc: add missing files
      udeveventrecorder: add small program that writes an event to disk
      udevd: control log-priority of the running daemon with udevcontrol
      udevcontrol: add max_childs command
      Makefile: remove dev.d/ hotplug.d/ from install target
      remove device node, when type block/char has changed
      prepare for module loading rules and add MODALIAS key
      fix udevstart and let all events trvel trough udev
      fix the fix and change the file to wait for to the "bus" link
      allow rules to be compiled to one binary file
      IMPORT=<file> allow to import a shell-var style config-file
      unify execute_command() and execute_program()
      IMPORT allow to import program returned keys into the env
      add ata_id to read serial numbers from ATA drives
      rename udev_volume_id to vol_id and add --export option
      store the imported device information in the udevdb
      add -x to scsi_id to export the queried values in env format
      add ID_TYPE to the id probers
      prepare RELEASE-NOTES

Stefan Schweizer (1):
      Dialout group fix for capi devices in the gentoo rules file

---
 Makefile                                 |  109 +---
 README                                   |    3 
 RELEASE-NOTES                            |   99 ++++
 etc/udev/gentoo/udev.rules               |   18 
 etc/udev/udev.conf.in                    |    1 
 etc/udev/udev.rules                      |   51 +-
 etc/udev/udev.rules.examples             |   63 +-
 extras/ata_id/Makefile                   |   52 ++
 extras/ata_id/ata_id.c                   |  178 +++++++
 extras/run_directory/Makefile            |   55 ++
 extras/run_directory/run_directory.c     |   79 +++
 extras/run_directory/udev_run_devd.c     |   78 +++
 extras/run_directory/udev_run_hotplugd.c |   76 +++
 extras/scsi_id/scsi_id.c                 |  130 ++++-
 extras/volume_id/Makefile                |    8 
 extras/volume_id/README                  |   68 +-
 extras/volume_id/s390-dasd.rules         |    7 
 extras/volume_id/udev_volume_id.c        |  184 -------
 extras/volume_id/vol_id.c                |  195 +++++++
 klibc/Makefile                           |    5 
 klibc/include/net/if_ether.h             |    1 
 klibc/include/net/route.h                |    1 
 klibc/include/netinet/if_ether.h         |    1 
 klibc/include/netpacket/packet.h         |    1 
 klibc/include/signal.h                   |    4 
 klibc/klcc.1                             |   43 +
 klibc/klcc.in                            |   15 
 klibc/klibc/Kbuild                       |  149 ++++++
 klibc/klibc/SYSCALLS.def                 |   32 -
 klibc/klibc/arch/i386/Makefile.inc       |    1 
 klibc/klibc/arch/i386/sigreturn.S        |   15 
 klibc/klibc/arch/x86_64/MCONFIG          |    5 
 klibc/klibc/arch/x86_64/Makefile.inc     |    3 
 klibc/klibc/arch/x86_64/sigreturn.S      |   15 
 klibc/klibc/arch/x86_64/syscall.S        |    6 
 klibc/klibc/fgets.c                      |    1 
 klibc/klibc/sigaction.c                  |   35 +
 klibc/klibc/sigpending.c                 |    4 
 klibc/klibc/sigprocmask.c                |    4 
 klibc/klibc/sigsuspend.c                 |    4 
 klibc/klibc/strntoumax.c                 |   13 
 klibc/version                            |    2 
 test/simple-build-check.sh               |    2 
 test/udev-test.pl                        |  166 +++++-
 udev.8.in                                |   61 +-
 udev.c                                   |  178 +++----
 udev.h                                   |   16 
 udev.spec                                |    5 
 udev_add.c                               |   43 -
 udev_config.c                            |   43 -
 udev_db.c                                |    9 
 udev_libc_wrapper.h                      |   13 
 udev_multiplex.c                         |   92 ---
 udev_remove.c                            |   26 -
 udev_rules.c                             |  760 +++++++++++++++++++------------
 udev_rules.h                             |   27 -
 udev_rules_parse.c                       |  150 +++++-
 udev_sysfs.c                             |   54 +-
 udev_sysfs.h                             |    2 
 udev_utils.c                             |  152 +++++-
 udev_utils.h                             |    8 
 udevcontrol.c                            |  136 +++++
 udevd.c                                  |  461 +++++++++++++-----
 udevd.h                                  |   42 +
 udeveventrecorder.c                      |  127 +++++
 udevinfo.c                               |   58 +-
 udevinitsend.c                           |  239 +++++++++
 udevrulescompile.c                       |  127 +++++
 udevsend.c                               |   15 
 udevstart.c                              |   56 +-
 udevtest.c                               |   17 
 71 files changed, 3596 insertions(+), 1303 deletions(-)
---


More information about the systemd-commits mailing list