From owner-svn-src-head@FreeBSD.ORG Wed Apr 7 18:52:51 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9324B1065672; Wed, 7 Apr 2010 18:52:51 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8237E8FC17; Wed, 7 Apr 2010 18:52:51 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o37IqpZF081802; Wed, 7 Apr 2010 18:52:51 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o37Iqp0E081800; Wed, 7 Apr 2010 18:52:51 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201004071852.o37Iqp0E081800@svn.freebsd.org> From: Rui Paulo Date: Wed, 7 Apr 2010 18:52:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r206381 - head/sys/i386/include X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Apr 2010 18:52:51 -0000 Author: rpaulo Date: Wed Apr 7 18:52:51 2010 New Revision: 206381 URL: http://svn.freebsd.org/changeset/base/206381 Log: Add EFI boot info fields. Modified: head/sys/i386/include/bootinfo.h Modified: head/sys/i386/include/bootinfo.h ============================================================================== --- head/sys/i386/include/bootinfo.h Wed Apr 7 18:42:21 2010 (r206380) +++ head/sys/i386/include/bootinfo.h Wed Apr 7 18:52:51 2010 (r206381) @@ -65,6 +65,13 @@ struct bootinfo { u_int32_t bi_kernend; /* end of kernel space */ u_int32_t bi_envp; /* environment */ u_int32_t bi_modulep; /* preloaded modules */ + uint64_t bi_hcdp; /* DIG64 HCDP table */ + uint64_t bi_fpswa; /* FPSWA interface */ + uint64_t bi_systab; /* pa of EFI system table */ + uint64_t bi_memmap; /* pa of EFI memory map */ + uint64_t bi_memmap_size; /* size of EFI memory map */ + uint64_t bi_memdesc_size; /* sizeof EFI memory desc */ + uint32_t bi_memdesc_version; /* EFI memory desc version */ }; #ifdef _KERNEL