From owner-freebsd-current@FreeBSD.ORG Fri Dec 16 20:08:38 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 281AE1065673; Fri, 16 Dec 2011 20:08:38 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 00AB18FC13; Fri, 16 Dec 2011 20:08:38 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [96.47.65.170]) by cyrus.watson.org (Postfix) with ESMTPSA id 9888E46B09; Fri, 16 Dec 2011 15:08:37 -0500 (EST) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 2A2EDB915; Fri, 16 Dec 2011 15:08:37 -0500 (EST) From: John Baldwin To: Chase Epoch Cameron Date: Fri, 16 Dec 2011 15:08:36 -0500 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p8; KDE/4.5.5; amd64; ; ) References: <4EEB8FF5.8030805@gmail.com> In-Reply-To: <4EEB8FF5.8030805@gmail.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201112161508.36250.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Fri, 16 Dec 2011 15:08:37 -0500 (EST) Cc: freebsd-current@freebsd.org, avg@freebsd.org Subject: Re: gptzfsboot error X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Dec 2011 20:08:38 -0000 On Friday, December 16, 2011 1:37:41 pm Chase Epoch Cameron wrote: > Salutations all, > > > I continuously see this error pop up when I boot my system as it loads, > and it appears as such: > Code: > > > gptzfsboot error 49 lba 1 > gptzfsboot error 49 lba 32 > gptzfsboot error 49 lba 1 > gptzfsboot error 49 lba 32 The 49 is the error code returned in %AH from the BIOS call. It would probably be better if it were printed in hex. 49 corresponds to 0x31. From the error code list at Ralf Brown's Interrupt List: http://www.ctyme.com/intr/rb-0606.htm#Table234 You can see that 0x31 means "No media in drive." Does your system still boot ok? It might just be that when the ZFS bootstrap code scans for available disks in the system it is running into a removable drive that is empty and warning about it (but then skipping it). -- John Baldwin