Home | History | Annotate | Line # | Download | only in src
build.sh revision 1.121
      1 #! /usr/bin/env sh
      2 #	$NetBSD: build.sh,v 1.121 2003/10/26 02:17:46 lukem Exp $
      3 #
      4 # Copyright (c) 2001-2003 The NetBSD Foundation, Inc.
      5 # All rights reserved.
      6 #
      7 # This code is derived from software contributed to The NetBSD Foundation
      8 # by Todd Vierling and Luke Mewburn.
      9 #
     10 # Redistribution and use in source and binary forms, with or without
     11 # modification, are permitted provided that the following conditions
     12 # are met:
     13 # 1. Redistributions of source code must retain the above copyright
     14 #    notice, this list of conditions and the following disclaimer.
     15 # 2. Redistributions in binary form must reproduce the above copyright
     16 #    notice, this list of conditions and the following disclaimer in the
     17 #    documentation and/or other materials provided with the distribution.
     18 # 3. All advertising materials mentioning features or use of this software
     19 #    must display the following acknowledgement:
     20 #        This product includes software developed by the NetBSD
     21 #        Foundation, Inc. and its contributors.
     22 # 4. Neither the name of The NetBSD Foundation nor the names of its
     23 #    contributors may be used to endorse or promote products derived
     24 #    from this software without specific prior written permission.
     25 #
     26 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29 # PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36 # POSSIBILITY OF SUCH DAMAGE.
     37 #
     38 #
     39 # Top level build wrapper, for a system containing no tools.
     40 #
     41 # This script should run on any POSIX-compliant shell.  For systems
     42 # with a strange /bin/sh, "ksh" or "bash" may be an ample alternative.
     43 #
     44 # Note, however, that due to the way the interpreter is invoked above,
     45 # if a POSIX-compliant shell is the first in the PATH, you won't have
     46 # to take any further action.
     47 #
     48 
     49 progname=${0##*/}
     50 toppid=$$
     51 results=/dev/null
     52 trap "exit 1" 1 2 3 15
     53 
     54 bomb()
     55 {
     56 	cat >&2 <<ERRORMESSAGE
     57 
     58 ERROR: $@
     59 *** BUILD ABORTED ***
     60 ERRORMESSAGE
     61 	kill ${toppid}		# in case we were invoked from a subshell
     62 	exit 1
     63 }
     64 
     65 
     66 statusmsg()
     67 {
     68 	${runcmd} echo "===> $@" | tee -a "${results}"
     69 }
     70 
     71 initdefaults()
     72 {
     73 	cd "$(dirname $0)"
     74 	[ -d usr.bin/make ] ||
     75 	    bomb "build.sh must be run from the top source level"
     76 	[ -f share/mk/bsd.own.mk ] ||
     77 	    bomb "src/share/mk is missing; please re-fetch the source tree"
     78 
     79 	uname_s=$(uname -s 2>/dev/null)
     80 	uname_m=$(uname -m 2>/dev/null)
     81 
     82 	# If $PWD is a valid name of the current directory, POSIX mandates
     83 	# that pwd return it by default which causes problems in the
     84 	# presence of symlinks.  Unsetting PWD is simpler than changing
     85 	# every occurrence of pwd to use -P.
     86 	#
     87 	# XXX Except that doesn't work on Solaris.
     88 	#
     89 	unset PWD
     90 	if [ "${uname_s}" = "SunOS" ]; then
     91 		TOP=$(pwd -P)
     92 	else
     93 		TOP=$(pwd)
     94 	fi
     95 
     96 	# Set defaults.
     97 	#
     98 	toolprefix=nb
     99 
    100 	# Some systems have a small ARG_MAX.  -X prevents make(1) from
    101 	# exporting variables in the environment redundantly.
    102 	#
    103 	case "${uname_s}" in
    104 	Darwin | FreeBSD | CYGWIN*)
    105 		MAKEFLAGS=-X
    106 		;;
    107 	*)
    108 		MAKEFLAGS=
    109 		;;
    110 	esac
    111 
    112 	makeenv=
    113 	makewrapper=
    114 	makewrappermachine=
    115 	runcmd=
    116 	operations=
    117 	removedirs=
    118 	do_expertmode=false
    119 	do_rebuildmake=false
    120 	do_removedirs=false
    121 
    122 	# do_{operation}=true if given operation is requested.
    123 	#
    124 	do_tools=false
    125 	do_obj=false
    126 	do_build=false
    127 	do_distribution=false
    128 	do_release=false
    129 	do_kernel=false
    130 	do_releasekernel=false
    131 	do_install=false
    132 	do_sets=false
    133 	do_sourcesets=false
    134 	do_params=false
    135 
    136 	# Create scratch directory
    137 	#
    138 	tmpdir="${TMPDIR-/tmp}/nbbuild$$"
    139 	mkdir "${tmpdir}" || bomb "Cannot mkdir: ${tmpdir}"
    140 	trap "cd /; rm -r -f \"${tmpdir}\"" 0
    141 	results="${tmpdir}/build.sh.results"
    142 
    143 	# Set source directories
    144 	#
    145 	setmakeenv NETBSDSRCDIR "${TOP}"
    146 }
    147 
    148 getarch()
    149 {
    150 	# Translate a MACHINE into a default MACHINE_ARCH.
    151 	#
    152 	case "${MACHINE}" in
    153 
    154 	acorn26|acorn32|cats|evbarm|hpcarm|netwinder|shark)
    155 		MACHINE_ARCH=arm
    156 		;;
    157 
    158 	hp700)
    159 		MACHINE_ARCH=hppa
    160 		;;
    161 
    162 	sun2)
    163 		MACHINE_ARCH=m68000
    164 		;;
    165 
    166 	amiga|atari|cesfic|hp300|luna68k|mac68k|mvme68k|news68k|next68k|sun3|x68k)
    167 		MACHINE_ARCH=m68k
    168 		;;
    169 
    170 	evbmips-e[bl]|sbmips-e[bl])
    171 		MACHINE_ARCH=mips${MACHINE##*-}
    172 		makewrappermachine=${MACHINE}
    173 		MACHINE=${MACHINE%-e[bl]}
    174 		;;
    175 
    176 	evbmips|sbmips)		# no default MACHINE_ARCH
    177 		;;
    178 
    179 	mipsco|newsmips|sgimips)
    180 		MACHINE_ARCH=mipseb
    181 		;;
    182 
    183 	algor|arc|cobalt|hpcmips|playstation2|pmax)
    184 		MACHINE_ARCH=mipsel
    185 		;;
    186 
    187 	pc532)
    188 		MACHINE_ARCH=ns32k
    189 		;;
    190 
    191 	amigappc|bebox|evbppc|ibmnws|macppc|mvmeppc|ofppc|pmppc|prep|sandpoint)
    192 		MACHINE_ARCH=powerpc
    193 		;;
    194 
    195 	evbsh3-e[bl])
    196 		MACHINE_ARCH=sh3${MACHINE##*-}
    197 		makewrappermachine=${MACHINE}
    198 		MACHINE=${MACHINE%-e[bl]}
    199 		;;
    200 
    201 	evbsh3)			# no default MACHINE_ARCH
    202 		;;
    203 
    204 	mmeye)
    205 		MACHINE_ARCH=sh3eb
    206 		;;
    207 
    208 	dreamcast|hpcsh)
    209 		MACHINE_ARCH=sh3el
    210 		;;
    211 
    212 	evbsh5)
    213 		MACHINE_ARCH=sh5el
    214 		;;
    215 	amd64)
    216 		MACHINE_ARCH=x86_64
    217 		;;
    218 
    219 	alpha|i386|sparc|sparc64|vax)
    220 		MACHINE_ARCH=${MACHINE}
    221 		;;
    222 
    223 	*)
    224 		bomb "Unknown target MACHINE: ${MACHINE}"
    225 		;;
    226 
    227 	esac
    228 }
    229 
    230 validatearch()
    231 {
    232 	# Ensure that the MACHINE_ARCH exists (and is supported by build.sh).
    233 	#
    234 	case "${MACHINE_ARCH}" in
    235 
    236 	alpha|arm|armeb|hppa|i386|m68000|m68k|mipse[bl]|ns32k|powerpc|sh[35]e[bl]|sparc|sparc64|vax|x86_64)
    237 		;;
    238 
    239 	"")
    240 		bomb "No MACHINE_ARCH provided"
    241 		;;
    242 
    243 	*)
    244 		bomb "Unknown target MACHINE_ARCH: ${MACHINE_ARCH}"
    245 		;;
    246 
    247 	esac
    248 
    249 	# Determine valid MACHINE_ARCHs for MACHINE
    250 	#
    251 	case "${MACHINE}" in
    252 
    253 	evbarm)
    254 		arches="arm armeb"
    255 		;;
    256 
    257 	evbmips|sbmips)
    258 		arches="mipseb mipsel"
    259 		;;
    260 
    261 	evbsh3)
    262 		arches="sh3eb sh3el"
    263 		;;
    264 
    265 	evbsh5)
    266 		arches="sh5eb sh5el"
    267 		;;
    268 
    269 	*)
    270 		oma="${MACHINE_ARCH}"
    271 		getarch
    272 		arches="${MACHINE_ARCH}"
    273 		MACHINE_ARCH="${oma}"
    274 		;;
    275 
    276 	esac
    277 
    278 	# Ensure that MACHINE_ARCH supports MACHINE
    279 	#
    280 	archok=false
    281 	for a in ${arches}; do
    282 		if [ "${a}" = "${MACHINE_ARCH}" ]; then
    283 			archok=true
    284 			break
    285 		fi
    286 	done
    287 	${archok} ||
    288 	    bomb "MACHINE_ARCH '${MACHINE_ARCH}' does not support MACHINE '${MACHINE}'"
    289 }
    290 
    291 raw_getmakevar()
    292 {
    293 	[ -x "${make}" ] || bomb "raw_getmakevar $1: ${make} is not executable"
    294 	"${make}" -m ${TOP}/share/mk -s -f- _x_ <<EOF
    295 _x_:
    296 	echo \${$1}
    297 .include <bsd.prog.mk>
    298 .include <bsd.kernobj.mk>
    299 EOF
    300 }
    301 
    302 getmakevar()
    303 {
    304 	# raw_getmakevar() doesn't work properly if $make hasn't yet been
    305 	# built, which can happen when running with the "-n" option.
    306 	# getmakevar() deals with this by emitting a literal '$'
    307 	# followed by the variable name, instead of trying to find the
    308 	# variable's value.
    309 	#
    310 	if [ -x "${make}" ]; then
    311 		raw_getmakevar "$1"
    312 	else
    313 		echo "\$$1"
    314 	fi
    315 }
    316 
    317 setmakeenv()
    318 {
    319 	eval "$1='$2'; export $1"
    320 	makeenv="${makeenv} $1"
    321 }
    322 
    323 unsetmakeenv()
    324 {
    325 	eval "unset $1"
    326 	makeenv="${makeenv} $1"
    327 }
    328 
    329 resolvepath()
    330 {
    331 	case "${OPTARG}" in
    332 	/*)
    333 		;;
    334 	*)
    335 		OPTARG="${TOP}/${OPTARG}"
    336 		;;
    337 	esac
    338 }
    339 
    340 usage()
    341 {
    342 	if [ -n "$*" ]; then
    343 		echo ""
    344 		echo "${progname}: $*"
    345 	fi
    346 	cat <<_usage_
    347 
    348 Usage: ${progname} [-EnorUu] [-a arch] [-B buildid] [-D dest] [-j njob]
    349 		[-M obj] [-m mach] [-N noisy] [-O obj] [-R release] [-T tools]
    350 		[-V var=[value]] [-w wrapper] [-Z var]   operation [...]
    351 
    352  Build operations (all imply "obj" and "tools"):
    353     build               Run "make build"
    354     distribution        Run "make distribution" (includes DESTDIR/etc/ files)
    355     release             Run "make release" (includes kernels & distrib media)
    356 
    357  Other operations:
    358     help                Show this message (and exit)
    359     makewrapper         Create ${toolprefix}make-\${MACHINE} wrapper and ${toolprefix}make.
    360                         (Always done)
    361     obj                 Run "make obj" (default unless -o is used)
    362     tools               Build and install tools
    363     install=idir        Run "make installworld" to \`idir'
    364                         (useful after 'distribution' or 'release')
    365     kernel=conf         Build kernel with config file \`conf'
    366     releasekernel=conf  Install kernel built by kernel=conf to RELEASEDIR
    367     sets                Create binary sets in RELEASEDIR/MACHINE/binary/sets
    368     sourcesets          Create source sets in RELEASEDIR/source/sets
    369     params              Display various make(1) parameters
    370 
    371  Options:
    372     -a arch     Set MACHINE_ARCH to arch (otherwise deduced from MACHINE)
    373     -B buildId  Set BUILDID to buildId
    374     -D dest     Set DESTDIR to dest.  [Default: destdir.MACHINE]
    375     -E          Set "expert" mode; disables various safety checks.
    376                 Should not be used without expert knowledge of the build system
    377     -j njob     Run up to njob jobs in parallel; see make(1)
    378     -M obj      Set obj root directory to obj (sets MAKEOBJDIRPREFIX)
    379                 Unsets MAKEOBJDIR.
    380     -m mach     Set MACHINE to mach (not required if NetBSD native)
    381     -N noisy	Set the noisyness level of the build:
    382 		    0	Quiet
    383 		    1	Operations are described, commands are suppressed
    384 		    2	Full output
    385 		[Default: 2]
    386     -n          Show commands that would be executed, but do not execute them
    387     -O obj      Set obj root directory to obj (sets a MAKEOBJDIR pattern).
    388                 Unsets MAKEOBJDIRPREFIX.
    389     -o          Set MKOBJDIRS=no (do not create objdirs at start of build)
    390     -R release  Set RELEASEDIR to release.  [Default: releasedir]
    391     -r          Remove contents of TOOLDIR and DESTDIR before building
    392     -T tools    Set TOOLDIR to tools.  If unset, and TOOLDIR is not set in
    393                 the environment, ${toolprefix}make will be (re)built unconditionally
    394     -U          Set MKUNPRIVED=yes (build without requiring root privileges;
    395     		install from an UNPRIVED build with proper file permissions)
    396     -u          Set MKUPDATE=yes (do not run "make clean" first).
    397 		Without this, everything is rebuilt, including the tools.
    398     -V v=[val]  Set variable \`v' to \`val'
    399     -w wrapper  Create ${toolprefix}make script as wrapper
    400                 [Default: \${TOOLDIR}/bin/${toolprefix}make-\${MACHINE}]
    401     -Z v        Unset ("zap") variable \`v'
    402 
    403 _usage_
    404 	exit 1
    405 }
    406 
    407 parseoptions()
    408 {
    409 	opts='a:B:bD:dEhi:j:k:M:m:N:nO:oR:rT:tUuV:w:Z:'
    410 	opt_a=no
    411 
    412 	if type getopts >/dev/null 2>&1; then
    413 		# Use POSIX getopts.
    414 		#
    415 		getoptcmd='getopts ${opts} opt && opt=-${opt}'
    416 		optargcmd=':'
    417 		optremcmd='shift $((${OPTIND} -1))'
    418 	else
    419 		type getopt >/dev/null 2>&1 ||
    420 		    bomb "/bin/sh shell is too old; try ksh or bash"
    421 
    422 		# Use old-style getopt(1) (doesn't handle whitespace in args).
    423 		#
    424 		args="$(getopt ${opts} $*)"
    425 		[ $? = 0 ] || usage
    426 		set -- ${args}
    427 
    428 		getoptcmd='[ $# -gt 0 ] && opt="$1" && shift'
    429 		optargcmd='OPTARG="$1"; shift'
    430 		optremcmd=':'
    431 	fi
    432 
    433 	# Parse command line options.
    434 	#
    435 	while eval ${getoptcmd}; do
    436 		case ${opt} in
    437 
    438 		-a)
    439 			eval ${optargcmd}
    440 			MACHINE_ARCH=${OPTARG}
    441 			opt_a=yes
    442 			;;
    443 
    444 		-B)
    445 			eval ${optargcmd}
    446 			BUILDID=${OPTARG}
    447 			;;
    448 
    449 		-b)
    450 			usage "'-b' has been replaced by 'makewrapper'"
    451 			;;
    452 
    453 		-D)
    454 			eval ${optargcmd}; resolvepath
    455 			setmakeenv DESTDIR "${OPTARG}"
    456 			;;
    457 
    458 		-d)
    459 			usage "'-d' has been replaced by 'distribution'"
    460 			;;
    461 
    462 		-E)
    463 			do_expertmode=true
    464 			;;
    465 
    466 		-i)
    467 			usage "'-i idir' has been replaced by 'install=idir'"
    468 			;;
    469 
    470 		-j)
    471 			eval ${optargcmd}
    472 			parallel="-j ${OPTARG}"
    473 			;;
    474 
    475 		-k)
    476 			usage "'-k conf' has been replaced by 'kernel=conf'"
    477 			;;
    478 
    479 		-M)
    480 			eval ${optargcmd}; resolvepath
    481 			makeobjdir="${OPTARG}"
    482 			unsetmakeenv MAKEOBJDIR
    483 			setmakeenv MAKEOBJDIRPREFIX "${OPTARG}"
    484 			;;
    485 
    486 			# -m overrides MACHINE_ARCH unless "-a" is specified
    487 		-m)
    488 			eval ${optargcmd}
    489 			MACHINE="${OPTARG}"
    490 			[ "${opt_a}" != "yes" ] && getarch
    491 			;;
    492 
    493 		-N)
    494 			eval ${optargcmd}
    495 			case "${OPTARG}" in
    496 			0|1|2)
    497 				setmakeenv MAKEVERBOSE "${OPTARG}"
    498 				;;
    499 			*)
    500 				usage "'${OPTARG}' is not a valid value for -N"
    501 				;;
    502 			esac
    503 			;;
    504 
    505 		-n)
    506 			runcmd=echo
    507 			;;
    508 
    509 		-O)
    510 			eval ${optargcmd}; resolvepath
    511 			makeobjdir="${OPTARG}"
    512 			unsetmakeenv MAKEOBJDIRPREFIX
    513 			setmakeenv MAKEOBJDIR "\${.CURDIR:C,^$TOP,$OPTARG,}"
    514 			;;
    515 
    516 		-o)
    517 			MKOBJDIRS=no
    518 			;;
    519 
    520 		-R)
    521 			eval ${optargcmd}; resolvepath
    522 			setmakeenv RELEASEDIR "${OPTARG}"
    523 			;;
    524 
    525 		-r)
    526 			do_removedirs=true
    527 			do_rebuildmake=true
    528 			;;
    529 
    530 		-T)
    531 			eval ${optargcmd}; resolvepath
    532 			TOOLDIR="${OPTARG}"
    533 			export TOOLDIR
    534 			;;
    535 
    536 		-t)
    537 			usage "'-t' has been replaced by 'tools'"
    538 			;;
    539 
    540 		-U)
    541 			setmakeenv MKUNPRIVED yes
    542 			;;
    543 
    544 		-u)
    545 			setmakeenv MKUPDATE yes
    546 			;;
    547 
    548 		-V)
    549 			eval ${optargcmd}
    550 			case "${OPTARG}" in
    551 		    # XXX: consider restricting which variables can be changed?
    552 			[a-zA-Z_][a-zA-Z_0-9]*=*)
    553 				setmakeenv "${OPTARG%%=*}" "${OPTARG#*=}"
    554 				;;
    555 			*)
    556 				usage "-V argument must be of the form 'var=[value]'"
    557 				;;
    558 			esac
    559 			;;
    560 
    561 		-w)
    562 			eval ${optargcmd}; resolvepath
    563 			makewrapper="${OPTARG}"
    564 			;;
    565 
    566 		-Z)
    567 			eval ${optargcmd}
    568 		    # XXX: consider restricting which variables can be unset?
    569 			unsetmakeenv "${OPTARG}"
    570 			;;
    571 
    572 		--)
    573 			break
    574 			;;
    575 
    576 		-'?'|-h)
    577 			usage
    578 			;;
    579 
    580 		esac
    581 	done
    582 
    583 	# Validate operations.
    584 	#
    585 	eval ${optremcmd}
    586 	while [ $# -gt 0 ]; do
    587 		op=$1; shift
    588 		operations="${operations} ${op}"
    589 
    590 		case "${op}" in
    591 
    592 		help)
    593 			usage
    594 			;;
    595 
    596 		makewrapper|obj|tools|build|distribution|release|sets|sourcesets|params)
    597 			;;
    598 
    599 		kernel=*|releasekernel=*)
    600 			arg=${op#*=}
    601 			op=${op%%=*}
    602 			[ -n "${arg}" ] ||
    603 			    bomb "Must supply a kernel name with \`${op}=...'"
    604 			;;
    605 
    606 		install=*)
    607 			arg=${op#*=}
    608 			op=${op%%=*}
    609 			[ -n "${arg}" ] ||
    610 			    bomb "Must supply a directory with \`install=...'"
    611 			;;
    612 
    613 		*)
    614 			usage "Unknown operation \`${op}'"
    615 			;;
    616 
    617 		esac
    618 		eval do_${op}=true
    619 	done
    620 	[ -n "${operations}" ] || usage "Missing operation to perform."
    621 
    622 	# Set up MACHINE*.  On a NetBSD host, these are allowed to be unset.
    623 	#
    624 	if [ -z "${MACHINE}" ]; then
    625 		[ "${uname_s}" = "NetBSD" ] ||
    626 		    bomb "MACHINE must be set, or -m must be used, for cross builds."
    627 		MACHINE=${uname_m}
    628 	fi
    629 	[ -n "${MACHINE_ARCH}" ] || getarch
    630 	validatearch
    631 
    632 	# Set up default make(1) environment.
    633 	#
    634 	setmakeenv LC_ALL C
    635 	makeenv="${makeenv} TOOLDIR MACHINE MACHINE_ARCH MAKEFLAGS"
    636 	[ -z "${BUILDID}" ] || makeenv="${makeenv} BUILDID"
    637 	MAKEFLAGS="-de -m ${TOP}/share/mk ${MAKEFLAGS} MKOBJDIRS=${MKOBJDIRS-yes}"
    638 	export MAKEFLAGS MACHINE MACHINE_ARCH
    639 }
    640 
    641 rebuildmake()
    642 {
    643 	# Test make source file timestamps against installed ${toolprefix}make
    644 	# binary, if TOOLDIR is pre-set.
    645 	#
    646 	# Note that we do NOT try to grovel "mk.conf" here to find out if
    647 	# TOOLDIR is set there, because it can contain make variable
    648 	# expansions and other stuff only parseable *after* we have a working
    649 	# ${toolprefix}make.  So this logic can only work if the user has
    650 	# pre-set TOOLDIR in the environment or used the -T option to build.sh.
    651 	#
    652 	make="${TOOLDIR-nonexistent}/bin/${toolprefix}make"
    653 	if [ -x "${make}" ]; then
    654 		for f in usr.bin/make/*.[ch] usr.bin/make/lst.lib/*.[ch]; do
    655 			if [ "${f}" -nt "${make}" ]; then
    656 				do_rebuildmake=true
    657 				break
    658 			fi
    659 		done
    660 	else
    661 		do_rebuildmake=true
    662 	fi
    663 
    664 	# Build bootstrap ${toolprefix}make if needed.
    665 	if ${do_rebuildmake}; then
    666 		statusmsg "Bootstrapping ${toolprefix}make"
    667 		${runcmd} cd "${tmpdir}"
    668 		${runcmd} env CC="${HOST_CC-cc}" CPPFLAGS="${HOST_CPPFLAGS}" \
    669 			CFLAGS="${HOST_CFLAGS--O}" LDFLAGS="${HOST_LDFLAGS}" \
    670 			sh "${TOP}/tools/make/configure" ||
    671 		    bomb "Configure of ${toolprefix}make failed"
    672 		${runcmd} sh buildmake.sh ||
    673 		    bomb "Build of ${toolprefix}make failed"
    674 		make="${tmpdir}/${toolprefix}make"
    675 		${runcmd} cd "${TOP}"
    676 		${runcmd} rm -f usr.bin/make/*.o usr.bin/make/lst.lib/*.o
    677 	fi
    678 }
    679 
    680 validatemakeparams()
    681 {
    682 	if [ "${runcmd}" = "echo" ]; then
    683 		TOOLCHAIN_MISSING=no
    684 		EXTERNAL_TOOLCHAIN=""
    685 	else
    686 		TOOLCHAIN_MISSING=$(raw_getmakevar TOOLCHAIN_MISSING)
    687 		EXTERNAL_TOOLCHAIN=$(raw_getmakevar EXTERNAL_TOOLCHAIN)
    688 	fi
    689 	if [ "${TOOLCHAIN_MISSING}" = "yes" ] && \
    690 	   [ -z "${EXTERNAL_TOOLCHAIN}" ]; then
    691 		${runcmd} echo "ERROR: build.sh (in-tree cross-toolchain) is not yet available for"
    692 		${runcmd} echo "	MACHINE:      ${MACHINE}"
    693 		${runcmd} echo "	MACHINE_ARCH: ${MACHINE_ARCH}"
    694 		${runcmd} echo ""
    695 		${runcmd} echo "All builds for this platform should be done via a traditional make"
    696 		${runcmd} echo "If you wish to use an external cross-toolchain, set"
    697 		${runcmd} echo "	EXTERNAL_TOOLCHAIN=<path to toolchain root>"
    698 		${runcmd} echo "in either the environment or mk.conf and rerun"
    699 		${runcmd} echo "	${progname} $*"
    700 		exit 1
    701 	fi
    702 
    703 	# Normalise MKOBJDIRS, MKUNPRIVED, and MKUPDATE
    704 	# These may be set as build.sh options or in "mk.conf".
    705 	# Don't export them as they're only used for tests in build.sh.
    706 	#
    707 	MKOBJDIRS=$(getmakevar MKOBJDIRS)
    708 	MKUNPRIVED=$(getmakevar MKUNPRIVED)
    709 	MKUPDATE=$(getmakevar MKUPDATE)
    710 
    711 	if [ "${MKOBJDIRS}" != "no" ]; then
    712 		# If setting -M or -O to the root of an obj dir, make sure
    713 		# the base directory is made before continuing as <bsd.own.mk>
    714 		# will need this to pick up _SRC_TOP_OBJ_
    715 		#
    716 		if [ ! -z "${makeobjdir}" ]; then
    717 			${runcmd} mkdir -p "${makeobjdir}"
    718 		fi
    719 
    720 		# make obj in tools to ensure that the objdir for the top-level
    721 		# of the source tree and for "tools" is available, in case the
    722 		# default TOOLDIR setting from <bsd.own.mk> is used, or the
    723 		# build.sh default DESTDIR and RELEASEDIR is to be used.
    724 		#
    725 		${runcmd} cd tools
    726 		${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
    727 		    bomb "Failed to make obj in tools"
    728 		${runcmd} cd "${TOP}"
    729 	fi
    730 
    731 	statusmsg "MACHINE:          ${MACHINE}"
    732 	statusmsg "MACHINE_ARCH:     ${MACHINE_ARCH}"
    733 
    734 	# Find TOOLDIR, DESTDIR, and RELEASEDIR.
    735 	#
    736 	TOOLDIR=$(getmakevar TOOLDIR)
    737 	statusmsg "TOOLDIR path:     ${TOOLDIR}"
    738 	DESTDIR=$(getmakevar DESTDIR)
    739 	RELEASEDIR=$(getmakevar RELEASEDIR)
    740 	if ! $do_expertmode; then
    741 		_SRC_TOP_OBJ_=$(getmakevar _SRC_TOP_OBJ_)
    742 		: ${DESTDIR:=${_SRC_TOP_OBJ_}/destdir.${MACHINE}}
    743 		: ${RELEASEDIR:=${_SRC_TOP_OBJ_}/releasedir}
    744 		makeenv="${makeenv} DESTDIR RELEASEDIR"
    745 	fi
    746 	export TOOLDIR DESTDIR RELEASEDIR
    747 	statusmsg "DESTDIR path:     ${DESTDIR}"
    748 	statusmsg "RELEASEDIR path:  ${RELEASEDIR}"
    749 
    750 	# Check validity of TOOLDIR and DESTDIR.
    751 	#
    752 	if [ -z "${TOOLDIR}" ] || [ "${TOOLDIR}" = "/" ]; then
    753 		bomb "TOOLDIR '${TOOLDIR}' invalid"
    754 	fi
    755 	removedirs="${TOOLDIR}"
    756 
    757 	if [ -z "${DESTDIR}" ] || [ "${DESTDIR}" = "/" ]; then
    758 		if ${do_build} || ${do_distribution} || ${do_release}; then
    759 			if ! ${do_build} || \
    760 			   [ "${uname_s}" != "NetBSD" ] || \
    761 			   [ "${uname_m}" != "${MACHINE}" ]; then
    762 				bomb "DESTDIR must != / for cross builds, or ${progname} 'distribution' or 'release'."
    763 			fi
    764 			if ! ${do_expertmode}; then
    765 				bomb "DESTDIR must != / for non -E (expert) builds"
    766 			fi
    767 			statusmsg "WARNING: Building to /, in expert mode."
    768 			statusmsg "         This may cause your system to break!  Reasons include:"
    769 			statusmsg "            - your kernel is not up to date"
    770 			statusmsg "            - the libraries or toolchain have changed"
    771 			statusmsg "         YOU HAVE BEEN WARNED!"
    772 		fi
    773 	else
    774 		removedirs="${removedirs} ${DESTDIR}"
    775 	fi
    776 	if ${do_build} || ${do_distribution} || ${do_release}; then
    777 		if ! ${do_expertmode} && \
    778 		    [ $(id -u 2>/dev/null) -ne 0 ] && \
    779 		    [ -z "${MKUNPRIVED}" ] ; then
    780 			bomb "-U or -E must be set for build as an unprivileged user."
    781 		fi
    782         fi
    783 	if ${do_releasekernel} && [ -z "${RELEASEDIR}" ]; then
    784 		bomb "Must set RELEASEDIR with \`releasekernel=...'"
    785 	fi
    786 }
    787 
    788 
    789 createmakewrapper()
    790 {
    791 	# Remove the target directories.
    792 	#
    793 	if ${do_removedirs}; then
    794 		for f in ${removedirs}; do
    795 			statusmsg "Removing ${f}"
    796 			${runcmd} rm -r -f "${f}"
    797 		done
    798 	fi
    799 
    800 	# Recreate $TOOLDIR.
    801 	#
    802 	${runcmd} mkdir -p "${TOOLDIR}/bin" ||
    803 	    bomb "mkdir of '${TOOLDIR}/bin' failed"
    804 
    805 	# Install ${toolprefix}make if it was built.
    806 	#
    807 	if ${do_rebuildmake}; then
    808 		${runcmd} rm -f "${TOOLDIR}/bin/${toolprefix}make"
    809 		${runcmd} cp "${make}" "${TOOLDIR}/bin/${toolprefix}make" ||
    810 		    bomb "Failed to install \$TOOLDIR/bin/${toolprefix}make"
    811 		make="${TOOLDIR}/bin/${toolprefix}make"
    812 		statusmsg "Created ${make}"
    813 	fi
    814 
    815 	# Build a ${toolprefix}make wrapper script, usable by hand as
    816 	# well as by build.sh.
    817 	#
    818 	if [ -z "${makewrapper}" ]; then
    819 		makewrapper="${TOOLDIR}/bin/${toolprefix}make-${makewrappermachine:-${MACHINE}}"
    820 		[ -z "${BUILDID}" ] || makewrapper="${makewrapper}-${BUILDID}"
    821 	fi
    822 
    823 	${runcmd} rm -f "${makewrapper}"
    824 	if [ "${runcmd}" = "echo" ]; then
    825 		echo 'cat <<EOF >'${makewrapper}
    826 		makewrapout=
    827 	else
    828 		makewrapout=">>\${makewrapper}"
    829 	fi
    830 
    831 	eval cat <<EOF ${makewrapout}
    832 #! /bin/sh
    833 # Set proper variables to allow easy "make" building of a NetBSD subtree.
    834 # Generated from:  \$NetBSD: build.sh,v 1.121 2003/10/26 02:17:46 lukem Exp $
    835 #
    836 
    837 EOF
    838 	for f in ${makeenv}; do
    839 		if eval "[ -z \"\${$f}\" -a \"\${${f}-X}\" = \"X\" ]"; then
    840 			eval echo "unset ${f}" ${makewrapout}
    841 		else
    842 			eval echo "${f}=\'\$$(echo ${f})\'\;\ export\ ${f}" ${makewrapout}
    843 		fi
    844 	done
    845 	eval echo "USETOOLS=yes\; export USETOOLS" ${makewrapout}
    846 
    847 	eval cat <<EOF ${makewrapout}
    848 
    849 exec "\${TOOLDIR}/bin/${toolprefix}make" \${1+"\$@"}
    850 EOF
    851 	[ "${runcmd}" = "echo" ] && echo EOF
    852 	${runcmd} chmod +x "${makewrapper}"
    853 	statusmsg "makewrapper:      ${makewrapper}"
    854 	statusmsg "Updated ${makewrapper}"
    855 }
    856 
    857 buildtools()
    858 {
    859 	if [ "${MKOBJDIRS}" != "no" ]; then
    860 		${runcmd} "${makewrapper}" ${parallel} obj-tools ||
    861 		    bomb "Failed to make obj-tools"
    862 	fi
    863 	${runcmd} cd tools
    864 	if [ -z "${MKUPDATE}" ]; then
    865 		cleandir=cleandir
    866 	else
    867 		cleandir=
    868 	fi
    869 	${runcmd} "${makewrapper}" ${cleandir} dependall install ||
    870 	    bomb "Failed to make tools"
    871 	statusmsg "Tools built to ${TOOLDIR}"
    872 	${runcmd} cd "${TOP}"
    873 }
    874 
    875 getkernelconf()
    876 {
    877 	kernelconf="$1"
    878 	if [ "${MKOBJDIRS}" != "no" ]; then
    879 		# The correct value of KERNOBJDIR might
    880 		# depend on a prior "make obj" in
    881 		# ${KERNSRCDIR}/${KERNARCHDIR}/compile.
    882 		#
    883 		KERNSRCDIR="$(getmakevar KERNSRCDIR)"
    884 		KERNARCHDIR="$(getmakevar KERNARCHDIR)"
    885 		${runcmd} cd "${KERNSRCDIR}/${KERNARCHDIR}/compile"
    886 		${runcmd} "${makewrapper}" obj ||
    887 		    bomb "Failed to make obj in ${KERNSRCDIR}/${KERNARCHDIR}/compile"
    888 		${runcmd} cd "${TOP}"
    889 	fi
    890 	KERNCONFDIR="$(getmakevar KERNCONFDIR)"
    891 	KERNOBJDIR="$(getmakevar KERNOBJDIR)"
    892 	case "${kernelconf}" in
    893 	*/*)
    894 		kernelconfpath="${kernelconf}"
    895 		kernelconfname="${kernelconf##*/}"
    896 		;;
    897 	*)
    898 		kernelconfpath="${KERNCONFDIR}/${kernelconf}"
    899 		kernelconfname="${kernelconf}"
    900 		;;
    901 	esac
    902 	kernelbuildpath="${KERNOBJDIR}/${kernelconfname}"
    903 }
    904 
    905 buildkernel()
    906 {
    907 	if ! ${do_tools} && ! ${buildkernelwarned:-false}; then
    908 		# Building tools every time we build a kernel is clearly
    909 		# unnecessary.  We could try to figure out whether rebuilding
    910 		# the tools is necessary this time, but it doesn't seem worth
    911 		# the trouble.  Instead, we say it's the user's responsibility
    912 		# to rebuild the tools if necessary.
    913 		#
    914 		statusmsg "Building kernel without building new tools"
    915 		buildkernelwarned=true
    916 	fi
    917 	getkernelconf $1
    918 	statusmsg "Building kernel:  ${kernelconf}"
    919 	statusmsg "Build directory:  ${kernelbuildpath}"
    920 	${runcmd} mkdir -p "${kernelbuildpath}" ||
    921 	    bomb "Cannot mkdir: ${kernelbuildpath}"
    922 	if [ -z "${MKUPDATE}" ]; then
    923 		${runcmd} cd "${kernelbuildpath}"
    924 		${runcmd} "${makewrapper}" cleandir ||
    925 		    bomb "Failed to make cleandir in ${kernelbuildpath}"
    926 		${runcmd} cd "${TOP}"
    927 	fi
    928 	${runcmd} "${TOOLDIR}/bin/${toolprefix}config" -b "${kernelbuildpath}" \
    929 		-s "${TOP}/sys" "${kernelconfpath}" ||
    930 	    bomb "${toolprefix}config failed for ${kernelconf}"
    931 	${runcmd} cd "${kernelbuildpath}"
    932 	${runcmd} "${makewrapper}" depend ||
    933 	    bomb "Failed to make depend in ${kernelbuildpath}"
    934 	${runcmd} "${makewrapper}" ${parallel} all ||
    935 	    bomb "Failed to make all in ${kernelbuildpath}"
    936 	${runcmd} cd "${TOP}"
    937 
    938 	if [ "${runcmd}" != "echo" ]; then
    939 		statusmsg "Kernels built from ${kernelconf}:"
    940 		kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
    941 		for kern in ${kernlist:-netbsd}; do
    942 			[ -f "${kernelbuildpath}/${kern}" ] && \
    943 			    echo "  ${kernelbuildpath}/${kern}"
    944 		done | tee -a "${results}"
    945 	fi
    946 }
    947 
    948 releasekernel()
    949 {
    950 	getkernelconf $1
    951 	kernelreldir="${RELEASEDIR}/${MACHINE}/binary/kernel"
    952 	${runcmd} mkdir -p "${kernelreldir}"
    953 	kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
    954 	for kern in ${kernlist:-netbsd}; do
    955 		builtkern="${kernelbuildpath}/${kern}"
    956 		[ -f "${builtkern}" ] || continue
    957 		releasekern="${kernelreldir}/${kern}-${kernelconfname}.gz"
    958 		statusmsg "Kernel copy:      ${releasekern}"
    959 		${runcmd} gzip -c -9 < "${builtkern}" > "${releasekern}"
    960 	done
    961 }
    962 
    963 installworld()
    964 {
    965 	dir="$1"
    966 	${runcmd} "${makewrapper}" INSTALLWORLDDIR="${dir}" installworld ||
    967 	    bomb "Failed to make installworld to ${dir}"
    968 	statusmsg "Successful installworld to ${dir}"
    969 }
    970 
    971 
    972 main()
    973 {
    974 	initdefaults
    975 	parseoptions "$@"
    976 
    977 	build_start=$(date)
    978 	statusmsg "${progname} command: $0 $@"
    979 	statusmsg "${progname} started: ${build_start}"
    980 
    981 	rebuildmake
    982 	validatemakeparams
    983 	createmakewrapper
    984 
    985 	# Perform the operations.
    986 	#
    987 	for op in ${operations}; do
    988 		case "${op}" in
    989 
    990 		makewrapper)
    991 			# no-op
    992 			;;
    993 
    994 		tools)
    995 			buildtools
    996 			;;
    997 
    998 		obj|build|distribution|release|sets|sourcesets|params)
    999 			${runcmd} "${makewrapper}" ${parallel} ${op} ||
   1000 			    bomb "Failed to make ${op}"
   1001 			statusmsg "Successful make ${op}"
   1002 			;;
   1003 
   1004 		kernel=*)
   1005 			arg=${op#*=}
   1006 			buildkernel "${arg}"
   1007 			;;
   1008 
   1009 		releasekernel=*)
   1010 			arg=${op#*=}
   1011 			releasekernel "${arg}"
   1012 			;;
   1013 
   1014 		install=*)
   1015 			arg=${op#*=}
   1016 			if [ "${arg}" = "/" ] && \
   1017 			    (	[ "${uname_s}" != "NetBSD" ] || \
   1018 				[ "${uname_m}" != "${MACHINE}" ] ); then
   1019 				bomb "'${op}' must != / for cross builds."
   1020 			fi
   1021 			installworld "${arg}"
   1022 			;;
   1023 
   1024 		*)
   1025 			bomb "Unknown operation \`${op}'"
   1026 			;;
   1027 
   1028 		esac
   1029 	done
   1030 
   1031 	statusmsg "${progname} started: ${build_start}"
   1032 	statusmsg "${progname} ended:   $(date)"
   1033 	if [ -s "${results}" ]; then
   1034 		echo "===> Summary of results:"
   1035 		sed -e 's/^===>//;s/^/	/' "${results}"
   1036 		echo "===> ."
   1037 	fi
   1038 }
   1039 
   1040 main "$@"
   1041