From owner-freebsd-bugs@FreeBSD.ORG Wed Feb 22 01:30:11 2006 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49AF516A424 for ; Wed, 22 Feb 2006 01:30:11 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 225C243D45 for ; Wed, 22 Feb 2006 01:30:11 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1M1UAEK056920 for ; Wed, 22 Feb 2006 01:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1M1UAwE056918; Wed, 22 Feb 2006 01:30:10 GMT (envelope-from gnats) Date: Wed, 22 Feb 2006 01:30:10 GMT Message-Id: <200602220130.k1M1UAwE056918@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: =?ISO-8859-15?Q?Bj=F6rn_K=F6nig?= Cc: Subject: Re: misc/91719: BZ2_bzDecompress returned -3 error on loading bzipped kernel X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?ISO-8859-15?Q?Bj=F6rn_K=F6nig?= List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Feb 2006 01:30:11 -0000 The following reply was made to PR misc/91719; it has been noted by GNATS. From: =?ISO-8859-15?Q?Bj=F6rn_K=F6nig?= To: bug-followup@FreeBSD.org, ruben.kerkhof@gmail.com Cc: Subject: Re: misc/91719: BZ2_bzDecompress returned -3 error on loading bzipped kernel Date: Wed, 22 Feb 2006 02:29:08 +0100 I had the same problem. Error -3 is BZ_MEM_ERROR and means that a memory allocation failed. I did further investigations and found out that it almost works if you pass the flag -1 to bzip2 command line utility. In this case the decompression routine needs only 250k instead of 2250k with -9 (default) according to bzip2(1); but it seems like that you still run into other memory related problems. The loader says: Can't work out which disk we are booting from. Guessed BIOS device 0xffffffff not found by probes, defaulting to disk0: panic: free: guard1 fail @ 0x36c54 from /usr/src/sys/boot/i386/loader/../../common/module.c:957 --> Press a key on the console to reboot <-- Björn