hanscees wrote:
> ok, I've tried this
>
> 1 I did /sbin/e-smith/config set ethernetdriver1 ne
The config utility is case sensitive. So you need to do:
/sbin/e-smith/config delete ethernetdriver1
/sbin/e-smith/config set EthernetDriver1 ne
> 2. /sbin/e-smith/signal-event console-save
>
> 3. echo options ne i0=220 irq=9 >> /ect/conf.modules
Presumably you mean /etc/conf.modules.
Note that the irq is optional if you provide the I/O address - autodetection seems to work reliably, so you are better giving no IRQ than risking an incorrect one.
> but that was wrong so i did
>
> 3. echo options ne i0=0x220 irq=9 >> /ect/conf.modules
>
> then I rebooted
You also need to do:
/sbin/e-smith/signal-event console-save
> but only interface io is loaded
>
> So perhaps I need to get rid of the mistake I typed into
> conf.modulkes but i do not know how to edit in e-amith console?
Use the editor called "pico":
pico /etc/conf.modules
> also did I do something wrong because modprobe does not show
> ne.0 (the card is a ne2000 isa)
>
> and insmod ne gives errors like
>
> unresolved symbol ei_open and so on
Delete the incorrect stuff from /etc/conf.modules, then do:
modprobe ne
It should load OK like that, which will verify that you have the correct options. Then do the "console-save" thing, then reboot.
Charlie