linux-hotplug.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [ANNOUNCE] udev 113 release
@ 2007-06-23 16:58 Kay Sievers
  2007-06-26 10:14 ` Andreas Jellinghaus
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Kay Sievers @ 2007-06-23 16:58 UTC (permalink / raw)
  To: linux-hotplug

Here comes a new udev version. Thanks to all who have contributed to
this release.

The tarball can be found here:
  ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/

The development repository can be found here:
  http://www.kernel.org/git/?p=linux/hotplug/udev.git;a=summary

The ChangeLog can be found here:
  http://www.kernel.org/git/?p=linux/hotplug/udev.git;a=blob;hb=HEAD;f=ChangeLog


udev 113
====
Bugfixes.

Final merge of patches/features from the Ubuntu package.


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
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 113 release
  2007-06-23 16:58 [ANNOUNCE] udev 113 release Kay Sievers
@ 2007-06-26 10:14 ` Andreas Jellinghaus
  2007-06-26 13:39 ` Dan Nicholson
  2007-06-27 14:58 ` Kay Sievers
  2 siblings, 0 replies; 4+ messages in thread
From: Andreas Jellinghaus @ 2007-06-26 10:14 UTC (permalink / raw)
  To: linux-hotplug

> Here comes a new udev version. Thanks to all who have contributed to
> this release.

any incompatible changes in this version or other recent versions?
any new changes we should do to our udev rules?

I remember that debian etch udev doesn't like DRIVER, wants me to switch to
DRIVERS=. And ubuntu EDGY udev doesn't know about SUBSYSTEMS (guess too
old). So I need start using a per distribution/version udev rules file,
or loose the ability to run the latest software on older distributions?

my rule file is available at
https://www.opensc-project.org/openct/browser/trunk/etc/openct.udev

also is there any news about /dev/bus/usb as a /proc/bus/usb replacement?
will I be able to use it with newer kernel and udev?

if not I fear I need to check recent distributions and file bug reports,
as some seem to bind-mount /dev/bus/usb to /proc/bus/usb, with the result
that I don't get events from udev because /proc/bus/usb is not mounted with
an usbfs. - I hope I remember this correctly.

Thanks for your help.

Regards, Andreas


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
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 113 release
  2007-06-23 16:58 [ANNOUNCE] udev 113 release Kay Sievers
  2007-06-26 10:14 ` Andreas Jellinghaus
@ 2007-06-26 13:39 ` Dan Nicholson
  2007-06-27 14:58 ` Kay Sievers
  2 siblings, 0 replies; 4+ messages in thread
From: Dan Nicholson @ 2007-06-26 13:39 UTC (permalink / raw)
  To: linux-hotplug

On 6/26/07, Andreas Jellinghaus <aj@ciphirelabs.com> wrote:
> > Here comes a new udev version. Thanks to all who have contributed to
> > this release.
>
> any incompatible changes in this version or other recent versions?
> any new changes we should do to our udev rules?
>
> I remember that debian etch udev doesn't like DRIVER, wants me to switch to
> DRIVERS=. And ubuntu EDGY udev doesn't know about SUBSYSTEMS (guess too
> old). So I need start using a per distribution/version udev rules file,
> or loose the ability to run the latest software on older distributions?

I believe you'll want to have per-udev-version files or an sed for key
names in the Makefile. Check the RELEASE-NOTES file in the released
tarballs. It explains when some key names have been deprecated or
removed. But the tipping point is udev-098 for deprecation. You can
check the system's udev version with $(udevinfo --version).

> my rule file is available at
> https://www.opensc-project.org/openct/browser/trunk/etc/openct.udev

It looks like you would have issues with SYSFS, SUBSYSTEM and DRIVER.
Again, the RELEASE-NOTES section for udev-098 should be pretty clear
about how these need to be used in newer releases.

--
Dan

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
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 113 release
  2007-06-23 16:58 [ANNOUNCE] udev 113 release Kay Sievers
  2007-06-26 10:14 ` Andreas Jellinghaus
  2007-06-26 13:39 ` Dan Nicholson
@ 2007-06-27 14:58 ` Kay Sievers
  2 siblings, 0 replies; 4+ messages in thread
From: Kay Sievers @ 2007-06-27 14:58 UTC (permalink / raw)
  To: linux-hotplug

On 6/26/07, Andreas Jellinghaus <aj@ciphirelabs.com> wrote:
> > Here comes a new udev version. Thanks to all who have contributed to
> > this release.
>
> any incompatible changes in this version or other recent versions?
> any new changes we should do to our udev rules?
>
> I remember that debian etch udev doesn't like DRIVER, wants me to switch to
> DRIVERS=.

Yes, DRIVER= was kind of broken. DRIVERS= should be used. DRIVER=
today matches on the current device only, not on the whole device
chain like DRIVERS=  is doing.

> And ubuntu EDGY udev doesn't know about SUBSYSTEMS (guess too
> old). So I need start using a per distribution/version udev rules file,
> or loose the ability to run the latest software on older distributions?

SUBSYSTEMS= was BUS= in earlier days, BUS= still works, it is just
no longer mentioned in the man page.

> my rule file is available at
> https://www.opensc-project.org/openct/browser/trunk/etc/openct.udev
>
> also is there any news about /dev/bus/usb as a /proc/bus/usb replacement?
> will I be able to use it with newer kernel and udev?

Modern distros can not use proc usbfs, because it does not support ACL's.

> if not I fear I need to check recent distributions and file bug reports,
> as some seem to bind-mount /dev/bus/usb to /proc/bus/usb.

That sounds crazy and useless. Libusb handles both just fine.

>  with the result
> that I don't get events from udev because /proc/bus/usb is not mounted with
> an usbfs.

Udev events do not care about usbfs.

>  - I hope I remember this correctly.

Some distros do not mount /proc/bus/usb, and there is no usbfs at all,
only /dev/bus/usb/

Kay

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
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:[~2007-06-27 14:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-23 16:58 [ANNOUNCE] udev 113 release Kay Sievers
2007-06-26 10:14 ` Andreas Jellinghaus
2007-06-26 13:39 ` Dan Nicholson
2007-06-27 14:58 ` Kay Sievers

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).