All of lore.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] 2004-04-20 release of hotplug scripts
@ 2004-09-21  0:38 ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2004-09-21  0:38 UTC (permalink / raw)
  To: linux-hotplug-devel, linux-kernel, linux-usb-devel, Linux-usb-users

I've just packaged up the latest Linux hotplug scripts into a release,
which can be found at:
	kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.gz
or for those who like bz2 packages:
	kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.bz2
 
It contains a lot of little bug fixes, and the addition of the isapnp.rc
support.

The main web site for the linux-hotplug project can be found at:
	http://linux-hotplug.sf.net/
which contains lots of documentation on the whole linux-hotplug
process.
 
The release is still backwards compatible with 2.4, so there is no need
to worry about upgrading.

The full ChangeLog extract since the last release is included below for
those who want to know everything that's been changed, and who to blame
for them :)

thanks,

greg k-h

Mon Sep 20 2004 kroah
        - 2004_09_20 release
        - added README.modules to the makefile
        - added support for blacklists easier
          http://bugs.gentoo.org/show_bug.cgi?id=60214
        - ifrename is in /usr/sbin, not /sbin.
          http://bugs.gentoo.org/show_bug.cgi?id=46760
        - added isapnp support based on work from Simone Gotti
          <simone.gotti@email.it> and Marco d'Itri
        - fix minor debug message in net.agent for Gentoo boxes
        - allow *.usermap to have blank lines. (patch from Francesco Ferrara
          <ferrara@despammed.com>) at
          http://bugs.gentoo.org/show_bug.cgi?id=49748
        - add usbhid to the list of modules to unload on stop.
        - fix issue with input devices (joysticks specifically) not being
          loaded properly. (lots of gentoo bug ids...)
        - fixed minor issue with usbfs being mounted but no host drivers loaded
          yet <http://bugs.gentoo.org/show_bug.cgi?id=56599>
        - From Marcel Holtmann <marcel@holtmann.org>
                - fix location of FIRMWARE_DIR to /lib/firmware
        - From Bill Nottingham <notting@redhat.com>
                - support a a TwinMos mobile disk, as per https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=111506
        - Posix compliant changes From David Weinehall <tao@kernel.org>
                - changes tests using `-o' and `-a' to use || and && respectively.
                - changes bash-specific functions to generic sh-functions, adds
                  a missing newline at the end of a file, does a few `-o'
                  substitutions and changes /bin/bash to /bin/sh, since the
                  changes removes the need to use /bin/bash.
                - Modifies the remaining non-bash scripts to remove use of the
                  bash:ism local (a quick audit shows that it's not needed),
                  substitutes `-a' and `-o', changes fgrep to grep -F (this
                  change is not strictly necessary, but recommended by the
                  POSIX standard), and one occurence of egrep to grep (since
                  this particular occurence didn't make use of extended regexps
                  anyway)
                - Modifies the remaining bash scripts to use generic
                  sh-functions instead of bash-specific functions, does `-a'
                  and `-o' substitutions, removes use of local, and finally
                  changes /bin/bash to /bin/sh
        - From Alexander E. Patrakov
                - Remove bogus dependency upon "which" and "usbmodules"
                  programs in 2.6 code path
                - Add README.modules file
                - Provide the correct DEVICE variable for USB coldplug events
                  for 2.6.x kernels. The grep ...\$ is used instead of tail -c 4
                  because LFS has the tail command in /usr/bin. That's even
                  more illogical because head is in /bin.
                  This requires a 2.6.6 kernel. 2.6.4 is too old.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ANNOUNCE] 2004-04-20 release of hotplug scripts
@ 2004-09-21  0:38 ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2004-09-21  0:38 UTC (permalink / raw)
  To: linux-hotplug-devel, linux-kernel, linux-usb-devel, Linux-usb-users

I've just packaged up the latest Linux hotplug scripts into a release,
which can be found at:
	kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.gz
or for those who like bz2 packages:
	kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.bz2
 
It contains a lot of little bug fixes, and the addition of the isapnp.rc
support.

The main web site for the linux-hotplug project can be found at:
	http://linux-hotplug.sf.net/
which contains lots of documentation on the whole linux-hotplug
process.
 
The release is still backwards compatible with 2.4, so there is no need
to worry about upgrading.

The full ChangeLog extract since the last release is included below for
those who want to know everything that's been changed, and who to blame
for them :)

thanks,

greg k-h

