Slashdot Mirror


Linux 2.2.7 Released

MazMart was the first to report that a new stable kernel. Linus decided to name it 2.2.7- a surprise move that enraged and shocked, but since it was the next available digit we shouldn't be all that surprised. Now if I only I had a T1- hemos would kill me if I seized control of the ISDN for something so selfish as as kernel.

2 of 146 comments (clear)

  1. USB Support by Jordy · · Score: 5

    Hmm, the USB support in 2.2.7 appears to be an alternate development by Linus & friends rather than from the Linux USB project.

    Anyone have any ideas why they wrote their own instead of working with Linux USB project's version?

    The Linux USB projects sources seem farther along than what is included in the kernel.

    --

    --
    The world is neither black nor white nor good nor evil, only many shades of CowboyNeal.
  2. Small Patch to get USB to compile by LucaL · · Score: 5

    I have just posted it to linux-kernel:

    --- drivers/usb/usb.h.bak Wed Apr 28 21:59:45 1999
    +++ drivers/usb/usb.h Wed Apr 28 22:08:08 1999
    @@ -363,8 +363,8 @@
    void usb_audio_interface(struct usb_interface_descriptor *, u8 *);
    void usb_audio_endpoint(struct usb_endpoint_descriptor *, u8 *);
    #else
    -extern inline void usb_audio_interface(struct usb_interface_descriptor *, u8 *) {}
    -extern inline void usb_audio_endpoint(struct usb_endpoint_descriptor *, u8 *) {}
    +extern inline void usb_audio_interface(struct usb_interface_descriptor *interface, u8 *data) {}
    +extern inline void usb_audio_endpoint(struct usb_endpoint_descriptor *interface, u8 *data) {}
    #endif

    #endif