When doing a rerelease, cvs update from within the source directory so we

pick up the old CVSROOT if we don't have the environment variable set.

If /usr/src/release/install.cfg is present, put it out onto
the root filesystem of the boot floppy.  It may optionally be
used to pre-configure sysinstall with custom values.  (See next
batch of commits).
This commit is contained in:
Paul Traina 1996-09-26 20:48:03 +00:00
parent a9bb2677f6
commit d49839662d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18499

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.237 1996/09/19 08:35:41 phk Exp $
# $Id: Makefile,v 1.238 1996/09/25 00:43:23 pst Exp $
#
# How to roll a release:
#
@ -100,9 +100,9 @@ rerelease release:
.if make(rerelease)
.if !defined(RELEASENOUPDATE)
.if !defined(RELEASETAG)
cd ${CHROOTDIR}/usr && cvs -q update -P -d src
cd ${CHROOTDIR}/usr/src && cvs -q update -P -d
.else
cd ${CHROOTDIR}/usr && cvs -q update -P -d -r ${RELEASETAG} src
cd ${CHROOTDIR}/usr/src && cvs -q update -P -d -r ${RELEASETAG}
.endif
.endif
.endif
@ -112,6 +112,7 @@ rerelease release:
( cd ${CHROOTDIR}/usr/src/release/sysinstall && \
sed "s/__RELEASE/${BUILDNAME}/" version.h > version.h.new && \
mv version.h.new version.h )
-test -f install.cfg && cp install.cfg ${CHROOTDIR}/usr/src/release
echo "#!/bin/sh" > ${CHROOTDIR}/mk
echo "set -ex" >> ${CHROOTDIR}/mk
echo "CFLAGS='-O2 -pipe'" >> ${CHROOTDIR}/mk
@ -374,6 +375,7 @@ release.8: write_mfs_in_kernel
echo "domain 53/tcp nameserver" >> ${RD}/mfsfd/stand/etc/services
echo "domain 53/udp nameserver" >> ${RD}/mfsfd/stand/etc/services
gzip -c ${.CURDIR}/../COPYRIGHT > ${RD}/mfsfd/stand/help/COPYRIGHT.hlp.gz
-test -f ${.CURDIR}/install.cfg && cp ${.CURDIR}/install.cfg ${RD}/mfsfd
# make the small bootfd
@echo "Making the small 4MB boot floppy."
sh -e ${.CURDIR}/doFS.sh ${RD} ${MNT} ${BOOTMFSSIZE} ${RD}/mfsfd \