From: yuriwho <yu...@ma...> - 2002-10-26 20:52:37
|
This is a re-post of an old message. The string you are interested in is "pccardb,7300". Otherwise follow the instructions. We will add this to the faq for the next release. Y To find out for yourself, the relevant information you need is the following: > ### wirelesscard info > > | | "VersionOneInfo" = ("3Com","3CRSHPW_96 Wireless > LAN PC Card$ > | | +-o pccard101,696@0,0 <class IOPCCard16Device> > | | "IOName" = "pccard101,696" This info comes from following terminal command when the card is inserted: ioreg -l | grep pccard Now to test if your card is supportable, you will need to edit the info.plist file in the WirelessDriver.kext file. type the following command in the terminal to edit this file with the pico text editor: sudo pico /System/Library/Extensions/WirelessDriver.kext/Contents/Info.plist look for the following lines: <key>everything else</key> <dict> <key>CFBundleIdentifier</key> <string>org.noncontiguous.WirelessDriver</string> <key>IOClass</key> <string>org_noncontiguous_WirelessDriver</string> <key>IONameMatch</key> <array> <string>pccard156,2</string> <string>pccard1eb,807</string> <string>pccard274,1613</string> <string>pccard274,1612</string> <string>pccard138,2</string> </array> and add your pccard string (pccard101,696) as an entry in this array. i.e.: <array> <string>pccard156,2</string> <string>pccard1eb,807</string> <string>pccard274,1613</string> <string>pccard274,1612</string> <string>pccard138,2</string> <string>pccard101,696</string> </array> to save the file type ctrl-x and accept the changes. View the edited file in the terminal to be sure your changes are correct: more /System/Library/Extensions/WirelessDriver.kext/Contents/Info.plist now try removing and re-inserting the card, if you are lucky it will now work! Let us know if you have success so we can add the card to our list of supported cards. Y On Saturday, October 26, 2002, at 06:54 AM, jason wrote: > > > Dear Souce-forge wireless wizards: > > Greetings. I have installed the driver but can't seem to get to the > first stage, where I could choose network en1 (or en2) > Its just not listed under network configurations - so I think there > might be a conflict with my airport card...? > I have an airport card installed and running. I want to use your > driver and another card in order to extend my range - with an external > antenna; but only sometimes. > So optimally I would have both installed at once. I think this is > possible but am not sure. > > On the menu bar there is the icon which recognizes correctly my card, > so something is working... > > Thanks for you advice and help, > > Best > > Jason Danziger > ...in Berlin....(germany) > > > Collected information re: my system via script: > * > Last login: Sat Oct 26 13:21:55 on console > /Volumes/WirelessDriver\ beta\ 5.1/Utilities/Troubleshooting\ > Info.command; exit > Welcome to Darwin! > [oden:~] jason% /Volumes/WirelessDriver\ beta\ > 5.1/Utilities/Troubleshooting\ Info.command; exit > > ### system info > > ProductName: Mac OS X > ProductVersion: 10.2.1 > BuildVersion: 6D52 > Darwin oden.local. 6.1 Darwin Kernel Version 6.1: Fri Sep 6 23:24:34 > PDT 2002; root:xnu/xnu-344.2.obj~2/RELEASE_PPC Power Macintosh > powerpc > ppc7400 > > ### wireless driver files installed > > drwxr-xr-x 3 root wheel 102 Oct 26 13:06 WirelessDriver.kext > drwxr-xr-x 3 root wheel 102 Jul 27 22:22 IOPCCardFamily.kext > > ### wirelesscard info > > | | "VersionOneInfo" = ("NETGEAR MA401RA Wireless > PC","Card","I$ > | | +-o pccardb,7300@0,0 <class IOPCCard16Device> > | | "IOName" = "pccardb,7300" > > ### network info > > lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384 > inet6 ::1 prefixlen 128 > inet 127.0.0.1 netmask 0xff000000 > gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280 > stf0: flags=0<> mtu 1280 > en0: flags=8822<BROADCAST,SMART,SIMPLEX,MULTICAST> mtu 1500 > tunnel inet --> > ether 00:03:93:55:7d:4e > en1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500 > inet6 fe80::230:65ff:fe02:f9c7%en1 prefixlen 64 scopeid 0x5 > ether 00:30:65:02:f9:c7 > media: autoselect (<unknown type>) status: inactive > supported media: autoselect > > ### wd command line tool status > > /Volumes/WirelessDriver beta 5.1/Utilities/Troubleshooting > Info.command: WirelessConfig: command not found > logout > [Process completed] > > > *** > > > > ------------------------------------------------------- > This SF.net email is sponsored by: ApacheCon, November 18-21 in > Las Vegas (supported by COMDEX), the only Apache event to be > fully supported by the ASF. http://www.apachecon.com > _______________________________________________ > Wirelessdriver-support mailing list > Wir...@li... > https://lists.sourceforge.net/lists/listinfo/wirelessdriver-support |