diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-04 03:49:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-04 03:49:19 +0000 |
commit | 97ec0a9cd53c2860e32510b0e553677e4cc89ceb (patch) | |
tree | 70dc7e7710373640e7845c8be169ce0e2608e75c | |
parent | ec952e9183677d6369513031c05b09bd06afbea5 (diff) |
stop shipping CKSUM files; people can use the MD5 files
(this decreases build time a bit too)
ok todd (and i assume legacy-architecture-miod would not object either)
-rw-r--r-- | distrib/notes/m4.common | 13 | ||||
-rw-r--r-- | etc/Makefile | 4 |
2 files changed, 7 insertions, 10 deletions
diff --git a/distrib/notes/m4.common b/distrib/notes/m4.common index b020c3e20ff..e3f35db0d6d 100644 --- a/distrib/notes/m4.common +++ b/distrib/notes/m4.common @@ -1,5 +1,5 @@ dnl -dnl $OpenBSD: m4.common,v 1.71 2007/03/01 19:24:43 miod Exp $ +dnl $OpenBSD: m4.common,v 1.72 2007/05/04 03:49:18 deraadt Exp $ dnl dnl Copyright (c) 2004 Todd T. Fries <todd@OpenBSD.org> dnl @@ -51,9 +51,8 @@ out as follows: INSTALL.MACHINE Installation notes; this file. - CKSUM, MD5 Output of the cksum(1) and md5(1) programs, - usable for verification of the correctness of - downloaded files.')dnl + MD5 Output of the md5(1) program, usable for verification + of the correctness of downloaded files.')dnl dnl dnl Change the quote. There were too many `word' situations that would dnl have to have been changed to ``word''. The quote gets changed to @@ -773,9 +772,9 @@ define({:-OpenBSDXferFloppyFromUNIX-:}, {:-Creating a bootable floppy disk using SunOS, Solaris or other Un*x-like system: First, you will need obtain a local copy of the bootable filesystem - image as described above. If possible use the cksum(1) or md5(1) - commands to verify the checksums of the images vs. the values in - the CKSUM or MD5 files on the mirror site. + image as described above. If possible use the md5(1) command to + verify the checksums of the images vs. the values in the MD5 file + on the mirror site. Next, use the dd(1) utility to copy the file to the floppy drive. The command would likely be, under SunOS: diff --git a/etc/Makefile b/etc/Makefile index 64cd97953fd..11e4dc7ef6e 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.250 2007/02/27 02:25:13 deraadt Exp $ +# $OpenBSD: Makefile,v 1.251 2007/05/04 03:49:17 deraadt Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= Canada/Mountain @@ -275,9 +275,7 @@ release: distribution snap_pre snap_md *.iso *.gz *.tgz > MD5 -cd ${RELEASEDIR}; \ cksum *bsd!(*.gz) *boot* cdbr *BOOT* INSTALL.* Packages *.fs \ - *.iso *.gz *.tgz > CKSUM -cd ${RELEASEDIR} && sort -o MD5 MD5 - -cd ${RELEASEDIR} && sort -o CKSUM -k 3 CKSUM snap_pre: ${SUDO} /bin/rm -rf ${DESTDIR}/snapshot |