Subject: Re: procfs_machdep hack (LONG)
To: port-amiga@netbsd.org, Pawel Chwalowski <chwalek@poczta.onet.pl>
From: Radek Kujawa <streamer@cytrynka.infoland.int.pl>
List: port-amiga
Date: 12/15/2004 14:48:39
Hello.
I noticed that someone commited my patch, however it was missing two
case statements. "FPU" was always set to "none" on 68040 and 68060.
Here goes diff against -current.
*** ./procfs_machdep.c Wed Dec 15 15:20:28 2004
--- ./procfs_machdep_new.c Wed Dec 15 15:26:45 2004
***************
*** 67,72 ****
--- 67,78 ----
case FPU_68882:
fpu = "68882";
break;
+ case FPU_68040:
+ fpu = "68040";
+ break;
+ case FPU_68060:
+ fpu = "68060";
+ break;
default:
fpu = "none";
break;