From: yuriwho <yu...@ma...> - 2002-11-27 04:49:34
|
The EnGenius cards require the Info.plist file to be edited. This is a regular repost of the Info.plist modification instructions (until we get another release together)...instructions follow, the example given will not work for your card, follow the instructions below to get it working: 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 Monday, November 25, 2002, at 12:28 PM, Daniel Grams wrote: > At this point I've tried everything I can think of to get my EnGenius > card to work. I've installed and reinstalled the drivers several times > including installing the files manually. I did a clean installation of > 10.2 and tried it on that. I've tested my pc card slot with a known > good card (a sony memory stick adaptor) and have tried both an > internal antenna card and an external antenna card with no luck. I've > also tried installing on a Powerbook G4 800 with the same results. > Never once have I seen the light turn on the card nor am I ever given > an option in the network system preference to activate what would be > en2 for me. Does anyone have any suggestions? At this point I'm > considering returning the cards and living with my horrible airport > range... > > Thanks, > Dan > > > ### system info > > ProductName: Mac OS X > ProductVersion: 10.2.2 > BuildVersion: 6F21 > Darwin galtsgulch.local. 6.2 Darwin Kernel Version 6.2: Tue Nov 5 > 22:00:03 PST 2002; root:xnu/xnu-344.12.2.obj~1/RELEASE_PPC Power > Macintosh powerpc > ppc7450 > > ### wireless driver files installed > > drwxr-xr-x 3 root wheel 102 Nov 25 11:20 WirelessDriver.kext > drwxr-xr-x 3 root wheel 102 Sep 9 2001 IOPCCardFamily.kext > ls: /Library/PreferencePanes: No such file or directory > > ### wirelesscard info > > > ### network info > > lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384 > inet6 ::1 prefixlen 128 > inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 > inet 127.0.0.1 netmask 0xff000000 > gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280 > stf0: flags=0<> mtu 1280 > en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500 > inet6 fe80::203:93ff:fe1d:35c%en0 prefixlen 64 scopeid 0x4 > ether 00:03:93:1d:03:5c > media: autoselect (none) status: inactive > supported media: none autoselect 10baseT/UTP <half-duplex> > 10baseT/UTP <half-duplex,hw-loopback> 10baseT/UTP <full-duplex> > 10baseT/UTP <full-duplex,hw-loopback> 100baseTX <half-duplex> > 100baseTX <half-duplex,hw-loopback> 100baseTX <full-duplex> 100baseTX > <full-duplex,hw-loopback> 1000baseTX <full-duplex> 1000baseTX > <full-duplex,hw-loopback> 1000baseTX <full-duplex,flow-control> > 1000baseTX <full-duplex,flow-control,hw-loopback> > en1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500 > inet6 fe80::230:65ff:fe01:f5b3%en1 prefixlen 64 scopeid 0x5 > inet 10.0.1.3 netmask 0xffffff00 broadcast 10.0.1.255 > ether 00:30:65:01:f5:b3 > media: autoselect status: active > 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: Get the new Palm Tungsten T > handheld. Power & Color in a compact size! > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > _______________________________________________ > Wirelessdriver-support mailing list > Wir...@li... > https://lists.sourceforge.net/lists/listinfo/wirelessdriver-support |