From owner-cvs-all@FreeBSD.ORG Thu Jan 24 22:23:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75FB916A417; Thu, 24 Jan 2008 22:23:23 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 61B2E13C455; Thu, 24 Jan 2008 22:23:23 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m0OMNN5g022892; Thu, 24 Jan 2008 22:23:23 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m0OMNN1L022891; Thu, 24 Jan 2008 22:23:23 GMT (envelope-from jhb) Message-Id: <200801242223.m0OMNN1L022891@repoman.freebsd.org> From: John Baldwin Date: Thu, 24 Jan 2008 22:23:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libstand Makefile src/sbin/gpt Makefile add.c boot.c gpt.8 gpt.c gpt.h show.c src/sys/boot/i386 Makefile src/sys/boot/i386/gptboot Makefile gptboot.c gptldr.S src/sys/boot/i386/libi386 biosdisk.c devicename.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Jan 2008 22:23:23 -0000 jhb 2008-01-24 22:23:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libstand Makefile sbin/gpt Makefile add.c gpt.8 gpt.c gpt.h show.c sys/boot/i386 Makefile sys/boot/i386/libi386 biosdisk.c devicename.c sys/boot/pc98/libpc98 biosdisk.c sys/sys gpt.h Added files: (Branch: RELENG_6) sbin/gpt boot.c sys/boot/i386/gptboot Makefile gptboot.c gptldr.S sys/boot/i386/pmbr Makefile pmbr.s Log: MFC: Add support for booting from GPT-labeled disks from the BIOS. This includes /boot/pmbr, /boot/gptboot, and 'gpt boot'. Revision Changes Path 1.54.2.2 +4 -0 src/lib/libstand/Makefile 1.6.8.2 +2 -2 src/sbin/gpt/Makefile 1.11.2.4 +44 -32 src/sbin/gpt/add.c 1.2.4.1 +271 -0 src/sbin/gpt/boot.c (new) 1.13.2.3 +43 -2 src/sbin/gpt/gpt.8 1.10.2.4 +1 -0 src/sbin/gpt/gpt.c 1.7.2.3 +2 -0 src/sbin/gpt/gpt.h 1.11.2.3 +3 -0 src/sbin/gpt/show.c 1.20.8.1 +2 -1 src/sys/boot/i386/Makefile 1.62.4.1 +77 -0 src/sys/boot/i386/gptboot/Makefile (new) 1.86.4.1 +727 -0 src/sys/boot/i386/gptboot/gptboot.c (new) 1.2.4.1 +125 -0 src/sys/boot/i386/gptboot/gptldr.S (new) 1.45.2.6 +303 -35 src/sys/boot/i386/libi386/biosdisk.c 1.7.2.1 +29 -12 src/sys/boot/i386/libi386/devicename.c 1.1.4.1 +14 -0 src/sys/boot/i386/pmbr/Makefile (new) 1.2.4.1 +223 -0 src/sys/boot/i386/pmbr/pmbr.s (new) 1.32.2.5 +33 -32 src/sys/boot/pc98/libpc98/biosdisk.c 1.8.2.2 +3 -1 src/sys/sys/gpt.h