* [ANNOUNCE] udev 017 release
@ 2004-02-13 1:10 Greg KH
2004-02-13 1:20 ` Jon Smirl
2004-02-13 3:05 ` Eric Sandall
0 siblings, 2 replies; 4+ messages in thread
From: Greg KH @ 2004-02-13 1:10 UTC (permalink / raw)
To: linux-hotplug-devel, linux-kernel
I've released the 017 version of udev. It can be found at:
kernel.org/pub/linux/utils/kernel/hotplug/udev-017.tar.gz
rpms built against Red Hat FC1 are available at:
kernel.org/pub/linux/utils/kernel/hotplug/udev-017-1.i386.rpm
with the source rpm at:
kernel.org/pub/linux/utils/kernel/hotplug/udev-017-1.src.rpm
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
Major changes from the 015 version:
- lots of udevd and udevsend cleanups and tweaks. udevd can now
be built with klibc, and doesn't need a lock file anymore to
work.
- lots of bug fixes and other cleanups.
- shrink the size of the database by a large amount.
In all, there is nothing major in this release, but any current users of
udev will want this version for all of the bugfixes if for nothing else.
Thanks a lot to Chris Friesen and Kay Sievers for cleaning up the udevd
and udevsend communication path and code so much. I really appreciate
it.
Thanks also 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 v016 to v017
======================
<azarah:nosferatu.za.org>:
o make logging a config option
<christophe.varoqui:free.fr>:
o more udev-016/extras/multipath
o more udev-016/extras/multipath
o update extras/multipath
Kay Sievers:
o udev - keep private data out of the database?
o better credential patch
o udevd - client access authorization
o compile udevd with klibc
o udev - fix "ignore method"
o udev - fix cdrom symlink rule
o convert udevsend/udevd to DGRAM and single-threaded
o udevd - kill the lockfile
o udevd - fix socket path length
o udevd - switch socket path to abstract namespace
o udevd - allow to bypass sequence number
o include used function
Greg Kroah-Hartman:
o add udev_log to the documentation
o fix offsetof() define in klibc
o add some .spec file changes from Red Hat
o update the init.d udev script based on a patch from Red Hat
o remove the .udev.tdb when installing or uninstalling to be safe
o remove the database at startup
o fix bug in permission handling
o update klibc to version .107
o update the bitkeeper ignore file list
o add udevtest program to build
o fix problem where usb devices can be either the main device or the interface
o more logging.h cleanups to be a bit more flexible
o stop using mode_t as different libcs define it in different ways :(
o remove some more KLIBC fixups that are no longer needed
o let udev-test.pl run an individual test if you ask it to
o Handle the '!' character that some block devices have
o add a block device with a ! in the name, and a test for this
o fix up 'make release' to use bk to build the export tree
o fix log option code so that it actually works for all udev programs
o finish syncing up with klibc
o sync with latest version of klibc (0.107)
o fix up Makefile dependancies for udev_version.h
Patrick Mansfield:
o udev add wild card compare for ID
o udev kill extra bus_id compares in match_id
-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id\x1356&alloc_id438&op=click
_______________________________________________
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ANNOUNCE] udev 017 release
2004-02-13 1:10 [ANNOUNCE] udev 017 release Greg KH
@ 2004-02-13 1:20 ` Jon Smirl
2004-02-13 1:29 ` Greg KH
2004-02-13 3:05 ` Eric Sandall
1 sibling, 1 reply; 4+ messages in thread
From: Jon Smirl @ 2004-02-13 1:20 UTC (permalink / raw)
To: linux-hotplug
Version 107 of klibc is needed for this to build on current 2.6 bk, you're at
101.
--- Greg KH <greg@kroah.com> wrote:
> I've released the 017 version of udev. It can be found at:
> kernel.org/pub/linux/utils/kernel/hotplug/udev-017.tar.gz
>
> rpms built against Red Hat FC1 are available at:
> kernel.org/pub/linux/utils/kernel/hotplug/udev-017-1.i386.rpm
> with the source rpm at:
> kernel.org/pub/linux/utils/kernel/hotplug/udev-017-1.src.rpm
>
> 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
>
>
> Major changes from the 015 version:
> - lots of udevd and udevsend cleanups and tweaks. udevd can now
> be built with klibc, and doesn't need a lock file anymore to
> work.
> - lots of bug fixes and other cleanups.
> - shrink the size of the database by a large amount.
>
> In all, there is nothing major in this release, but any current users of
> udev will want this version for all of the bugfixes if for nothing else.
>
> Thanks a lot to Chris Friesen and Kay Sievers for cleaning up the udevd
> and udevsend communication path and code so much. I really appreciate
> it.
>
> Thanks also 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 v016 to v017
> ======================
>
> <azarah:nosferatu.za.org>:
> o make logging a config option
>
> <christophe.varoqui:free.fr>:
> o more udev-016/extras/multipath
> o more udev-016/extras/multipath
> o update extras/multipath
>
> Kay Sievers:
> o udev - keep private data out of the database?
> o better credential patch
> o udevd - client access authorization
> o compile udevd with klibc
> o udev - fix "ignore method"
> o udev - fix cdrom symlink rule
> o convert udevsend/udevd to DGRAM and single-threaded
> o udevd - kill the lockfile
> o udevd - fix socket path length
> o udevd - switch socket path to abstract namespace
> o udevd - allow to bypass sequence number
> o include used function
>
> Greg Kroah-Hartman:
> o add udev_log to the documentation
> o fix offsetof() define in klibc
> o add some .spec file changes from Red Hat
> o update the init.d udev script based on a patch from Red Hat
> o remove the .udev.tdb when installing or uninstalling to be safe
> o remove the database at startup
> o fix bug in permission handling
> o update klibc to version .107
> o update the bitkeeper ignore file list
> o add udevtest program to build
> o fix problem where usb devices can be either the main device or the
> interface
> o more logging.h cleanups to be a bit more flexible
> o stop using mode_t as different libcs define it in different ways :(
> o remove some more KLIBC fixups that are no longer needed
> o let udev-test.pl run an individual test if you ask it to
> o Handle the '!' character that some block devices have
> o add a block device with a ! in the name, and a test for this
> o fix up 'make release' to use bk to build the export tree
> o fix log option code so that it actually works for all udev programs
> o finish syncing up with klibc
> o sync with latest version of klibc (0.107)
> o fix up Makefile dependancies for udev_version.h
>
> Patrick Mansfield:
> o udev add wild card compare for ID
> o udev kill extra bus_id compares in match_id
>
>
>
> -------------------------------------------------------
> SF.Net is sponsored by: Speed Start Your Linux Apps Now.
> Build and deploy apps & Web services for Linux with
> a free DVD software kit from IBM. Click Now!
> http://ads.osdn.com/?ad_id\x1356&alloc_id438&op=click
> _______________________________________________
> 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
==Jon Smirl
jonsmirl@yahoo.com
__________________________________
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html
-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id\x1356&alloc_id438&op=click
_______________________________________________
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ANNOUNCE] udev 017 release
2004-02-13 1:20 ` Jon Smirl
@ 2004-02-13 1:29 ` Greg KH
0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2004-02-13 1:29 UTC (permalink / raw)
To: Jon Smirl; +Cc: linux-hotplug-devel, linux-kernel
On Thu, Feb 12, 2004 at 05:20:31PM -0800, Jon Smirl wrote:
> Version 107 of klibc is needed for this to build on current 2.6 bk, you're at
> 101.
No I am not:
> > o update klibc to version .107
> > o sync with latest version of klibc (0.107)
Hm, two sync ups. That isn't good enough? :)
thanks,
greg k-h
-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id\x1356&alloc_id438&op=click
_______________________________________________
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ANNOUNCE] udev 017 release
2004-02-13 1:10 [ANNOUNCE] udev 017 release Greg KH
2004-02-13 1:20 ` Jon Smirl
@ 2004-02-13 3:05 ` Eric Sandall
1 sibling, 0 replies; 4+ messages in thread
From: Eric Sandall @ 2004-02-13 3:05 UTC (permalink / raw)
To: linux-hotplug
Quoting Greg KH <greg@kroah.com>:
> I've released the 017 version of udev. It can be found at:
> kernel.org/pub/linux/utils/kernel/hotplug/udev-017.tar.gz
Is ftp.kernel.org (and ftp.us) just slow on the uptake, or is the file not
uploaded yet?
-sandalle
--
PGP Key Fingerprint: FCFF 26A1 BE21 08F4 BB91 FAED 1D7B 7D74 A8EF DD61
http://search.keyserver.net:11371/pks/lookup?op=get&search=0xA8EFDD61
-----BEGIN GEEK CODE BLOCK-----
Version: 3.12
GCS/E/IT$ d-- s++:+>: a-- C++(+++) BL++++VIS>$ P+(++) L+++ E-(---) W++ N+@ o?
K? w++++>-- O M-@ V-- PS+(+++) PE(-) Y++(+) PGP++(+) t+() 5++ X(+) R+(++)
tv(--)b++(+++) DI+@ D++(+++) G>+++ e>+++ h---(++) r++ y+
------END GEEK CODE BLOCK------
Eric Sandall | Source Mage GNU/Linux Developer
eric@sandall.us | http://www.sourcemage.org/
http://eric.sandall.us/ | SysAdmin @ Inst. Shock Physics @ WSU
http://counter.li.org/ #196285 | http://www.shock.wsu.edu/
----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.
-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id\x1356&alloc_id438&op=click
_______________________________________________
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
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2004-02-13 3:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-13 1:10 [ANNOUNCE] udev 017 release Greg KH
2004-02-13 1:20 ` Jon Smirl
2004-02-13 1:29 ` Greg KH
2004-02-13 3:05 ` Eric Sandall
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).