Date: Wed, 2 Jul 2003 03:45:29 -0700 (PDT) From: Chris Vance <cvance@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 33973 for review Message-ID: <200307021045.h62AjTup019115@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=33973 Change 33973 by cvance@cvance_korben on 2003/07/02 03:45:07 Reduce the chunking size so this version of sysinstall won't die. Build modules for optional kernels Affected files ... .. //depot/projects/trustedbsd/sebsd/release/Makefile#2 edit Differences ... ==== //depot/projects/trustedbsd/sebsd/release/Makefile#2 (text+ko) ==== @@ -58,8 +58,8 @@ # If you want to pass flags to the world build such as -j X, use # WORLD_FLAGS. Similarly, you can specify make flags for kernel # builds via KERNEL_FLAGS. -#WORLD_FLAGS=-j4 -#KERNEL_FLAGS=-j4 +WORLD_FLAGS=-j3 +KERNEL_FLAGS=-j3 TARGET_ARCH?= ${MACHINE_ARCH} .if ${TARGET_ARCH} == ${MACHINE_ARCH} @@ -218,7 +218,7 @@ MFSSIZE= 8192 .endif -ZIPNSPLIT= gzip --no-name -9 -c | split -b 1423k - +ZIPNSPLIT= gzip --no-name -9 -c | split -b 240640 - # Things that need to be recompiled with Kerberos support. .if exists(${.CURDIR}/../kerberosIV) && exists(${.CURDIR}/../crypto) && !defined(NOKERBEROS) @@ -511,7 +511,7 @@ release.4: .for kernel in ${KERNELS} cd ${.CURDIR}/..; \ - ${CROSSMAKE} ${KERNEL_FLAGS} -DNO_MODULES \ + ${CROSSMAKE} ${KERNEL_FLAGS} \ KERNCONF=${kernel} INSTKERNNAME=${kernel} kernel \ DESTDIR=${RD}/trees/base .endfor
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200307021045.h62AjTup019115>