Only put var and var/tmp in the cpio archive floppy, do not really need

the whole /var tree at this time.
This commit is contained in:
Rodney W. Grimes 1993-09-12 20:37:05 +00:00
parent 778cac5fae
commit fc6e7c4535
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=444

View File

@ -69,7 +69,7 @@ CPIO_CPIO+= usr/bin/awk usr/bin/chgrp usr/bin/ftp
CPIO_CPIO+= usr/bin/more usr/bin/tar usr/bin/tip
CPIO_CPIO+= usr/bin/elvis usr/bin/ex usr/bin/vi usr/bin/view
CPIO_CPIO+= usr/sbin/update usr/sbin/chown
CPIO_CPIO+= var
CPIO_CPIO_DIRS= var var/tmp
DOS_FILES= ${COPYRIGHT}
DOS_FILES+= bin/cat bin/dd bin/ed
@ -271,7 +271,8 @@ cpio-floppy:
(cd ${DESTDIR}/; \
ls ${CPIO_FILES} | cpio -pdamuv ${MOUNT})
(cd ${DESTDIR}/; \
find ${CPIO_CPIO} | cpio -oav | gzip -9 >${MOUNT}/inst2.cpio.gz)
(find ${CPIO_CPIO}; ls -d ${CPIO_CPIO_DIRS}) | \
cpio -oav | gzip -9 >${MOUNT}/inst2.cpio.gz)
install -c -o root -g wheel -m 755 etc.i386/inst2.profile \
${MOUNT}/.profile
install -c -o root -g wheel -m 755 etc.i386/inst2.install \