From owner-freebsd-current Wed May 31 20:22:27 1995 Return-Path: current-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id UAA26659 for current-outgoing; Wed, 31 May 1995 20:22:27 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id UAA26517 ; Wed, 31 May 1995 20:14:48 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id NAA17491; Thu, 1 Jun 1995 13:09:19 +1000 Date: Thu, 1 Jun 1995 13:09:19 +1000 From: Bruce Evans Message-Id: <199506010309.NAA17491@godzilla.zeta.org.au> To: current@FreeBSD.ORG, hackers@FreeBSD.ORG, uhclem%nemesis@fw.ast.com Subject: Re: Problems with 2.0.5-Alpha Sender: current-owner@FreeBSD.ORG Precedence: bulk > Booting the kernelel...done (yes, it is displayed that way) > BIOS basemem (639K) != RTC basemem (640K) `kernelel' is caused by unnecessarily(?) "restoring" the bios area at the end of kzipboot/boot.c. This trashes the BIOS state. In particular, the row and column gets set to a previous value and the next string printed overwrites a previous string: [cursor saved here] Uncompressing kernel... done [cursor restored here] Booting the kernel [overwrites "Uncompressing..."] Booting the kernelel... [ final result] done [ second line of final result ] Bruce