From owner-freebsd-hackers Sat Mar 13 22:52:19 1999 Delivered-To: freebsd-hackers@freebsd.org Received: from outmail.utsunomiya-u.ac.jp (outmail.utsunomiya-u.ac.jp [160.12.196.3]) by hub.freebsd.org (Postfix) with ESMTP id 27D5914CB2 for ; Sat, 13 Mar 1999 22:52:14 -0800 (PST) (envelope-from yokota@zodiac.mech.utsunomiya-u.ac.jp) Received: from zodiac.mech.utsunomiya-u.ac.jp (IDENT:hAKnGY77pnXZXs03I6WZBVOkZ+iXSxwt@zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by outmail.utsunomiya-u.ac.jp (8.9.1/8.9.1) with ESMTP id PAA10804; Sun, 14 Mar 1999 15:51:51 +0900 (JST) Received: from zodiac.mech.utsunomiya-u.ac.jp (zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by zodiac.mech.utsunomiya-u.ac.jp (8.7.6+2.6Wbeta7/3.4W/zodiac-May96) with ESMTP id PAA19274; Sun, 14 Mar 1999 15:55:06 +0900 (JST) Message-Id: <199903140655.PAA19274@zodiac.mech.utsunomiya-u.ac.jp> To: Kent Vander Velden Cc: freebsd-hackers@freebsd.org, yokota@zodiac.mech.utsunomiya-u.ac.jp Subject: Re: FreeBSD 3.1-Stable Being Unstable In-reply-to: Your message of "Sat, 13 Mar 1999 23:32:51 CST." <199903140532.XAA26490@isua3.iastate.edu> References: <199903140532.XAA26490@isua3.iastate.edu> Date: Sun, 14 Mar 1999 15:55:05 +0900 From: Kazutaka YOKOTA Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I am afraid that this patch did not help. In fact, the machine crashed >after less than 1/2 hour of use. I am going to try disabling the splash >pseudo device now in addition to this patch. > >>Would you possibly test the following patch for /sys/i386/include/pmap.h >>and /sys/i386/i386/locore.s? Ok, then, Remove my previous patch and apply the following patch to /sys/i386/isa/vga_isa.c. With this patch, you can use the splash pseudo-device, screen savers, and the X server without crashing the machine. This is a workaround which I rather don't like, but is known to work. (A couple of other users reported success...) Kazu Index: vga_isa.c =================================================================== RCS file: /src/CVS/src/sys/i386/isa/vga_isa.c,v retrieving revision 1.4 diff -u -r1.4 vga_isa.c --- vga_isa.c 1999/02/05 12:58:40 1.4 +++ vga_isa.c 1999/03/09 00:34:00 @@ -1973,6 +1973,7 @@ inb(crtc_addr + 6); /* reset flip-flop */ outb(ATC, 0x20); /* enable palette */ +#if 0 #ifndef VGA_NO_BIOS if (adp->va_unit == V_ADP_PRIMARY) { writeb(BIOS_PADDRTOVADDR(0x44a), buf[0]); /* COLS */ @@ -1984,6 +1985,7 @@ #endif } #endif /* VGA_NO_BIOS */ +#endif splx(s); return 0; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message