From 5016aa537d6141ed4e48d10d043017edb1b84605 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Thu, 17 Sep 1998 11:25:48 +0000 Subject: [PATCH] Temporary hacks to get releases working again: o Remove MSDOSFS until I find some other way of gaining some space. This *totally disables* the use of DOS partitions in installation so it's truly just a temporary measure. o Set NODOC=YES since docs are broken right now (they try and install into the bindist rather than the docdist - need to figure out why). --- release/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/release/Makefile b/release/Makefile index f2b8acd2a56..ac08a98486c 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.385 1998/09/15 10:24:23 gibbs Exp $ +# $Id: Makefile,v 1.386 1998/09/15 13:15:18 jhay Exp $ # # make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ] # @@ -37,7 +37,7 @@ OBJFORMAT?= elf # Uncomment this to disable the doc.1 target. It is also an ERROR # to set NOPORTS and not set NODOC since docs depend on ports. -#NODOC= YES +NODOC= YES #NOPORTS= YES # Comment the following if you want the release documentation to be # in English only. @@ -676,11 +676,12 @@ doMFSKERN: sed -e '/pty/d' \ -e '/pass0/d' \ -e '/PROCFS/d' \ + -e '/MSDOSFS/d' \ -e '/SYSVSHM/d' \ -e '/KTRACE/d' \ -e '/MATH_EMULATE/d' \ -e 's/GENERIC/BOOTMFS/g' \ - -e '/maxusers/s/10/4/' < GENERIC > BOOTMFS && \ + -e '/maxusers/s/32/4/' < GENERIC > BOOTMFS && \ echo "options MFS" >> BOOTMFS && \ echo "options NFS_NOSERVER" >> BOOTMFS && \ echo 'options "MAXCONS=4"' >> BOOTMFS && \