Subject: Re: DUO Status (long)
To: Tom Tarka <tommy@mp3.com>
From: Juergen Hannken-Illjes <hannken@eis.cs.tu-bs.de>
List: port-mac68k
Date: 06/13/2001 10:41:53
I tried my Duo280 some months ago. If it is docked (DuoDock II) the
console detection didn't work. With the following change it came up:
Index: arch/mac68k/dev/macfb.c
===================================================================
RCS file: /cvsroot/syssrc/sys/arch/mac68k/dev/macfb.c,v
retrieving revision 1.5
diff -u -2 -r1.5 macfb.c
--- arch/mac68k/dev/macfb.c 2000/10/22 05:05:39 1.5
+++ arch/mac68k/dev/macfb.c 2001/01/14 20:44:35
@@ -130,4 +130,9 @@
macfb_is_console(paddr_t addr)
{
+ if (addr == 0xfe000000 && macfb_consaddr == 0xfe100000) {
+ printf("HACK: assume console (%08x) for addr=%08x\n",
+ (unsigned)macfb_consaddr, (unsigned)addr);
+ addr = macfb_consaddr;
+ }
if (addr != macfb_consaddr &&
(addr >= 0xf9000000 && addr <= 0xfeffffff)) {
There will be no dock scsi because the attachment of this special slot e
doesn't work. I gave up because the LC40 has Bug E4 and I wasn't able
to get around this bug (add a NOP before every F-Line instruction).
--
Juergen Hannken-Illjes - hannken@eis.cs.tu-bs.de - TU Braunschweig (Germany)
>
> On Tuesday, June 12, 2001, at 03:50 PM, Shawn D'Alimonte wrote:
>
> > 1.5 did boot on my 280c using the internal display (No Dock, just
> > floppy adapter). The LC040 on the other hand kept most programs from
> > running :-(.
>
> interesting...
>
> Maybe I'll get NetBSD 1.5 set up and configured with my 280c
> (just swap the harddrive), set up some reasonable boot logging
> (or maybe syslog will suffice?), then try to boot the 230 in the Dock
> and see if it's failing at the FPU detection or somewhere else...
>
> -t