Date: Sun, 14 Mar 1999 15:55:05 +0900 From: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp> To: Kent Vander Velden <graphix@iastate.edu> Cc: freebsd-hackers@freebsd.org, yokota@zodiac.mech.utsunomiya-u.ac.jp Subject: Re: FreeBSD 3.1-Stable Being Unstable Message-ID: <199903140655.PAA19274@zodiac.mech.utsunomiya-u.ac.jp> 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>
next in thread | previous in thread | raw e-mail | index | archive | help
> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199903140655.PAA19274>