Re: problems with Xircom REM56G (non-Cardbus) on -CURRENT
"M. Warner Losh" <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.mobile |
|---|---|
| Message-ID | <[email protected]> |
In message: <[email protected]> M. Warner Losh <[email protected]> writes: : In message: <[email protected]> : Stijn Hoop <[email protected]> writes: : : Except for one private reply (which was helpful but unfortenately didn't : : work), I got no responses... Can I do anything to make this work (compiling : : with debugging options, etc etc), or am I just screwed with this card & : : -CURRENT? : : You might want to try to set machdep.pccard.mem_start and/or .mem_end : to see if you can get things working right. Alternatively, the following patch might help: Index: pccard_nbk.c =================================================================== RCS file: /home/imp/FreeBSD/CVS/src/sys/pccard/pccard_nbk.c,v retrieving revision 1.40 diff -u -r1.40 pccard_nbk.c --- pccard_nbk.c 30 May 2002 18:48:44 -0000 1.40 +++ pccard_nbk.c 27 Jun 2002 18:00:06 -0000 @@ -86,8 +86,13 @@ SYSCTL_NODE(_machdep, OID_AUTO, pccard, CTLFLAG_RW, 0, "pccard"); +#ifdef UNSAFE static u_long mem_start = IOM_BEGIN; static u_long mem_end = IOM_END; +#else +static u_long mem_start = 0xd0000; +static u_long mem_end = 0xeffff; +#endif SYSCTL_ULONG(_machdep_pccard, OID_AUTO, mem_start, CTLFLAG_RW, &mem_start, 0, ""); To Unsubscribe: send mail to [email protected] with "unsubscribe freebsd-mobile" in the body of the message