From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.33) id 1CFUeX-00063F-5H for mharc-grub-devel@gnu.org; Thu, 07 Oct 2004 05:33:39 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CFUeS-00062k-Vy for grub-devel@gnu.org; Thu, 07 Oct 2004 05:33:33 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CFUeR-00062R-25 for grub-devel@gnu.org; Thu, 07 Oct 2004 05:33:31 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CFUeQ-00062G-26 for grub-devel@gnu.org; Thu, 07 Oct 2004 05:33:30 -0400 Received: from [212.43.237.68] (helo=kotoba.storever.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CFUXP-00041z-Et for grub-devel@gnu.org; Thu, 07 Oct 2004 05:26:15 -0400 Received: from localhost (localhost [127.0.0.1]) by kotoba.storever.com (Postfix) with ESMTP id 040DFF5777C3 for ; Thu, 7 Oct 2004 11:26:15 +0200 (CEST) From: "Yoshinori K. Okuji" Organization: enbug.org To: The development of GRUB 2 Date: Thu, 7 Oct 2004 11:26:37 +0200 User-Agent: KMail/1.6.1 References: <877jq38zx1.fsf@marco.marco-g.com> <200410061358.34437.hollis@penguinppc.org> In-Reply-To: <200410061358.34437.hollis@penguinppc.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200410071126.37521.okuji@enbug.org> Subject: Re: [ppc patch] Old World Mac booting X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Oct 2004 09:33:34 -0000 On Wednesday 06 October 2004 15:58, Hollis Blanchard wrote: > I can't look right now, but does x86 GRUB need to use a block list > for an early stage? If so, could someone point me to the structures > used? I'd like to use that as my model... You can see the details from the comments at the bottom of boot/i386/pc/diskboot.S. It is the almost same as the so-called "blocklist" format. It specifies a list of blocks, and each block consists of a start sector and the number of contiguous sectors. One sector is 512-byte. Okuji