From owner-cvs-all Sat Oct 26 20:24: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F4F837B401; Sat, 26 Oct 2002 20:24:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30D5443E6E; Sat, 26 Oct 2002 20:24:03 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id g9R3N6mV062094; Sat, 26 Oct 2002 20:23:06 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id g9R3N53x062093; Sat, 26 Oct 2002 20:23:05 -0700 (PDT) Message-Id: <200210270323.g9R3N53x062093@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 26 Oct 2002 20:23:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/gpt Makefile add.c create.c gpt.c gpt.h map.c map.h migrate.c show.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcel 2002/10/26 20:23:05 PDT Modified files: sbin/gpt Makefile create.c gpt.c gpt.h map.c map.h migrate.c show.c Added files: sbin/gpt add.c Log: o Add functionality to add a GPT partition, o Use DCE compliant UUID functions and provide local implementations if they don't exist, o Move dumping of the map to show.c and print the partition type, o Some cleanups and rearrangements. The default GPT partition type is UFS. When no starting block or size are specified, the tool will create a partition in the first free space it find (or that fits, depending on the size). Revision Changes Path 1.3 +1 -1 src/sbin/gpt/Makefile 1.1 +192 -0 src/sbin/gpt/add.c (new) 1.2 +3 -3 src/sbin/gpt/create.c 1.3 +73 -31 src/sbin/gpt/gpt.c 1.3 +28 -14 src/sbin/gpt/gpt.h 1.3 +28 -49 src/sbin/gpt/map.c 1.2 +4 -2 src/sbin/gpt/map.h 1.2 +3 -3 src/sbin/gpt/migrate.c 1.2 +57 -1 src/sbin/gpt/show.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message