NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: kern/39590: wi driver doesn't recognise 3COM CRWE777A PCMCIA card



The following reply was made to PR kern/39590; it has been noted by GNATS.

From: "Tim McGilchrist" <timmcgil%gmail.com@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc: kern-bug-people%netbsd.org@localhost, gnats-admin%netbsd.org@localhost, 
netbsd-bugs%netbsd.org@localhost
Subject: Re: kern/39590: wi driver doesn't recognise 3COM CRWE777A PCMCIA card
Date: Mon, 6 Oct 2008 09:01:04 +1100

 Hi,
 
 Just a minor patch to add the 3Com CRWE777A card to the wi driver and
 add both the CRWE737A and 777A cards to the list in the wi.4 manpage.
 The diffs were generated by ' cvs diff -u -N ' and are included inline
 below.
 
 Tim
 
 Adding the CRWE777A pcmcia card to the wi driver
 
 ------------------------------------------------------------------
 
 Index: pcmciadevs
 ===================================================================
 RCS file: /cvsroot/src/sys/dev/pcmcia/pcmciadevs,v
 retrieving revision 1.227
 diff -u -r1.227 pcmciadevs
 --- pcmciadevs  6 Sep 2008 22:07:11 -0000       1.227
 +++ pcmciadevs  5 Oct 2008 21:57:48 -0000
 @@ -121,6 +121,7 @@
 
  /* 3COM Products */
  product 3COM 3CRWE737A         0x0001 3Com AirConnect Wireless LAN
 +product 3COM 3CRWE777A         0x0001 3Com AirConnect (CRWE777A) Wireless LAN
  product 3COM 3CXM056BNW                0x002f 3Com/NoteWorthy
 3CXM056-BNW 56K Modem
  product 3COM 3CXEM556          0x0035 3Com/Megahertz 3CXEM556 Ethernet/Modem
  product 3COM 3CXEM556INT       0x003d 3Com/Megahertz 3CXEM556-INT
 Ethernet/Modem
 Index: pcmciadevs.h
 ===================================================================
 RCS file: /cvsroot/src/sys/dev/pcmcia/pcmciadevs.h,v
 retrieving revision 1.230
 diff -u -r1.230 pcmciadevs.h
 --- pcmciadevs.h        6 Sep 2008 22:08:38 -0000       1.230
 +++ pcmciadevs.h        5 Oct 2008 21:57:48 -0000
 @@ -1,4 +1,4 @@
 -/*     $NetBSD: pcmciadevs.h,v 1.230 2008/09/06 22:08:38 rmind Exp $   */
 +/*     $NetBSD$        */
 
  /*
   * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
 @@ -129,6 +129,8 @@
  /* 3COM Products */
  #define        PCMCIA_CIS_3COM_3CRWE737A       { NULL, NULL, NULL, NULL }
  #define        PCMCIA_PRODUCT_3COM_3CRWE737A   0x0001
 +#define        PCMCIA_CIS_3COM_3CRWE777A       { NULL, NULL, NULL, NULL }
 +#define        PCMCIA_PRODUCT_3COM_3CRWE777A   0x0001
  #define        PCMCIA_CIS_3COM_3CXM056BNW      { NULL, NULL, NULL, NULL }
  #define        PCMCIA_PRODUCT_3COM_3CXM056BNW  0x002f
  #define        PCMCIA_CIS_3COM_3CXEM556        { NULL, NULL, NULL, NULL }
 Index: pcmciadevs_data.h
 ===================================================================
 RCS file: /cvsroot/src/sys/dev/pcmcia/pcmciadevs_data.h,v
 retrieving revision 1.230
 diff -u -r1.230 pcmciadevs_data.h
 --- pcmciadevs_data.h   6 Sep 2008 22:08:38 -0000       1.230
 +++ pcmciadevs_data.h   5 Oct 2008 21:57:49 -0000
 @@ -1,4 +1,4 @@
 -/*     $NetBSD: pcmciadevs_data.h,v 1.230 2008/09/06 22:08:38 rmind
 Exp $      */
 +/*     $NetBSD$        */
 
  /*
   * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
 @@ -64,6 +64,13 @@
             "3Com AirConnect Wireless LAN",     }
         ,
         {
 +           PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CRWE777A,
 +           PCMCIA_CIS_3COM_3CRWE777A,
 +           0,
 +           "3Com Corporation",
 +           "3Com AirConnect (CRWE777A) Wireless LAN",  }
 +       ,
 +       {
             PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CXM056BNW,
             PCMCIA_CIS_3COM_3CXM056BNW,
             0,
 
 
 ------------------------------------------------------------------
 
 
 Adding the 2 3Com cards to the wi.4 manpage
 
 ------------------------------------------------------------------
 
 Index: wi.4
 ===================================================================
 RCS file: /cvsroot/src/share/man/man4/wi.4,v
 retrieving revision 1.37
 diff -u -r1.37 wi.4
 --- wi.4        6 Jul 2005 07:47:45 -0000       1.37
 +++ wi.4        5 Oct 2008 21:38:06 -0000
 @@ -122,6 +122,10 @@
  .Pp
  .Bl -item -offset indent -compact
  .It
 +3Com AirConnect 3CRWE737A
 +.It
 +3Com AirConnect 3CRWE777A
 +.It
  Alvarion BreezeNET
  .It
  Lucent WaveLAN/IEEE 2.0Mb Bronze
 
 ------------------------------------------------------------------
 
 
 On Sat, Sep 20, 2008 at 3:45 PM, David Holland 
<dholland-bugs%netbsd.org@localhost> wrote:
 > The following reply was made to PR kern/39590; it has been noted by GNATS.
 >
 > From: David Holland <dholland-bugs%netbsd.org@localhost>
 > To: gnats-bugs%NetBSD.org@localhost
 > Cc: kern-bug-people%netbsd.org@localhost, gnats-admin%netbsd.org@localhost,
 >        netbsd-bugs%netbsd.org@localhost
 > Subject: Re: kern/39590: wi driver doesn't recognise 3COM CRWE777A PCMCIA
 >        card
 > Date: Sat, 20 Sep 2008 04:44:03 +0000
 >
 >  On Sat, Sep 20, 2008 at 04:25:00AM +0000, timmcgil%gmail.com@localhost 
 > wrote:
 >  > The man page for wi(4) should also be updated to show support for
 >  > this card. I'd happily modify that file and submit a patch for it
 >  > but I'm not sure how this process works with NetBSD.
 >  >
 >  > Please email me the instructions or a link to them, as I'd like to
 >  > get involved.
 >
 >  It's easy once you have the patch - just send a PR and include the
 >  patch. (Preferably include, not attach, because gnats is kind of
 >  stupid about file attachments.) Or you can append the patch to this PR
 >  by replying to gnats-bugs. Make the patch with "diff -up old new".
 >
 >  http://www.netbsd.org/contrib/ has more info.
 >
 >  --
 >  David A. Holland
 >  dholland%netbsd.org@localhost
 >
 >
 


Home | Main Index | Thread Index | Old Index