diff options
author | jkh <jkh@FreeBSD.org> | 1995-05-26 10:18:12 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-05-26 10:18:12 +0000 |
commit | 120ce88698d8d7a550ab17cea5c9468ef73fc6d4 (patch) | |
tree | f8d8f02e8d1e9927afd64844b283e88da7597ea8 | |
parent | 0b5b73bc52dbc95ceab7f32d10b17e9f21a1cee6 (diff) | |
download | FreeBSD-src-120ce88698d8d7a550ab17cea5c9468ef73fc6d4.zip FreeBSD-src-120ce88698d8d7a550ab17cea5c9468ef73fc6d4.tar.gz |
Fix a bug in the /etc populating copy.
Change root.flp from a new format CPIO archive to a tar archive.
Unless we're willing to change the main tarballs from tar format to
"newc" (or, even better, "crc") cpio format, we need to use one common
one for all and that's tar for now. Install will now grab "root floppy"
from an ftp site if that's what you've got set.
Fix even more gripes from Poul's list.
-rw-r--r-- | release/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release/Makefile b/release/Makefile index 4649a08..519d6a8 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.179 1995/05/25 06:14:10 phk Exp $ +# $Id: Makefile,v 1.180 1995/05/25 18:48:06 jkh Exp $ # # How to roll a release: # @@ -336,7 +336,7 @@ release.9: DIR=${RD}/rootfd/stand ZIP=false cd ${RD}/trees/bin ; ls ${ROOT1} | cpio -dump ${RD}/rootfd/stand tar --exclude CVS -cf - -C ${RD} info | tar xvf - -C ${RD}/rootfd/stand - cd ${RD}/rootfd ; ( rm -f OK ; find . -print ; touch OK ; echo OK ) | cpio -H newc -oa | gzip -9 -c | dd conv=osync > ${RD}/floppies/root.tmp + cd ${RD}/rootfd ; ( rm -f OK ; find . -print ; touch OK ; echo OK ) | cpio -H tar -oa | gzip -9 -c | dd conv=osync > ${RD}/floppies/root.tmp mv ${RD}/floppies/root.tmp ${RD}/floppies/root.flp touch release.9 |