[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

Re: No network on Noname box



On Tue, Feb 26, 2002 at 09:24:32AM -0800, Justin Malcolm wrote:
> Madainn
>  
> I have an old 233Mhz noname alpha machine that I would like to put Linux on.
[...]
>  
> I tried several NICs including Intel eepro, 3Com 905c, and others that work
> great with Linux on Intel.  None of them work.  I am trying to use DHCP and
> it times out all the time.  When I do an ifconfig I don't see any eth0 info.

Did you try swapping the PCI cards around? The IRQ routing for the noname 
board has a flaw in that it assigns the nonexistent IRQ13 to one of the PCI
irqs. 

I use this patch on my noname for months:


diff -ur linux-2.4.0-prerelease/arch/alpha/kernel/sys_sio.c linux-2.4.0-prerelease-work/arch/alpha/kernel/sys_sio.c
--- linux-2.4.0-prerelease/arch/alpha/kernel/sys_sio.c	Mon Jan  1 13:42:46 2001
+++ linux-2.4.0-prerelease-work/arch/alpha/kernel/sys_sio.c	Sun Dec 31 21:52:40 2000
@@ -340,7 +340,7 @@
 		   they are co-indicated when the platform type "Noname" is
 		   selected... :-(  */
 
-		route_tab:	0x0b0a0f0d,
+		route_tab:	0x0b0e0e0e,
 	}}
 };
 ALIAS_MV(noname)


But note: This maps 3 of the PCI irq's to IRQ14 that is only available if you
don't use IDE. (I never tested IDE. maybe it even works) The Problem in the
route_tab above is the '0d' (==13). Set it to anythig not used by ISA-Cards.
Sharing with other PCI cards is allowed.
Another save option might be 0x0b0a0f0f.

The 3c905B and my ISDN AVM Fritz!PCI work just fine here.

Bye,
Thorsten

-- 
| Thorsten Kranzkowski        Internet: dl8bcu@dl8bcu.de                      |
| Mobile: ++49 170 1876134       Snail: Niemannsweg 30, 49201 Dissen, Germany |
| Ampr: dl8bcu@db0lj.#rpl.deu.eu, dl8bcu@marvin.dl8bcu.ampr.org [44.130.8.19] |





[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index] []