diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2004-05-08 00:06:47 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2004-05-08 00:06:47 +0000 |
commit | 1d089609715abbc976d8108a18e4058b5cb9b100 (patch) | |
tree | 5c6d463f0db391b0e71f6fd786ed23b279484a96 /sysutils/diskmark | |
parent | The diskprep program prepares a disk for use. It can be used for a (diff) |
The program diskmark uses an unused entry in the Master Boot Record
on PC disks to record version information. The author uses this
information to determine if scratch disks should be partitioned at boot
on a network booting compute cluster.
http://people.freebsd.org/~brooks/diskmark/
Approved by: krion (mentor)
Notes
Notes:
svn path=/head/; revision=108655
Diffstat (limited to 'sysutils/diskmark')
-rw-r--r-- | sysutils/diskmark/Makefile | 23 | ||||
-rw-r--r-- | sysutils/diskmark/distinfo | 2 | ||||
-rw-r--r-- | sysutils/diskmark/pkg-descr | 6 |
3 files changed, 31 insertions, 0 deletions
diff --git a/sysutils/diskmark/Makefile b/sysutils/diskmark/Makefile new file mode 100644 index 000000000000..9ab9e492d62b --- /dev/null +++ b/sysutils/diskmark/Makefile @@ -0,0 +1,23 @@ +# Ports collection makefile for: diskmark +# Date created: Friday, May 7, 2004 +# Whom: Brooks Davis <brooks@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= diskmark +PORTVERSION= 0.9 +CATEGORIES= sysutils +MASTER_SITES= http://people.freebsd.org/~brooks/diskmark/ + +MAINTAINER= brooks@FreeBSD.org +COMMENT= A program to mark disks using empty partition table entries + +PLIST_FILES= sbin/diskmark + +USE_BZIP2= yes + +MAN8= diskmark.8 +MANCOMPRESSED= yes + +.include <bsd.port.mk> diff --git a/sysutils/diskmark/distinfo b/sysutils/diskmark/distinfo new file mode 100644 index 000000000000..4811e6a51fb2 --- /dev/null +++ b/sysutils/diskmark/distinfo @@ -0,0 +1,2 @@ +MD5 (diskmark-0.9.tar.bz2) = 111c7d5e6d24d59130c2e614093a6731 +SIZE (diskmark-0.9.tar.bz2) = 5091 diff --git a/sysutils/diskmark/pkg-descr b/sysutils/diskmark/pkg-descr new file mode 100644 index 000000000000..f3aa928b2346 --- /dev/null +++ b/sysutils/diskmark/pkg-descr @@ -0,0 +1,6 @@ +The program diskmark uses an unused entry in the Master Boot Record +on PC disks to record version information. The author uses this +information to determine if scratch disks should be partitioned at boot +on a network booting compute cluster. + +WWW: http://people.freebsd.org/~brooks/diskmark/ |