aboutsummaryrefslogtreecommitdiff
path: root/sbin/gpt
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2006-05-23 04:09:12 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2006-05-23 04:09:12 +0000
commit8bf7295cd17b8415c40bde11aa8f5bbbd597e5d6 (patch)
tree81a52679e3e7f6958a04688cb683eaf21a140f5c /sbin/gpt
parentde7242811fa5d383ece9325e6864e857b2997f20 (diff)
Diffstat (limited to 'sbin/gpt')
-rw-r--r--sbin/gpt/Makefile2
-rw-r--r--sbin/gpt/add.c2
-rw-r--r--sbin/gpt/create.c2
-rw-r--r--sbin/gpt/destroy.c2
-rw-r--r--sbin/gpt/gpt.82
-rw-r--r--sbin/gpt/gpt.c2
-rw-r--r--sbin/gpt/gpt.h2
-rw-r--r--sbin/gpt/map.c2
-rw-r--r--sbin/gpt/map.h2
-rw-r--r--sbin/gpt/migrate.c2
-rw-r--r--sbin/gpt/mkdisk.sh2
-rw-r--r--sbin/gpt/recover.c2
-rw-r--r--sbin/gpt/remove.c2
-rw-r--r--sbin/gpt/show.c2
14 files changed, 14 insertions, 14 deletions
diff --git a/sbin/gpt/Makefile b/sbin/gpt/Makefile
index 8e85b91eb1fa..95a0c0b6b536 100644
--- a/sbin/gpt/Makefile
+++ b/sbin/gpt/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/sbin/gpt/Makefile,v 1.6 2004/08/07 07:41:37 marcel Exp $
PROG= gpt
SRCS= add.c create.c destroy.c gpt.c map.c migrate.c recover.c remove.c \
diff --git a/sbin/gpt/add.c b/sbin/gpt/add.c
index 0bba7f9d860b..4c7e81d13f9c 100644
--- a/sbin/gpt/add.c
+++ b/sbin/gpt/add.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sbin/gpt/add.c,v 1.8.2.2 2005/05/08 13:26:59 des Exp $");
#include <sys/types.h>
diff --git a/sbin/gpt/create.c b/sbin/gpt/create.c
index 54084c2a05b4..8fd6da28088f 100644
--- a/sbin/gpt/create.c
+++ b/sbin/gpt/create.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sbin/gpt/create.c,v 1.6.2.3 2004/11/19 03:33:28 marcel Exp $");
#include <sys/types.h>
diff --git a/sbin/gpt/destroy.c b/sbin/gpt/destroy.c
index 97cb21735336..ef4485a34df5 100644
--- a/sbin/gpt/destroy.c
+++ b/sbin/gpt/destroy.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sbin/gpt/destroy.c,v 1.3.2.1 2004/11/07 23:33:04 marcel Exp $");
#include <sys/types.h>
diff --git a/sbin/gpt/gpt.8 b/sbin/gpt/gpt.8
index a6f444bd3cd0..1da7c63ec6d8 100644
--- a/sbin/gpt/gpt.8
+++ b/sbin/gpt/gpt.8
@@ -22,7 +22,7 @@
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.\" $FreeBSD$
+.\" $FreeBSD: src/sbin/gpt/gpt.8,v 1.6.2.5 2005/05/08 13:26:59 des Exp $
.\"
.Dd November 12, 2004
.Os
diff --git a/sbin/gpt/gpt.c b/sbin/gpt/gpt.c
index 23a36be687cc..a953bf426667 100644
--- a/sbin/gpt/gpt.c
+++ b/sbin/gpt/gpt.c
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sbin/gpt/gpt.c,v 1.8.2.2 2005/05/08 13:26:59 des Exp $");
#include <sys/param.h>
#include <sys/types.h>
diff --git a/sbin/gpt/gpt.h b/sbin/gpt/gpt.h
index b6a4c8081f5a..24f7c9c5a202 100644
--- a/sbin/gpt/gpt.h
+++ b/sbin/gpt/gpt.h
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/gpt/gpt.h,v 1.5.2.2 2005/05/08 13:26:59 des Exp $
*/
#ifndef _GPT_H_
diff --git a/sbin/gpt/map.c b/sbin/gpt/map.c
index f8c433bdd6b0..84a5b57f3237 100644
--- a/sbin/gpt/map.c
+++ b/sbin/gpt/map.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sbin/gpt/map.c,v 1.5 2004/08/07 06:24:25 marcel Exp $");
#include <sys/types.h>
#include <err.h>
diff --git a/sbin/gpt/map.h b/sbin/gpt/map.h
index f83824cf951d..86ef92623958 100644
--- a/sbin/gpt/map.h
+++ b/sbin/gpt/map.h
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/gpt/map.h,v 1.5 2004/08/07 07:41:37 marcel Exp $
*/
#ifndef _MAP_H_
diff --git a/sbin/gpt/migrate.c b/sbin/gpt/migrate.c
index eb89941755ff..b9600680df5d 100644
--- a/sbin/gpt/migrate.c
+++ b/sbin/gpt/migrate.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sbin/gpt/migrate.c,v 1.7.2.5 2004/11/19 04:03:28 marcel Exp $");
#include <sys/types.h>
#include <sys/disklabel.h>
diff --git a/sbin/gpt/mkdisk.sh b/sbin/gpt/mkdisk.sh
index 6ead1d94af20..43aa3a9d69c5 100644
--- a/sbin/gpt/mkdisk.sh
+++ b/sbin/gpt/mkdisk.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-# $FreeBSD$
+# $FreeBSD: src/sbin/gpt/mkdisk.sh,v 1.2.2.1 2004/11/07 23:30:07 marcel Exp $
dd if=/dev/zero of=disk count=125307
sudo mdconfig -a -t vnode -f disk -u 4
diff --git a/sbin/gpt/recover.c b/sbin/gpt/recover.c
index 30c88fcae775..1daa1f91c71c 100644
--- a/sbin/gpt/recover.c
+++ b/sbin/gpt/recover.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sbin/gpt/recover.c,v 1.5.2.1 2004/11/07 23:33:04 marcel Exp $");
#include <sys/types.h>
diff --git a/sbin/gpt/remove.c b/sbin/gpt/remove.c
index 9949d0043d1e..f125902811b9 100644
--- a/sbin/gpt/remove.c
+++ b/sbin/gpt/remove.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sbin/gpt/remove.c,v 1.1.2.2 2005/05/08 13:26:59 des Exp $");
#include <sys/types.h>
diff --git a/sbin/gpt/show.c b/sbin/gpt/show.c
index 181027460a88..7fb7151c9b6c 100644
--- a/sbin/gpt/show.c
+++ b/sbin/gpt/show.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sbin/gpt/show.c,v 1.10.2.1 2004/11/07 23:33:04 marcel Exp $");
#include <sys/types.h>