From owner-cvs-all@FreeBSD.ORG Thu Sep 1 02:49:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 0BCDA16A41F; Thu, 1 Sep 2005 02:49:21 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D54B643D45; Thu, 1 Sep 2005 02:49:20 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j812nK0i063607; Thu, 1 Sep 2005 02:49:20 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j812nKxC063606; Thu, 1 Sep 2005 02:49:20 GMT (envelope-from marcel) Message-Id: <200509010249.j812nKxC063606@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 1 Sep 2005 02:49:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/gpt Makefile gpt.8 gpt.c gpt.h label.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, 01 Sep 2005 02:49:21 -0000 marcel 2005-09-01 02:49:20 UTC FreeBSD src repository Modified files: sbin/gpt Makefile gpt.8 gpt.c gpt.h Added files: sbin/gpt label.c Log: Add support for setting GPT partition labels. The partitions to be labeled are selected in the same way as with the remove command. Update the manpage to have the selection options described for the label command and referenced to it from the remove command. The label can be specified on the command line with the -l option or read from a file with the -f option. In both cases, the label is assumed to be encoded in UTF-8. PR: ia64/83124 MFC after: 1 week Revision Changes Path 1.7 +2 -2 src/sbin/gpt/Makefile 1.15 +75 -30 src/sbin/gpt/gpt.8 1.13 +2 -1 src/sbin/gpt/gpt.c 1.10 +1 -0 src/sbin/gpt/gpt.h 1.1 +263 -0 src/sbin/gpt/label.c (new)