From owner-freebsd-bugs Mon Jul 3 19:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B97637C553 for ; Mon, 3 Jul 2000 19:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA89583; Mon, 3 Jul 2000 19:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from c1030098-a.wtrlo1.ia.home.com (c1030098-a.wtrlo1.ia.home.com [24.14.126.45]) by hub.freebsd.org (Postfix) with ESMTP id CFF8D37C150 for ; Mon, 3 Jul 2000 19:21:56 -0700 (PDT) (envelope-from mdharnois@home.com) Received: (from mdharnois@localhost) by c1030098-a.wtrlo1.ia.home.com (8.9.3/8.9.3) id VAA07683; Mon, 3 Jul 2000 21:21:55 -0500 (CDT) (envelope-from mdharnois) Message-Id: <200007040221.VAA07683@c1030098-a.wtrlo1.ia.home.com> Date: Mon, 3 Jul 2000 21:21:55 -0500 (CDT) From: mdharnois@home.com Reply-To: mdharnois@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/19686: splash screen fails Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 19686 >Category: kern >Synopsis: splash screen fails >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 03 19:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Michael Harnois >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: i386 with ATI Mach64 >Description: splash_bmp fails >How-To-Repeat: try it >Fix: From: Kazutaka YOKOTA Subject: Re: not making a splash To: Michael Harnois , "Daniel C. Sobral" cc: yokota@zodiac.mech.utsunomiya-u.ac.jp Date: Fri, 09 Jun 2000 22:21:49 +0900 Would you guys please test the following patch for /sys/modules/bmp/splash_bmp.c and see if it fixes the problem? Kazu Index: splash_bmp.c =================================================================== RCS file: /src/CVS/src/sys/modules/splash/bmp/splash_bmp.c,v retrieving revision 1.12 diff -u -r1.12 splash_bmp.c --- splash_bmp.c 2000/04/27 13:37:40 1.12 +++ splash_bmp.c 2000/06/09 13:17:05 @@ -612,7 +612,8 @@ #ifndef PC98 /* XXX: this is ugly, but necessary for EGA/VGA 1bpp/4bpp modes */ - if ((adp->va_type == KD_EGA) || (adp->va_type == KD_VGA)) { + if (((adp->va_type == KD_EGA) || (adp->va_type == KD_VGA)) + && (bmp_info.sdepth <= 4)) { inb(adp->va_crtc_addr + 6); /* reset flip-flop */ outb(ATC, 0x14); outb(ATC, 0); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message