From: Greg KH <greg@kroah.com>
To: linux-hotplug-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org
Subject: [ANNOUNCE] udev 047 release
Date: Wed, 08 Dec 2004 18:58:56 +0000 [thread overview]
Message-ID: <20041208185856.GA26734@kroah.com> (raw)
I've released the 047 version of udev. It can be found at:
kernel.org/pub/linux/utils/kernel/hotplug/udev-046.tar.gz
udev allows users to have a dynamic /dev and provides the ability to
have persistent device names. It uses sysfs and /sbin/hotplug and runs
entirely in userspace. It requires a 2.6 kernel with CONFIG_HOTPLUG
enabled to run. Please see the udev FAQ for any questions about it:
kernel.org/pub/linux/utils/kernel/hotplug/udev-FAQ
For any udev vs devfs questions anyone might have, please see:
kernel.org/pub/linux/utils/kernel/hotplug/udev_vs_devfs
And there is a general udev web page at:
http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html
Lots of changes here in this release, see the full changelog below.
Highlights are:
- massive change with the way udevd can now work. See
http://thread.gmane.org/gmane.linux.hotplug.devel/6173 for
more details on this (Kay's changes are now part of udev
proper, you don't have to apply anything for this to work,
just follow the directions in
http://article.gmane.org/gmane.linux.hotplug.devel/6192
to enable this mode.)
- wait_for_sysfs is now gone.
- bugfixes and rules file tweaks
- add ability to handle expressions in GROUP rules.
Thanks to everyone who has send me patches for this release, a full list
of everyone, and their changes is below.
udev development is done in a BitKeeper repository located at:
bk://linuxusb.bkbits.net/udev
Daily snapshots of udev from the BitKeeper tree can be found at:
http://www.codemonkey.org.uk/projects/bitkeeper/udev/
If anyone ever wants a tarball of the current bk tree, just email me.
thanks,
greg k-h
Summary of changes from v046 to v047
======================
<klauser:access.unizh.ch>:
o Various typos and other litte errors in udev.8.in
<sjoerd:spring.luon.net>:
o DEVNAME on device removal
<sschweizer:gmail.com>:
o Allow GROUP to have modifiers in it
Greg Kroah-Hartman:
o add more debian rules files
o move distro specific config files into their own directories
o update debian rules files
o added asterix rules to the gentoo file
o use udevstart for udev.init.* files
o delete a bunch of files no longer needed
o fix gentoo scsi cdrom rule
o Fix the multithreaded build again
o merge
o comment out ability to run udev-test.pl with valgrind
o fix spurious valgrind warning in udev
o fix udevinfo '-q path' option as it was not working
o merge
o fix parallel build error
Kay Sievers:
o update Fedora dev.d/ example and remove unused conf.d/ directory
o don't install distribution specific init script on "make install"
o restore OWNER/GROUP assignment in rule coming from RESULT
o make gcov compile scripts working with recent gcc
o fix udev-test/udev-test.pl to work with again
o add net/atml and class/ppdev to the wait_for_sysfs exception list
o add net/nlv* devices to the exception list
o add "pcmcia" and "fc_transport" to the wait_for_sysfs lists
o remove unused timestamp field
o simplify permission handling
o handle /etc/hotplug.d/ only if the event comes from udevd
o trivial cleanups and change some comments
o remove unused variables
o udevsend/udevd handle events without a subsystem
o use blacklist on device "remove" and remove dev.d/ call code duplication
o update the man pages and correct Usage: hints
o don't call the hotplug scripts with a test run
o don't call dev.d/ scripts twice, if directory = subsystem
o remove archive file if we changed something
o link archive insted of objects
o rename udev_lib to udev_utils and dev_d to udev_multiplex
o handle whole hotplug event with udevd/udev
o integrate wait_for_sysfs in udev
o make the searched multiplex directories conditionally
o add MANAGED_EVENT to the forked udev environment
o export DEVNAME on remove event
o export udev_log flag to the environment
o remove my test code
o add support for /devices-devices without any file to wait for
o Patch from Alex Riesen <raa.lkml@gmail.com>
o add a bunch of busses to the list of what to wait for
o close connection to syslog in forked udevd child
o udevd exit path cleanup
o fix network device naming bug
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
_______________________________________________
Linux-hotplug-devel mailing list http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel
WARNING: multiple messages have this Message-ID (diff)
From: Greg KH <greg@kroah.com>
To: linux-hotplug-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org
Subject: [ANNOUNCE] udev 047 release
Date: Wed, 8 Dec 2004 10:58:56 -0800 [thread overview]
Message-ID: <20041208185856.GA26734@kroah.com> (raw)
I've released the 047 version of udev. It can be found at:
kernel.org/pub/linux/utils/kernel/hotplug/udev-046.tar.gz
udev allows users to have a dynamic /dev and provides the ability to
have persistent device names. It uses sysfs and /sbin/hotplug and runs
entirely in userspace. It requires a 2.6 kernel with CONFIG_HOTPLUG
enabled to run. Please see the udev FAQ for any questions about it:
kernel.org/pub/linux/utils/kernel/hotplug/udev-FAQ
For any udev vs devfs questions anyone might have, please see:
kernel.org/pub/linux/utils/kernel/hotplug/udev_vs_devfs
And there is a general udev web page at:
http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html
Lots of changes here in this release, see the full changelog below.
Highlights are:
- massive change with the way udevd can now work. See
http://thread.gmane.org/gmane.linux.hotplug.devel/6173 for
more details on this (Kay's changes are now part of udev
proper, you don't have to apply anything for this to work,
just follow the directions in
http://article.gmane.org/gmane.linux.hotplug.devel/6192
to enable this mode.)
- wait_for_sysfs is now gone.
- bugfixes and rules file tweaks
- add ability to handle expressions in GROUP rules.
Thanks to everyone who has send me patches for this release, a full list
of everyone, and their changes is below.
udev development is done in a BitKeeper repository located at:
bk://linuxusb.bkbits.net/udev
Daily snapshots of udev from the BitKeeper tree can be found at:
http://www.codemonkey.org.uk/projects/bitkeeper/udev/
If anyone ever wants a tarball of the current bk tree, just email me.
thanks,
greg k-h
Summary of changes from v046 to v047
============================================
<klauser:access.unizh.ch>:
o Various typos and other litte errors in udev.8.in
<sjoerd:spring.luon.net>:
o DEVNAME on device removal
<sschweizer:gmail.com>:
o Allow GROUP to have modifiers in it
Greg Kroah-Hartman:
o add more debian rules files
o move distro specific config files into their own directories
o update debian rules files
o added asterix rules to the gentoo file
o use udevstart for udev.init.* files
o delete a bunch of files no longer needed
o fix gentoo scsi cdrom rule
o Fix the multithreaded build again
o merge
o comment out ability to run udev-test.pl with valgrind
o fix spurious valgrind warning in udev
o fix udevinfo '-q path' option as it was not working
o merge
o fix parallel build error
Kay Sievers:
o update Fedora dev.d/ example and remove unused conf.d/ directory
o don't install distribution specific init script on "make install"
o restore OWNER/GROUP assignment in rule coming from RESULT
o make gcov compile scripts working with recent gcc
o fix udev-test/udev-test.pl to work with again
o add net/atml and class/ppdev to the wait_for_sysfs exception list
o add net/nlv* devices to the exception list
o add "pcmcia" and "fc_transport" to the wait_for_sysfs lists
o remove unused timestamp field
o simplify permission handling
o handle /etc/hotplug.d/ only if the event comes from udevd
o trivial cleanups and change some comments
o remove unused variables
o udevsend/udevd handle events without a subsystem
o use blacklist on device "remove" and remove dev.d/ call code duplication
o update the man pages and correct Usage: hints
o don't call the hotplug scripts with a test run
o don't call dev.d/ scripts twice, if directory = subsystem
o remove archive file if we changed something
o link archive insted of objects
o rename udev_lib to udev_utils and dev_d to udev_multiplex
o handle whole hotplug event with udevd/udev
o integrate wait_for_sysfs in udev
o make the searched multiplex directories conditionally
o add MANAGED_EVENT to the forked udev environment
o export DEVNAME on remove event
o export udev_log flag to the environment
o remove my test code
o add support for /devices-devices without any file to wait for
o Patch from Alex Riesen <raa.lkml@gmail.com>
o add a bunch of busses to the list of what to wait for
o close connection to syslog in forked udevd child
o udevd exit path cleanup
o fix network device naming bug
next reply other threads:[~2004-12-08 18:58 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-12-08 18:58 Greg KH [this message]
2004-12-08 18:58 ` [ANNOUNCE] udev 047 release Greg KH
2004-12-08 19:28 ` Greg KH
2004-12-08 19:28 ` Greg KH
2004-12-08 19:46 ` [ANNOUNCE] udev 048 release Greg KH
2004-12-08 19:46 ` Greg KH
2004-12-08 21:56 ` Tomasz Kłoczko
2004-12-08 21:56 ` Tomasz Kłoczko
2004-12-08 22:05 ` Greg KH
2004-12-08 22:05 ` Greg KH
2004-12-08 22:15 ` Kay Sievers
2004-12-08 22:15 ` Kay Sievers
2004-12-08 23:25 ` Tomasz Kłoczko
2004-12-08 23:25 ` Tomasz Kłoczko
2004-12-08 22:22 ` Marco d'Itri
2004-12-08 23:56 ` Marco d'Itri
2004-12-09 0:08 ` Mike Frysinger
2004-12-09 21:47 ` Andrew Walrond
2004-12-09 21:47 ` Andrew Walrond
2004-12-09 23:25 ` Greg KH
2004-12-09 23:25 ` Greg KH
2004-12-10 8:46 ` Andrew Walrond
2004-12-10 8:46 ` Andrew Walrond
2004-12-09 21:56 ` Kay Sievers
2004-12-09 22:07 ` Andrew Walrond
2004-12-09 22:18 ` Kay Sievers
2004-12-09 22:24 ` Andrew Walrond
2004-12-09 22:27 ` Kay Sievers
2004-12-09 22:33 ` Andrew Walrond
2004-12-11 16:44 ` [ANNOUNCE] udev 047 release [u] Martin Schlemmer [c]
2004-12-11 16:44 ` Martin Schlemmer [c]
2004-12-11 17:46 ` Kay Sievers
2004-12-11 17:59 ` Martin Schlemmer [c]
2004-12-13 16:44 ` Martin Schlemmer [c]
2004-12-13 17:08 ` Kay Sievers
2004-12-13 19:18 ` Martin Schlemmer [c]
2004-12-14 0:46 ` Kay Sievers
2004-12-17 0:08 ` Greg KH
2004-12-17 17:11 ` Martin Schlemmer [c]
2004-12-17 23:32 ` Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20041208185856.GA26734@kroah.com \
--to=greg@kroah.com \
--cc=linux-hotplug-devel@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.