Mon Sep 20 2004 kroah
        - 2004_09_20 release
        - added README.modules to the makefile
        - added support for blacklists easier
          http://bugs.gentoo.org/show_bug.cgi?id`214
        - ifrename is in /usr/sbin, not /sbin.
          http://bugs.gentoo.org/show_bug.cgi?idF760
        - added isapnp support based on work from Simone Gotti
          <simone.gotti@email.it> and Marco d'Itri
        - fix minor debug message in net.agent for Gentoo boxes
        - allow *.usermap to have blank lines. (patch from Francesco Ferrara
          <ferrara@despammed.com>) at
          http://bugs.gentoo.org/show_bug.cgi?idI748
        - add usbhid to the list of modules to unload on stop.
        - fix issue with input devices (joysticks specifically) not being
          loaded properly. (lots of gentoo bug ids...)
        - fixed minor issue with usbfs being mounted but no host drivers loaded
          yet <http://bugs.gentoo.org/show_bug.cgi?idV599>
        - From Marcel Holtmann <marcel@holtmann.org>
                - fix location of FIRMWARE_DIR to /lib/firmware
        - From Bill Nottingham <notting@redhat.com>
                - support a a TwinMos mobile disk, as per https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id\x111506
        - Posix compliant changes From David Weinehall <tao@kernel.org>
                - changes tests using `-o' and `-a' to use || and && respectively.
                - changes bash-specific functions to generic sh-functions, adds
                  a missing newline at the end of a file, does a few `-o'
                  substitutions and changes /bin/bash to /bin/sh, since the
                  changes removes the need to use /bin/bash.
                - Modifies the remaining non-bash scripts to remove use of the
                  bash:ism local (a quick audit shows that it's not needed),
                  substitutes `-a' and `-o', changes fgrep to grep -F (this
                  change is not strictly necessary, but recommended by the
                  POSIX standard), and one occurence of egrep to grep (since
                  this particular occurence didn't make use of extended regexps
                  anyway)
                - Modifies the remaining bash scripts to use generic
                  sh-functions instead of bash-specific functions, does `-a'
                  and `-o' substitutions, removes use of local, and finally
                  changes /bin/bash to /bin/sh
        - From Alexander E. Patrakov
                - Remove bogus dependency upon "which" and "usbmodules"
                  programs in 2.6 code path
                - Add README.modules file
                - Provide the correct DEVICE variable for USB coldplug events
                  for 2.6.x kernels. The grep ...\$ is used instead of tail -c 4
                  because LFS has the tail command in /usr/bin. That's even
                  more illogical because head is in /bin.
                  This requires a 2.6.6 kernel. 2.6.4 is too old.


-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
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] 2004-04-20 release of hotplug scripts
  2004-09-21  0:38 ` Greg KH
  (?)
@ 2004-09-21  7:32 ` Micha Wiedenmann
  -1 siblings, 0 replies; 4+ messages in thread
From: Micha Wiedenmann @ 2004-09-21  7:32 UTC (permalink / raw)
  To: linux-hotplug

Greg KH worte:

> I've just packaged up the latest Linux hotplug scripts into a release,
> which can be found at:
>         kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.gz
> or for those who like bz2 packages:
>         kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.bz2

It says in the README

| Hotplugging scripts that should work on 2.2 and 2.4 kernels, and which
| understand some of the 2.5 hotplugging updates.

| This particular version won't work on test versions of the 2.4 kernels,
| which (NOTE!) need modutils 2.4.2 or later;

Does that mean that hotplug does not work on kernel 2.4.25? Is that really
true or am I missing something?

| These tools are are GPL'd, and are available at the web site above.
              ^^^^^^^  a small mistake

Micha



-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
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] 2004-04-20 release of hotplug scripts
  2004-09-21  0:38 ` Greg KH
  (?)
  (?)
@ 2004-09-23 18:01 ` Greg KH
  -1 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2004-09-23 18:01 UTC (permalink / raw)
  To: linux-hotplug

On Tue, Sep 21, 2004 at 03:32:11AM -0400, Micha Wiedenmann wrote:
> Greg KH worte:
> 
> > I've just packaged up the latest Linux hotplug scripts into a release,
> > which can be found at:
> >         kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.gz
> > or for those who like bz2 packages:
> >         kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_09_20.tar.bz2
> 
> It says in the README
> 
> | Hotplugging scripts that should work on 2.2 and 2.4 kernels, and which
> | understand some of the 2.5 hotplugging updates.
> 
> | This particular version won't work on test versions of the 2.4 kernels,
> | which (NOTE!) need modutils 2.4.2 or later;
> 
> Does that mean that hotplug does not work on kernel 2.4.25? Is that really
> true or am I missing something?

Is 2.4.25 a 2.4 test kernel?  No, this means that the old 2.4.0-testX
kernels will not work with this release.  But no one runs those kernels
anymore, as they are years old :)

> | These tools are are GPL'd, and are available at the web site above.
>               ^^^^^^^  a small mistake

thanks,

greg k-h


-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
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-09-23 18:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-09-21  0:38 [ANNOUNCE] 2004-04-20 release of hotplug scripts Greg KH
2004-09-21  0:38 ` Greg KH
2004-09-21  7:32 ` Micha Wiedenmann
2004-09-23 18:01 ` Greg KH

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.