Re: Realtek module don't want to be loaded! Is too busy... ;)
On Wed, Nov 21, 2001 at 03:13:44PM +0000, Nuno Emanuel F. Carvalho wrote:
> On Wed, 21 Nov 2001, Erdmut Pfeifer wrote:
>
> > check whether your BIOS has a "Windows 9x support" option or some
> > b*llsh*t like that -- and if so, try to disable it.
> >
> > On my ASUS notebook, I initially got the same error, which was solved by
> > disabling said option.
> > This notebook has an *onboard* NIC (same RealTek chip), however, so YMMV...
>
> My problem isn't any IRQ Conflit. I already had RedHat 6.1 installed
> working with pcmcia. Didn't changed bios setup. Unfortunally i didn't
> wrote any documentation... ;(
which version of the rtl8139.c driver are u using?
When comparing the init_module()-fragment of the rtl8139.c that came
with the 2.2.14 kernel (v1.07) with the current version (v1.16a):
v1.07:
int init_module(void)
{
return rtl8139_probe(0);
}
v1.16a:
int init_module(void)
{
if (debug) /* Emit version even if no cards detected. */
printk(KERN_INFO "%s" KERN_INFO "%s", versionA, versionB);
#ifdef CARDBUS
register_driver(&realtek_ops);
return 0;
#else
return pci_drv_register(&rtl8139_drv_id, NULL);
#endif
}
...I somehow get the impression that CARDBUS support might not have
been present in the earlier version of the driver. So, it might be
worth trying a newer version. Not sure, though, whether the new
version will work with the old kernel -- but why not simply try?
There isn't much to lose ;) If the most recent version doesn't
compile/work, maybe some other version in between v1.07-1.16 does.
Also, as you said you already had it working in RH 6.1, you might want
to figure out which mix of versions was in use there, and try those...
HTH
--
Erdmut Pfeifer
science+computing ag
www.science-computing.de
-- Bugs come in through open windows. Keep Windows shut! --
Reply to: