Link to home
Start Free TrialLog in
Avatar of farrar
farrar

asked on

EtherExpress Pro module installation failure

Hello,
We've successfully installed the new Debian Linux, except that the EtherExpress Pro/10+ card driver won't seem to install.  The details are below; does anyone have any ideas as to what the problem might be, or can you point me to where I might be able to find the solution?
Thanks,
David Scott Farrar
UCSD Cognitive Science
farrar@cogsci.ucsd.edu

--The Details---------------------------------------------

We're trying to install Debian GNU/Linux (from CD-ROM) version 1.2.6, Kernel 2.0.27 on a 180MHz PentiumPro with an Intel Etherexpress Pro/10+ ISA card.  Following the instructions in the document "install.txt", we
were able to install everything except the device driver module for our ethernet card, "eepro".  When we select "Configure Device Driver Modules" and choose "eepro", we get the message:
        loading device 'eth0'
        Initialization of eepro failed
        Installation failed.

From a Windows 95 partition, the card seems to work fine; Windows recognizes the card as an "Intel EtherExpress PRO/10 (PnP Enabled)", and we are able to run Netscape, etc.  Under the Windows System Properties/Device Manager/Resources tab, the card uses I/O range 0x230-0x23F and IRQ 09.  Windows does not detect any device conflicts with these resources.

During a linux boot, there are no ethernet device messages
"eth0:...et.c".  From linux, a "cat /proc/ioports" shows no devices at all in the range of 0x200-0x2F7, and "cat /proc/interrupts" shows that irq 9 is not used.  We tried passing ethernet arguments to the kernel:
        linux ether=9,0x230,0,0,eth0
and we tried loading the "eepro" module after booting linux:
        insmod eepro
        insmod eepro io=0x230 irq=9    (From Windows Resources tab)
        insmod eepro io=0x200 irq=0
         (From /usr/src/linux/Documentation/networking/net-modules.txt)
both fail to install and give the same error message:
        loading device 'eth0'
        Initialization of eepro failed
We built a new kernel specifically including the Etherexpress Pro driver, but we get no ethernet device messages during boot, nor does the device appear in /dev.

We're baffled.  Any suggestions would be greatly appreciated, and can be sent to:   farrar@cogsci.ucsd.edu
Thanks!

ASKER CERTIFIED SOLUTION
Avatar of dux
dux
Flag of Romania image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of farrar
farrar

ASKER

The website page:
http://cesdis.gsfc.nasa.gov/linux/drivers/eepro100.html 
has instructions for the EtherExpress Pro/100.  I looked around the same site, however, and found instructions and new driver source code for the card I have, the EtherExpress Pro/10+ ISA
(http://titan.cs.uni-bonn.ed/~canavan/eepro.c).  I recompiled the kernel and the modules with the new driver source code, but I get the same behavior:
    loading device 'eth0'
    Initialization of eepro failed
Sigh...

Compile your kernel with EtherExpress Pro/10+ support, not module.
Avatar of farrar

ASKER

When I compiled the Pro/10+ driver, I put it in the kernel (not as a loadable module).  The behavior was still the same as before (no ethernet device messages during bootup).  And after booting up, I tried 'insmod' (as before, with&without io/irqs), but still no change.