Home | History | Annotate | Line # | Download | only in src
build.sh revision 1.178
      1 #! /usr/bin/env sh
      2 #	$NetBSD: build.sh,v 1.178 2007/11/20 01:33:32 uebayasi Exp $
      3 #
      4 # Copyright (c) 2001-2005 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.  If the
     42 # first "sh" found in the PATH is a POSIX-compliant shell, then
     43 # you should not need to take any special action.  Otherwise, you
     44 # should set the environment variable HOST_SH to a POSIX-compliant
     45 # shell, and invoke build.sh with that shell.  (Depending on your
     46 # system, one of /bin/ksh, /usr/local/bin/bash, or /usr/xpg4/bin/sh
     47 # might be a suitable shell.)
     48 #
     49 
     50 progname=${0##*/}
     51 toppid=$$
     52 results=/dev/null
     53 trap "exit 1" 1 2 3 15
     54 
     55 bomb()
     56 {
     57 	cat >&2 <<ERRORMESSAGE
     58 
     59 ERROR: $@
     60 *** BUILD ABORTED ***
     61 ERRORMESSAGE
     62 	kill ${toppid}		# in case we were invoked from a subshell
     63 	exit 1
     64 }
     65 
     66 
     67 statusmsg()
     68 {
     69 	${runcmd} echo "===> $@" | tee -a "${results}"
     70 }
     71 
     72 warning()
     73 {
     74 	statusmsg "Warning: $@"
     75 }
     76 
     77 # Find a program in the PATH, and print the result.  If not found,
     78 # print a default.  If $2 is defined (even if it is an empty string),
     79 # then that is the default; otherwise, $1 is used as the default.
     80 find_in_PATH()
     81 {
     82 	local prog="$1"
     83 	local result="${2-"$1"}"
     84 	local oldIFS="${IFS}"
     85 	local dir
     86 	IFS=":"
     87 	for dir in ${PATH}; do
     88 		if [ -x "${dir}/${prog}" ]; then
     89 			result="${dir}/${prog}"
     90 			break
     91 		fi
     92 	done
     93 	IFS="${oldIFS}"
     94 	echo "${result}"
     95 }
     96 
     97 # Try to find a working POSIX shell, and set HOST_SH to refer to it.
     98 # Assumes that uname_s, uname_m, and PWD have been set.
     99 set_HOST_SH()
    100 {
    101 	# Even if ${HOST_SH} is already defined, we still do the
    102 	# sanity checks at the end.
    103 
    104 	# Solaris has /usr/xpg4/bin/sh.
    105 	#
    106 	[ -z "${HOST_SH}" ] && [ x"${uname_s}" = x"SunOS" ] && \
    107 		[ -x /usr/xpg4/bin/sh ] && HOST_SH="/usr/xpg4/bin/sh"
    108 
    109 	# Try to get the name of the shell that's running this script,
    110 	# by parsing the output from "ps".  We assume that, if the host
    111 	# system's ps command supports -o comm at all, it will do so
    112 	# in the usual way: a one-line header followed by a one-line
    113 	# result, possibly including trailing white space.  And if the
    114 	# host system's ps command doesn't support -o comm, we assume
    115 	# that we'll get an error message on stderr and nothing on
    116 	# stdout.  (We don't try to use ps -o 'comm=' to suppress the
    117 	# header line, because that is less widely supported.)
    118 	#
    119 	# If we get the wrong result here, the user can override it by
    120 	# specifying HOST_SH in the environment.
    121 	#
    122 	[ -z "${HOST_SH}" ] && HOST_SH="$(
    123 		(ps -p $$ -o comm | sed -ne '2s/[ \t]*$//p') 2>/dev/null )"
    124 
    125 	# If nothing above worked, use "sh".  We will later find the
    126 	# first directory in the PATH that has a "sh" program.
    127 	#
    128 	[ -z "${HOST_SH}" ] && HOST_SH="sh"
    129 
    130 	# If the result so far is not an absolute path, try to prepend
    131 	# PWD or search the PATH.
    132 	#
    133 	case "${HOST_SH}" in
    134 	/*)	:
    135 		;;
    136 	*/*)	HOST_SH="${PWD}/${HOST_SH}"
    137 		;;
    138 	*)	HOST_SH="$(find_in_PATH "${HOST_SH}")"
    139 		;;
    140 	esac
    141 
    142 	# If we don't have an absolute path by now, bomb.
    143 	#
    144 	case "${HOST_SH}" in
    145 	/*)	:
    146 		;;
    147 	*)	bomb "HOST_SH=\"${HOST_SH}\" is not an absolute path."
    148 		;;
    149 	esac
    150 
    151 	# If HOST_SH is not executable, bomb.
    152 	#
    153 	[ -x "${HOST_SH}" ] ||
    154 	    bomb "HOST_SH=\"${HOST_SH}\" is not executable."
    155 }
    156 
    157 initdefaults()
    158 {
    159 	makeenv=
    160 	makewrapper=
    161 	makewrappermachine=
    162 	runcmd=
    163 	operations=
    164 	removedirs=
    165 
    166 	[ -d usr.bin/make ] || cd "$(dirname $0)"
    167 	[ -d usr.bin/make ] ||
    168 	    bomb "build.sh must be run from the top source level"
    169 	[ -f share/mk/bsd.own.mk ] ||
    170 	    bomb "src/share/mk is missing; please re-fetch the source tree"
    171 
    172 	# Find information about the build platform.  Note that "uname -p"
    173 	# is not part of POSIX, but NetBSD's uname -p prints MACHINE_ARCH,
    174 	# while uname -m prints MACHINE.
    175 	#
    176 	uname_s=$(uname -s 2>/dev/null)
    177 	uname_r=$(uname -r 2>/dev/null)
    178 	uname_m=$(uname -m 2>/dev/null)
    179 	uname_p=$(uname -p 2>/dev/null || uname -m 2>/dev/null)
    180 
    181 	# If $PWD is a valid name of the current directory, POSIX mandates
    182 	# that pwd return it by default which causes problems in the
    183 	# presence of symlinks.  Unsetting PWD is simpler than changing
    184 	# every occurrence of pwd to use -P.
    185 	#
    186 	# XXX Except that doesn't work on Solaris. Or many Linuces.
    187 	#
    188 	unset PWD
    189 	TOP=$(/bin/pwd -P 2>/dev/null || /bin/pwd 2>/dev/null)
    190 
    191 	# The user can set HOST_SH in the environment, or we try to
    192 	# guess an appropriate value.  Then we set several other
    193 	# variables from HOST_SH.
    194 	#
    195 	set_HOST_SH
    196 	setmakeenv HOST_SH "${HOST_SH}"
    197 	setmakeenv BSHELL "${HOST_SH}"
    198 	setmakeenv CONFIG_SHELL "${HOST_SH}"
    199 
    200 	# Set defaults.
    201 	#
    202 	toolprefix=nb
    203 
    204 	# Some systems have a small ARG_MAX.  -X prevents make(1) from
    205 	# exporting variables in the environment redundantly.
    206 	#
    207 	case "${uname_s}" in
    208 	Darwin | FreeBSD | CYGWIN*)
    209 		MAKEFLAGS=-X
    210 		;;
    211 	*)
    212 		MAKEFLAGS=
    213 		;;
    214 	esac
    215 
    216 	# do_{operation}=true if given operation is requested.
    217 	#
    218 	do_expertmode=false
    219 	do_rebuildmake=false
    220 	do_removedirs=false
    221 	do_tools=false
    222 	do_obj=false
    223 	do_build=false
    224 	do_distribution=false
    225 	do_release=false
    226 	do_kernel=false
    227 	do_releasekernel=false
    228 	do_install=false
    229 	do_sets=false
    230 	do_sourcesets=false
    231 	do_syspkgs=false
    232 	do_iso_image=false
    233 	do_iso_image_source=false
    234 	do_params=false
    235 
    236 	# Create scratch directory
    237 	#
    238 	tmpdir="${TMPDIR-/tmp}/nbbuild$$"
    239 	mkdir "${tmpdir}" || bomb "Cannot mkdir: ${tmpdir}"
    240 	trap "cd /; rm -r -f \"${tmpdir}\"" 0
    241 	results="${tmpdir}/build.sh.results"
    242 
    243 	# Set source directories
    244 	#
    245 	setmakeenv NETBSDSRCDIR "${TOP}"
    246 
    247 	# Find the version of NetBSD
    248 	#
    249 	DISTRIBVER="$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh)"
    250 
    251 	# Set various environment variables to known defaults,
    252 	# to minimize (cross-)build problems observed "in the field".
    253 	#
    254 	unsetmakeenv INFODIR
    255 	unsetmakeenv LESSCHARSET
    256 	setmakeenv LC_ALL C
    257 }
    258 
    259 getarch()
    260 {
    261 	# Translate some MACHINE name aliases (known only to build.sh)
    262 	# into proper MACHINE and MACHINE_ARCH names.  Save the alias
    263 	# name in makewrappermachine.
    264 	#
    265 	case "${MACHINE}" in
    266 
    267 	evbarm-e[bl])
    268 		makewrappermachine=${MACHINE}
    269 		# MACHINE_ARCH is "arm" or "armeb", not "armel"
    270 		MACHINE_ARCH=arm${MACHINE##*-}
    271 		MACHINE_ARCH=${MACHINE_ARCH%el}
    272 		MACHINE=${MACHINE%-e[bl]}
    273 		;;
    274 
    275 	evbmips-e[bl]|sbmips-e[bl])
    276 		makewrappermachine=${MACHINE}
    277 		MACHINE_ARCH=mips${MACHINE##*-}
    278 		MACHINE=${MACHINE%-e[bl]}
    279 		;;
    280 
    281 	evbmips64-e[bl]|sbmips64-e[bl])
    282 		makewrappermachine=${MACHINE}
    283 		MACHINE_ARCH=mips64${MACHINE##*-}
    284 		MACHINE=${MACHINE%64-e[bl]}
    285 		;;
    286 
    287 	evbsh3-e[bl])
    288 		makewrappermachine=${MACHINE}
    289 		MACHINE_ARCH=sh3${MACHINE##*-}
    290 		MACHINE=${MACHINE%-e[bl]}
    291 		;;
    292 
    293 	esac
    294 
    295 	# Translate a MACHINE into a default MACHINE_ARCH.
    296 	#
    297 	case "${MACHINE}" in
    298 
    299 	acorn26|acorn32|cats|hpcarm|iyonix|netwinder|shark|zaurus)
    300 		MACHINE_ARCH=arm
    301 		;;
    302 
    303 	evbarm)		# unspecified MACHINE_ARCH gets LE
    304 		MACHINE_ARCH=${MACHINE_ARCH:=arm}
    305 		;;
    306 
    307 	hp700)
    308 		MACHINE_ARCH=hppa
    309 		;;
    310 
    311 	sun2)
    312 		MACHINE_ARCH=m68000
    313 		;;
    314 
    315 	amiga|atari|cesfic|hp300|luna68k|mac68k|mvme68k|news68k|next68k|sun3|x68k)
    316 		MACHINE_ARCH=m68k
    317 		;;
    318 
    319 	evbmips|sbmips)		# no default MACHINE_ARCH
    320 		;;
    321 
    322 	ews4800mips|mipsco|newsmips|sgimips)
    323 		MACHINE_ARCH=mipseb
    324 		;;
    325 
    326 	algor|arc|cobalt|hpcmips|playstation2|pmax)
    327 		MACHINE_ARCH=mipsel
    328 		;;
    329 
    330 	pc532)
    331 		MACHINE_ARCH=ns32k
    332 		;;
    333 
    334 	evbppc64|macppc64)
    335 		makewrappermachine=${MACHINE}
    336 		MACHINE=${MACHINE%64}
    337 		MACHINE_ARCH=powerpc64
    338 		;;
    339 
    340 	amigappc|bebox|evbppc|ibmnws|macppc|mvmeppc|ofppc|prep|sandpoint)
    341 		MACHINE_ARCH=powerpc
    342 		;;
    343 
    344 	evbsh3)			# no default MACHINE_ARCH
    345 		;;
    346 
    347 	mmeye)
    348 		MACHINE_ARCH=sh3eb
    349 		;;
    350 
    351 	dreamcast|hpcsh|landisk)
    352 		MACHINE_ARCH=sh3el
    353 		;;
    354 
    355 	amd64)
    356 		MACHINE_ARCH=x86_64
    357 		;;
    358 
    359 	alpha|i386|sparc|sparc64|vax|ia64)
    360 		MACHINE_ARCH=${MACHINE}
    361 		;;
    362 
    363 	*)
    364 		bomb "Unknown target MACHINE: ${MACHINE}"
    365 		;;
    366 
    367 	esac
    368 }
    369 
    370 validatearch()
    371 {
    372 	# Ensure that the MACHINE_ARCH exists (and is supported by build.sh).
    373 	#
    374 	case "${MACHINE_ARCH}" in
    375 
    376 	alpha|arm|armeb|hppa|i386|m68000|m68k|mipse[bl]|mips64e[bl]|ns32k|powerpc|powerpc64|sh[35]e[bl]|sparc|sparc64|vax|x86_64|ia64)
    377 		;;
    378 
    379 	"")
    380 		bomb "No MACHINE_ARCH provided"
    381 		;;
    382 
    383 	*)
    384 		bomb "Unknown target MACHINE_ARCH: ${MACHINE_ARCH}"
    385 		;;
    386 
    387 	esac
    388 
    389 	# Determine valid MACHINE_ARCHs for MACHINE
    390 	#
    391 	case "${MACHINE}" in
    392 
    393 	evbarm)
    394 		arches="arm armeb"
    395 		;;
    396 
    397 	evbmips|sbmips)
    398 		arches="mipseb mipsel mips64eb mips64el"
    399 		;;
    400 
    401 	sgimips)
    402 		arches="mipseb mips64eb"
    403 		;;
    404 
    405 	evbsh3)
    406 		arches="sh3eb sh3el"
    407 		;;
    408 
    409 	macppc|evbppc)
    410 		arches="powerpc powerpc64"
    411 		;;
    412 	*)
    413 		oma="${MACHINE_ARCH}"
    414 		getarch
    415 		arches="${MACHINE_ARCH}"
    416 		MACHINE_ARCH="${oma}"
    417 		;;
    418 
    419 	esac
    420 
    421 	# Ensure that MACHINE_ARCH supports MACHINE
    422 	#
    423 	archok=false
    424 	for a in ${arches}; do
    425 		if [ "${a}" = "${MACHINE_ARCH}" ]; then
    426 			archok=true
    427 			break
    428 		fi
    429 	done
    430 	${archok} ||
    431 	    bomb "MACHINE_ARCH '${MACHINE_ARCH}' does not support MACHINE '${MACHINE}'"
    432 }
    433 
    434 nobomb_getmakevar()
    435 {
    436 	[ -x "${make}" ] || return 1
    437 	"${make}" -m ${TOP}/share/mk -s -B -f- _x_ <<EOF || return 1
    438 _x_:
    439 	echo \${$1}
    440 .include <bsd.prog.mk>
    441 .include <bsd.kernobj.mk>
    442 EOF
    443 }
    444 
    445 raw_getmakevar()
    446 {
    447 	[ -x "${make}" ] || bomb "raw_getmakevar $1: ${make} is not executable"
    448 	nobomb_getmakevar "$1" || bomb "raw_getmakevar $1: ${make} failed"
    449 }
    450 
    451 getmakevar()
    452 {
    453 	# raw_getmakevar() doesn't work properly if $make hasn't yet been
    454 	# built, which can happen when running with the "-n" option.
    455 	# getmakevar() deals with this by emitting a literal '$'
    456 	# followed by the variable name, instead of trying to find the
    457 	# variable's value.
    458 	#
    459 	if [ -x "${make}" ]; then
    460 		raw_getmakevar "$1"
    461 	else
    462 		echo "\$$1"
    463 	fi
    464 }
    465 
    466 setmakeenv()
    467 {
    468 	eval "$1='$2'; export $1"
    469 	makeenv="${makeenv} $1"
    470 }
    471 
    472 unsetmakeenv()
    473 {
    474 	eval "unset $1"
    475 	makeenv="${makeenv} $1"
    476 }
    477 
    478 # Convert possibly-relative path to absolute path by prepending
    479 # ${TOP} if necessary.  Also delete trailing "/", if any.
    480 resolvepath()
    481 {
    482 	case "${OPTARG}" in
    483 	/)
    484 		;;
    485 	/*)
    486 		OPTARG="${OPTARG%/}"
    487 		;;
    488 	*)
    489 		OPTARG="${TOP}/${OPTARG%/}"
    490 		;;
    491 	esac
    492 }
    493 
    494 usage()
    495 {
    496 	if [ -n "$*" ]; then
    497 		echo ""
    498 		echo "${progname}: $*"
    499 	fi
    500 	cat <<_usage_
    501 
    502 Usage: ${progname} [-EnorUux] [-a arch] [-B buildid] [-C cddir] [-D dest]
    503 		[-j njob] [-M obj] [-m mach] [-N noisy] [-O obj] [-R release]
    504 		[-T tools] [-V var=[value]] [-w wrapper] [-X x11src] [-Z var]
    505 		operation [...]
    506 
    507  Build operations (all imply "obj" and "tools"):
    508     build               Run "make build".
    509     distribution        Run "make distribution" (includes DESTDIR/etc/ files).
    510     release             Run "make release" (includes kernels & distrib media).
    511 
    512  Other operations:
    513     help                Show this message and exit.
    514     makewrapper         Create ${toolprefix}make-\${MACHINE} wrapper and ${toolprefix}make.
    515                         Always performed.
    516     obj                 Run "make obj".  [Default unless -o is used]
    517     tools               Build and install tools.
    518     install=idir        Run "make installworld" to \`idir' to install all sets
    519 			except \`etc'.  Useful after "distribution" or "release"
    520     kernel=conf         Build kernel with config file \`conf'
    521     releasekernel=conf  Install kernel built by kernel=conf to RELEASEDIR.
    522     sets                Create binary sets in RELEASEDIR/MACHINE/binary/sets.
    523 			DESTDIR should be populated beforehand.
    524     sourcesets          Create source sets in RELEASEDIR/source/sets.
    525     syspkgs             Create syspkgs in RELEASEDIR/MACHINE/binary/syspkgs.
    526     iso-image           Create CD-ROM image in RELEASEDIR/iso.
    527     iso-image-source    Create CD-ROM image with source in RELEASEDIR/iso.
    528     iso-dir=cddir       Add the contents of \`cddir' to a CD-ROM image.
    529     params              Display various make(1) parameters.
    530 
    531  Options:
    532     -a arch     Set MACHINE_ARCH to arch.  [Default: deduced from MACHINE]
    533     -B buildId  Set BUILDID to buildId.
    534     -C cddir    Set CDEXTRA to cddir.
    535     -D dest     Set DESTDIR to dest.  [Default: destdir.MACHINE]
    536     -E          Set "expert" mode; disables various safety checks.
    537                 Should not be used without expert knowledge of the build system.
    538     -h          Print this help message.
    539     -j njob     Run up to njob jobs in parallel; see make(1) -j.
    540     -M obj      Set obj root directory to obj; sets MAKEOBJDIRPREFIX.
    541                 Unsets MAKEOBJDIR.
    542     -m mach     Set MACHINE to mach; not required if NetBSD native.
    543     -N noisy	Set the noisyness (MAKEVERBOSE) level of the build:
    544 		    0	Quiet
    545 		    1	Operations are described, commands are suppressed
    546 		    2	Full output
    547 		[Default: 2]
    548     -n          Show commands that would be executed, but do not execute them.
    549     -O obj      Set obj root directory to obj; sets a MAKEOBJDIR pattern.
    550                 Unsets MAKEOBJDIRPREFIX.
    551     -o          Set MKOBJDIRS=no; do not create objdirs at start of build.
    552     -R release  Set RELEASEDIR to release.  [Default: releasedir]
    553     -r          Remove contents of TOOLDIR and DESTDIR before building.
    554     -T tools    Set TOOLDIR to tools.  If unset, and TOOLDIR is not set in
    555                 the environment, ${toolprefix}make will be (re)built unconditionally.
    556     -U          Set MKUNPRIVED=yes; build without requiring root privileges,
    557     		install from an UNPRIVED build with proper file permissions.
    558     -u          Set MKUPDATE=yes; do not run "make clean" first.
    559 		Without this, everything is rebuilt, including the tools.
    560     -V v=[val]  Set variable \`v' to \`val'.
    561     -w wrapper  Create ${toolprefix}make script as wrapper.
    562                 [Default: \${TOOLDIR}/bin/${toolprefix}make-\${MACHINE}]
    563     -X x11src   Set X11SRCDIR to x11src.  [Default: /usr/xsrc]
    564     -x          Set MKX11=yes; build X11R6 from X11SRCDIR
    565     -Z v        Unset ("zap") variable \`v'.
    566 
    567 _usage_
    568 	exit 1
    569 }
    570 
    571 parseoptions()
    572 {
    573 	opts='a:B:bC:D:dEhi:j:k:M:m:N:nO:oR:rT:tUuV:w:xX:Z:'
    574 	opt_a=no
    575 
    576 	if type getopts >/dev/null 2>&1; then
    577 		# Use POSIX getopts.
    578 		#
    579 		getoptcmd='getopts ${opts} opt && opt=-${opt}'
    580 		optargcmd=':'
    581 		optremcmd='shift $((${OPTIND} -1))'
    582 	else
    583 		type getopt >/dev/null 2>&1 ||
    584 		    bomb "/bin/sh shell is too old; try ksh or bash"
    585 
    586 		# Use old-style getopt(1) (doesn't handle whitespace in args).
    587 		#
    588 		args="$(getopt ${opts} $*)"
    589 		[ $? = 0 ] || usage
    590 		set -- ${args}
    591 
    592 		getoptcmd='[ $# -gt 0 ] && opt="$1" && shift'
    593 		optargcmd='OPTARG="$1"; shift'
    594 		optremcmd=':'
    595 	fi
    596 
    597 	# Parse command line options.
    598 	#
    599 	while eval ${getoptcmd}; do
    600 		case ${opt} in
    601 
    602 		-a)
    603 			eval ${optargcmd}
    604 			MACHINE_ARCH=${OPTARG}
    605 			opt_a=yes
    606 			;;
    607 
    608 		-B)
    609 			eval ${optargcmd}
    610 			BUILDID=${OPTARG}
    611 			;;
    612 
    613 		-b)
    614 			usage "'-b' has been replaced by 'makewrapper'"
    615 			;;
    616 
    617 		-C)
    618 			eval ${optargcmd}; resolvepath
    619 			iso_dir=${OPTARG}
    620 			;;
    621 
    622 		-D)
    623 			eval ${optargcmd}; resolvepath
    624 			setmakeenv DESTDIR "${OPTARG}"
    625 			;;
    626 
    627 		-d)
    628 			usage "'-d' has been replaced by 'distribution'"
    629 			;;
    630 
    631 		-E)
    632 			do_expertmode=true
    633 			;;
    634 
    635 		-i)
    636 			usage "'-i idir' has been replaced by 'install=idir'"
    637 			;;
    638 
    639 		-j)
    640 			eval ${optargcmd}
    641 			parallel="-j ${OPTARG}"
    642 			;;
    643 
    644 		-k)
    645 			usage "'-k conf' has been replaced by 'kernel=conf'"
    646 			;;
    647 
    648 		-M)
    649 			eval ${optargcmd}; resolvepath
    650 			makeobjdir="${OPTARG}"
    651 			unsetmakeenv MAKEOBJDIR
    652 			setmakeenv MAKEOBJDIRPREFIX "${OPTARG}"
    653 			;;
    654 
    655 			# -m overrides MACHINE_ARCH unless "-a" is specified
    656 		-m)
    657 			eval ${optargcmd}
    658 			MACHINE="${OPTARG}"
    659 			[ "${opt_a}" != "yes" ] && getarch
    660 			;;
    661 
    662 		-N)
    663 			eval ${optargcmd}
    664 			case "${OPTARG}" in
    665 			0|1|2)
    666 				setmakeenv MAKEVERBOSE "${OPTARG}"
    667 				;;
    668 			*)
    669 				usage "'${OPTARG}' is not a valid value for -N"
    670 				;;
    671 			esac
    672 			;;
    673 
    674 		-n)
    675 			runcmd=echo
    676 			;;
    677 
    678 		-O)
    679 			eval ${optargcmd}; resolvepath
    680 			makeobjdir="${OPTARG}"
    681 			unsetmakeenv MAKEOBJDIRPREFIX
    682 			setmakeenv MAKEOBJDIR "\${.CURDIR:C,^$TOP,$OPTARG,}"
    683 			;;
    684 
    685 		-o)
    686 			MKOBJDIRS=no
    687 			;;
    688 
    689 		-R)
    690 			eval ${optargcmd}; resolvepath
    691 			setmakeenv RELEASEDIR "${OPTARG}"
    692 			;;
    693 
    694 		-r)
    695 			do_removedirs=true
    696 			do_rebuildmake=true
    697 			;;
    698 
    699 		-T)
    700 			eval ${optargcmd}; resolvepath
    701 			TOOLDIR="${OPTARG}"
    702 			export TOOLDIR
    703 			;;
    704 
    705 		-t)
    706 			usage "'-t' has been replaced by 'tools'"
    707 			;;
    708 
    709 		-U)
    710 			setmakeenv MKUNPRIVED yes
    711 			;;
    712 
    713 		-u)
    714 			setmakeenv MKUPDATE yes
    715 			;;
    716 
    717 		-V)
    718 			eval ${optargcmd}
    719 			case "${OPTARG}" in
    720 		    # XXX: consider restricting which variables can be changed?
    721 			[a-zA-Z_][a-zA-Z_0-9]*=*)
    722 				setmakeenv "${OPTARG%%=*}" "${OPTARG#*=}"
    723 				;;
    724 			*)
    725 				usage "-V argument must be of the form 'var=[value]'"
    726 				;;
    727 			esac
    728 			;;
    729 
    730 		-w)
    731 			eval ${optargcmd}; resolvepath
    732 			makewrapper="${OPTARG}"
    733 			;;
    734 
    735 		-X)
    736 			eval ${optargcmd}; resolvepath
    737 			setmakeenv X11SRCDIR "${OPTARG}"
    738 			;;
    739 
    740 		-x)
    741 			setmakeenv MKX11 yes
    742 			;;
    743 
    744 		-Z)
    745 			eval ${optargcmd}
    746 		    # XXX: consider restricting which variables can be unset?
    747 			unsetmakeenv "${OPTARG}"
    748 			;;
    749 
    750 		--)
    751 			break
    752 			;;
    753 
    754 		-'?'|-h)
    755 			usage
    756 			;;
    757 
    758 		esac
    759 	done
    760 
    761 	# Validate operations.
    762 	#
    763 	eval ${optremcmd}
    764 	while [ $# -gt 0 ]; do
    765 		op=$1; shift
    766 		operations="${operations} ${op}"
    767 
    768 		case "${op}" in
    769 
    770 		help)
    771 			usage
    772 			;;
    773 
    774 		makewrapper|obj|tools|build|distribution|release|sets|sourcesets|syspkgs|params)
    775 			;;
    776 
    777 		iso-image)
    778 			op=iso_image	# used as part of a variable name
    779 			;;
    780 
    781 		iso-image-source)
    782 			op=iso_image_source   # used as part of a variable name
    783 			;;
    784 
    785 		kernel=*|releasekernel=*)
    786 			arg=${op#*=}
    787 			op=${op%%=*}
    788 			[ -n "${arg}" ] ||
    789 			    bomb "Must supply a kernel name with \`${op}=...'"
    790 			;;
    791 
    792 		install=*)
    793 			arg=${op#*=}
    794 			op=${op%%=*}
    795 			[ -n "${arg}" ] ||
    796 			    bomb "Must supply a directory with \`install=...'"
    797 			;;
    798 
    799 		*)
    800 			usage "Unknown operation \`${op}'"
    801 			;;
    802 
    803 		esac
    804 		eval do_${op}=true
    805 	done
    806 	[ -n "${operations}" ] || usage "Missing operation to perform."
    807 
    808 	# Set up MACHINE*.  On a NetBSD host, these are allowed to be unset.
    809 	#
    810 	if [ -z "${MACHINE}" ]; then
    811 		[ "${uname_s}" = "NetBSD" ] ||
    812 		    bomb "MACHINE must be set, or -m must be used, for cross builds."
    813 		MACHINE=${uname_m}
    814 	fi
    815 	[ -n "${MACHINE_ARCH}" ] || getarch
    816 	validatearch
    817 
    818 	# Set up default make(1) environment.
    819 	#
    820 	makeenv="${makeenv} TOOLDIR MACHINE MACHINE_ARCH MAKEFLAGS"
    821 	[ -z "${BUILDID}" ] || makeenv="${makeenv} BUILDID"
    822 	MAKEFLAGS="-de -m ${TOP}/share/mk ${MAKEFLAGS} MKOBJDIRS=${MKOBJDIRS-yes}"
    823 	export MAKEFLAGS MACHINE MACHINE_ARCH
    824 }
    825 
    826 sanitycheck()
    827 {
    828 	# If the PATH contains any non-absolute components (including,
    829 	# but not limited to, "." or ""), then complain.  As an exception,
    830 	# allow "" or "." as the last component of the PATH.  This is fatal
    831 	# if expert mode is not in effect.
    832 	#
    833 	local path="${PATH}"
    834 	path="${path%:}"	# delete trailing ":"
    835 	path="${path%:.}"	# delete trailing ":."
    836 	case ":${path}:/" in
    837 	*:[!/]*)
    838 		if ${do_expertmode}; then
    839 			warning "PATH contains non-absolute components"
    840 		else
    841 			bomb "PATH environment variable must not" \
    842 			     "contain non-absolute components"
    843 		fi
    844 		;;
    845 	esac
    846 }
    847 
    848 # Try to set a value for TOOLDIR.  This is difficult because of a cyclic
    849 # dependency: TOOLDIR may be affected by settings in /etc/mk.conf, so
    850 # we would like to use getmakevar to get the value of TOOLDIR, but we
    851 # can't use getmakevar before we have an up to date version of nbmake;
    852 # we might already have an up to date version of nbmake in TOOLDIR, but
    853 # we don't yet know where TOOLDIR is.
    854 #
    855 # In principle, we could break the cycle by building a copy of nbmake
    856 # in a temporary directory.  However, people who use the default value
    857 # of TOOLDIR do not like to have nbmake rebuilt every time they run
    858 # build.sh.
    859 #
    860 # We try to please everybody as follows:
    861 #
    862 # * If TOOLDIR was set in the environment or on the command line, use
    863 #   that value.
    864 # * Otherwise try to guess what TOOLDIR would be if not overridden by
    865 #   /etc/mk.conf, and check whether the resulting directory contains
    866 #   a copy of ${toolprefix}make (this should work for everybody who
    867 #   doesn't override TOOLDIR via /etc/mk.conf);
    868 # * Failing that, search for ${toolprefix}make, nbmake, bmake, or make,
    869 #   in the PATH (this might accidentally find a non-NetBSD version of
    870 #   make, which will lead to failure in the next step);
    871 # * If a copy of make was found above, try to use it with
    872 #   nobomb_getmakevar to find the correct value for TOOLDIR;
    873 # * If all else fails, leave TOOLDIR unset.  Our caller is expected to
    874 #   be able to cope with this.
    875 #
    876 try_set_TOOLDIR()
    877 {
    878 	[ -n "${TOOLDIR}" ] && return
    879 
    880 	# Set guess_TOOLDIR, in the same way that <bsd.own.mk> would set
    881 	# TOOLDIR if /etc/mk.conf sisn't interfere.
    882 	local topobjdir="${TOP}"
    883 	[ -n "${makeobjdir}" ] && topobjdir="${topobjdir}/${makeobjdir}"
    884 	local host_ostype="${uname_s}-$(
    885 		echo "${uname_r}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
    886 		)$(
    887 		echo "${uname_p}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
    888 		)"
    889 	local guess_TOOLDIR="${topobjdir}/tooldir.${host_ostype}"
    890 
    891 	# Look for a suitable ${toolprefix}make, nbmake, bmake, or make.
    892 	guess_make="${guess_TOOLDIR}/bin/${toolprefix}make"
    893 	[ -x "${guess_make}" ] || guess_make=""
    894 	: ${guess_make:=$(find_in_PATH ${toolprefix}make '')}
    895 	: ${guess_make:=$(find_in_PATH nbmake '')}
    896 	: ${guess_make:=$(find_in_PATH bmake '')}
    897 	: ${guess_make:=$(find_in_PATH make '')}
    898 
    899 	# Use ${guess_make} with nobomb_getmakevar
    900 	if [ -x "${guess_make}" ]; then
    901 		TOOLDIR=$(make="${guess_make}" nobomb_getmakevar TOOLDIR)
    902 		[ -n "${TOOLDIR}" ] || unset TOOLDIR
    903 	fi
    904 }
    905 
    906 rebuildmake()
    907 {
    908 	# Test make source file timestamps against installed ${toolprefix}make
    909 	# binary, if TOOLDIR is pre-set or if try_set_TOOLDIR can set it.
    910 	#
    911 	try_set_TOOLDIR
    912 	make="${TOOLDIR-nonexistent}/bin/${toolprefix}make"
    913 	if [ -x "${make}" ]; then
    914 		for f in usr.bin/make/*.[ch] usr.bin/make/lst.lib/*.[ch]; do
    915 			if [ "${f}" -nt "${make}" ]; then
    916 				statusmsg "${make} outdated (older than ${f}), needs building."
    917 				do_rebuildmake=true
    918 				break
    919 			fi
    920 		done
    921 	else
    922 		statusmsg "No ${make}, needs building."
    923 		do_rebuildmake=true
    924 	fi
    925 
    926 	# Build bootstrap ${toolprefix}make if needed.
    927 	if ${do_rebuildmake}; then
    928 		statusmsg "Bootstrapping ${toolprefix}make"
    929 		${runcmd} cd "${tmpdir}"
    930 		${runcmd} env CC="${HOST_CC-cc}" CPPFLAGS="${HOST_CPPFLAGS}" \
    931 			CFLAGS="${HOST_CFLAGS--O}" LDFLAGS="${HOST_LDFLAGS}" \
    932 			${HOST_SH} "${TOP}/tools/make/configure" ||
    933 		    bomb "Configure of ${toolprefix}make failed"
    934 		${runcmd} ${HOST_SH} buildmake.sh ||
    935 		    bomb "Build of ${toolprefix}make failed"
    936 		make="${tmpdir}/${toolprefix}make"
    937 		${runcmd} cd "${TOP}"
    938 		${runcmd} rm -f usr.bin/make/*.o usr.bin/make/lst.lib/*.o
    939 	fi
    940 }
    941 
    942 validatemakeparams()
    943 {
    944 	if [ "${runcmd}" = "echo" ]; then
    945 		TOOLCHAIN_MISSING=no
    946 		EXTERNAL_TOOLCHAIN=""
    947 	else
    948 		TOOLCHAIN_MISSING=$(raw_getmakevar TOOLCHAIN_MISSING)
    949 		EXTERNAL_TOOLCHAIN=$(raw_getmakevar EXTERNAL_TOOLCHAIN)
    950 	fi
    951 	if [ "${TOOLCHAIN_MISSING}" = "yes" ] && \
    952 	   [ -z "${EXTERNAL_TOOLCHAIN}" ]; then
    953 		${runcmd} echo "ERROR: build.sh (in-tree cross-toolchain) is not yet available for"
    954 		${runcmd} echo "	MACHINE:      ${MACHINE}"
    955 		${runcmd} echo "	MACHINE_ARCH: ${MACHINE_ARCH}"
    956 		${runcmd} echo ""
    957 		${runcmd} echo "All builds for this platform should be done via a traditional make"
    958 		${runcmd} echo "If you wish to use an external cross-toolchain, set"
    959 		${runcmd} echo "	EXTERNAL_TOOLCHAIN=<path to toolchain root>"
    960 		${runcmd} echo "in either the environment or mk.conf and rerun"
    961 		${runcmd} echo "	${progname} $*"
    962 		exit 1
    963 	fi
    964 
    965 	# Normalise MKOBJDIRS, MKUNPRIVED, and MKUPDATE
    966 	# These may be set as build.sh options or in "mk.conf".
    967 	# Don't export them as they're only used for tests in build.sh.
    968 	#
    969 	MKOBJDIRS=$(getmakevar MKOBJDIRS)
    970 	MKUNPRIVED=$(getmakevar MKUNPRIVED)
    971 	MKUPDATE=$(getmakevar MKUPDATE)
    972 
    973 	if [ "${MKOBJDIRS}" != "no" ]; then
    974 		# If setting -M or -O to the root of an obj dir, make sure
    975 		# the base directory is made before continuing as <bsd.own.mk>
    976 		# will need this to pick up _SRC_TOP_OBJ_
    977 		#
    978 		if [ ! -z "${makeobjdir}" ]; then
    979 			${runcmd} mkdir -p "${makeobjdir}"
    980 		fi
    981 
    982 		# make obj in tools to ensure that the objdir for the top-level
    983 		# of the source tree and for "tools" is available, in case the
    984 		# default TOOLDIR setting from <bsd.own.mk> is used, or the
    985 		# build.sh default DESTDIR and RELEASEDIR is to be used.
    986 		#
    987 		${runcmd} cd tools
    988 		${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
    989 		    bomb "Failed to make obj in tools"
    990 		${runcmd} cd "${TOP}"
    991 	fi
    992 
    993 	# Find TOOLDIR, DESTDIR, and RELEASEDIR.
    994 	#
    995 	TOOLDIR=$(getmakevar TOOLDIR)
    996 	statusmsg "TOOLDIR path:     ${TOOLDIR}"
    997 	DESTDIR=$(getmakevar DESTDIR)
    998 	RELEASEDIR=$(getmakevar RELEASEDIR)
    999 	if ! $do_expertmode; then
   1000 		_SRC_TOP_OBJ_=$(getmakevar _SRC_TOP_OBJ_)
   1001 		: ${DESTDIR:=${_SRC_TOP_OBJ_}/destdir.${MACHINE}}
   1002 		: ${RELEASEDIR:=${_SRC_TOP_OBJ_}/releasedir}
   1003 		makeenv="${makeenv} DESTDIR RELEASEDIR"
   1004 	fi
   1005 	export TOOLDIR DESTDIR RELEASEDIR
   1006 	statusmsg "DESTDIR path:     ${DESTDIR}"
   1007 	statusmsg "RELEASEDIR path:  ${RELEASEDIR}"
   1008 
   1009 	# Check validity of TOOLDIR and DESTDIR.
   1010 	#
   1011 	if [ -z "${TOOLDIR}" ] || [ "${TOOLDIR}" = "/" ]; then
   1012 		bomb "TOOLDIR '${TOOLDIR}' invalid"
   1013 	fi
   1014 	removedirs="${TOOLDIR}"
   1015 
   1016 	if [ -z "${DESTDIR}" ] || [ "${DESTDIR}" = "/" ]; then
   1017 		if ${do_build} || ${do_distribution} || ${do_release}; then
   1018 			if ! ${do_build} || \
   1019 			   [ "${uname_s}" != "NetBSD" ] || \
   1020 			   [ "${uname_m}" != "${MACHINE}" ]; then
   1021 				bomb "DESTDIR must != / for cross builds, or ${progname} 'distribution' or 'release'."
   1022 			fi
   1023 			if ! ${do_expertmode}; then
   1024 				bomb "DESTDIR must != / for non -E (expert) builds"
   1025 			fi
   1026 			statusmsg "WARNING: Building to /, in expert mode."
   1027 			statusmsg "         This may cause your system to break!  Reasons include:"
   1028 			statusmsg "            - your kernel is not up to date"
   1029 			statusmsg "            - the libraries or toolchain have changed"
   1030 			statusmsg "         YOU HAVE BEEN WARNED!"
   1031 		fi
   1032 	else
   1033 		removedirs="${removedirs} ${DESTDIR}"
   1034 	fi
   1035 	if ${do_build} || ${do_distribution} || ${do_release}; then
   1036 		if ! ${do_expertmode} && \
   1037 		    [ "$(id -u 2>/dev/null)" -ne 0 ] && \
   1038 		    [ "${MKUNPRIVED}" = "no" ] ; then
   1039 			bomb "-U or -E must be set for build as an unprivileged user."
   1040 		fi
   1041         fi
   1042 	if ${do_releasekernel} && [ -z "${RELEASEDIR}" ]; then
   1043 		bomb "Must set RELEASEDIR with \`releasekernel=...'"
   1044 	fi
   1045 }
   1046 
   1047 
   1048 createmakewrapper()
   1049 {
   1050 	# Remove the target directories.
   1051 	#
   1052 	if ${do_removedirs}; then
   1053 		for f in ${removedirs}; do
   1054 			statusmsg "Removing ${f}"
   1055 			${runcmd} rm -r -f "${f}"
   1056 		done
   1057 	fi
   1058 
   1059 	# Recreate $TOOLDIR.
   1060 	#
   1061 	${runcmd} mkdir -p "${TOOLDIR}/bin" ||
   1062 	    bomb "mkdir of '${TOOLDIR}/bin' failed"
   1063 
   1064 	# Install ${toolprefix}make if it was built.
   1065 	#
   1066 	if ${do_rebuildmake}; then
   1067 		${runcmd} rm -f "${TOOLDIR}/bin/${toolprefix}make"
   1068 		${runcmd} cp "${make}" "${TOOLDIR}/bin/${toolprefix}make" ||
   1069 		    bomb "Failed to install \$TOOLDIR/bin/${toolprefix}make"
   1070 		make="${TOOLDIR}/bin/${toolprefix}make"
   1071 		statusmsg "Created ${make}"
   1072 	fi
   1073 
   1074 	# Build a ${toolprefix}make wrapper script, usable by hand as
   1075 	# well as by build.sh.
   1076 	#
   1077 	if [ -z "${makewrapper}" ]; then
   1078 		makewrapper="${TOOLDIR}/bin/${toolprefix}make-${makewrappermachine:-${MACHINE}}"
   1079 		[ -z "${BUILDID}" ] || makewrapper="${makewrapper}-${BUILDID}"
   1080 	fi
   1081 
   1082 	${runcmd} rm -f "${makewrapper}"
   1083 	if [ "${runcmd}" = "echo" ]; then
   1084 		echo 'cat <<EOF >'${makewrapper}
   1085 		makewrapout=
   1086 	else
   1087 		makewrapout=">>\${makewrapper}"
   1088 	fi
   1089 
   1090 	case "${KSH_VERSION:-${SH_VERSION}}" in
   1091 	*PD\ KSH*|*MIRBSD\ KSH*)
   1092 		set +o braceexpand
   1093 		;;
   1094 	esac
   1095 
   1096 	eval cat <<EOF ${makewrapout}
   1097 #! ${HOST_SH}
   1098 # Set proper variables to allow easy "make" building of a NetBSD subtree.
   1099 # Generated from:  \$NetBSD: build.sh,v 1.178 2007/11/20 01:33:32 uebayasi Exp $
   1100 # with these arguments: ${_args}
   1101 #
   1102 
   1103 EOF
   1104 	{
   1105 		for f in ${makeenv}; do
   1106 			if eval "[ -z \"\${$f}\" -a \"\${${f}-X}\" = \"X\" ]"; then
   1107 				eval echo "unset ${f}"
   1108 			else
   1109 				eval echo "${f}=\'\$$(echo ${f})\'\;\ export\ ${f}"
   1110 			fi
   1111 		done
   1112 
   1113 		eval cat <<EOF
   1114 MAKEWRAPPERMACHINE=${makewrappermachine:-${MACHINE}}; export MAKEWRAPPERMACHINE
   1115 USETOOLS=yes; export USETOOLS
   1116 EOF
   1117 	} | eval sort -u "${makewrapout}"
   1118 	eval cat <<EOF "${makewrapout}"
   1119 
   1120 exec "\${TOOLDIR}/bin/${toolprefix}make" \${1+"\$@"}
   1121 EOF
   1122 	[ "${runcmd}" = "echo" ] && echo EOF
   1123 	${runcmd} chmod +x "${makewrapper}"
   1124 	statusmsg "makewrapper:      ${makewrapper}"
   1125 	statusmsg "Updated ${makewrapper}"
   1126 }
   1127 
   1128 buildtools()
   1129 {
   1130 	if [ "${MKOBJDIRS}" != "no" ]; then
   1131 		${runcmd} "${makewrapper}" ${parallel} obj-tools ||
   1132 		    bomb "Failed to make obj-tools"
   1133 	fi
   1134 	${runcmd} cd tools
   1135 	if [ "${MKUPDATE}" = "no" ]; then
   1136 		${runcmd} "${makewrapper}" ${parallel} cleandir ||
   1137 		    bomb "Failed to make cleandir tools"
   1138 	fi
   1139 	${runcmd} "${makewrapper}" ${parallel} dependall ||
   1140 	    bomb "Failed to make dependall tools"
   1141 	${runcmd} "${makewrapper}" ${parallel} install ||
   1142 	    bomb "Failed to make install tools"
   1143 	statusmsg "Tools built to ${TOOLDIR}"
   1144 	${runcmd} cd "${TOP}"
   1145 }
   1146 
   1147 getkernelconf()
   1148 {
   1149 	kernelconf="$1"
   1150 	if [ "${MKOBJDIRS}" != "no" ]; then
   1151 		# The correct value of KERNOBJDIR might
   1152 		# depend on a prior "make obj" in
   1153 		# ${KERNSRCDIR}/${KERNARCHDIR}/compile.
   1154 		#
   1155 		KERNSRCDIR="$(getmakevar KERNSRCDIR)"
   1156 		KERNARCHDIR="$(getmakevar KERNARCHDIR)"
   1157 		${runcmd} cd "${KERNSRCDIR}/${KERNARCHDIR}/compile"
   1158 		${runcmd} "${makewrapper}" ${parallel} obj ||
   1159 		    bomb "Failed to make obj in ${KERNSRCDIR}/${KERNARCHDIR}/compile"
   1160 		${runcmd} cd "${TOP}"
   1161 	fi
   1162 	KERNCONFDIR="$(getmakevar KERNCONFDIR)"
   1163 	KERNOBJDIR="$(getmakevar KERNOBJDIR)"
   1164 	case "${kernelconf}" in
   1165 	*/*)
   1166 		kernelconfpath="${kernelconf}"
   1167 		kernelconfname="${kernelconf##*/}"
   1168 		;;
   1169 	*)
   1170 		kernelconfpath="${KERNCONFDIR}/${kernelconf}"
   1171 		kernelconfname="${kernelconf}"
   1172 		;;
   1173 	esac
   1174 	kernelbuildpath="${KERNOBJDIR}/${kernelconfname}"
   1175 }
   1176 
   1177 buildkernel()
   1178 {
   1179 	if ! ${do_tools} && ! ${buildkernelwarned:-false}; then
   1180 		# Building tools every time we build a kernel is clearly
   1181 		# unnecessary.  We could try to figure out whether rebuilding
   1182 		# the tools is necessary this time, but it doesn't seem worth
   1183 		# the trouble.  Instead, we say it's the user's responsibility
   1184 		# to rebuild the tools if necessary.
   1185 		#
   1186 		statusmsg "Building kernel without building new tools"
   1187 		buildkernelwarned=true
   1188 	fi
   1189 	getkernelconf $1
   1190 	statusmsg "Building kernel:  ${kernelconf}"
   1191 	statusmsg "Build directory:  ${kernelbuildpath}"
   1192 	${runcmd} mkdir -p "${kernelbuildpath}" ||
   1193 	    bomb "Cannot mkdir: ${kernelbuildpath}"
   1194 	if [ "${MKUPDATE}" = "no" ]; then
   1195 		${runcmd} cd "${kernelbuildpath}"
   1196 		${runcmd} "${makewrapper}" ${parallel} cleandir ||
   1197 		    bomb "Failed to make cleandir in ${kernelbuildpath}"
   1198 		${runcmd} cd "${TOP}"
   1199 	fi
   1200 	[ -x "${TOOLDIR}/bin/${toolprefix}config" ] \
   1201 	|| bomb "${TOOLDIR}/bin/${toolprefix}config does not exist. You need to \"$0 tools\" first."
   1202 	${runcmd} "${TOOLDIR}/bin/${toolprefix}config" -b "${kernelbuildpath}" \
   1203 		-s "${TOP}/sys" "${kernelconfpath}" ||
   1204 	    bomb "${toolprefix}config failed for ${kernelconf}"
   1205 	${runcmd} cd "${kernelbuildpath}"
   1206 	${runcmd} "${makewrapper}" ${parallel} depend ||
   1207 	    bomb "Failed to make depend in ${kernelbuildpath}"
   1208 	${runcmd} "${makewrapper}" ${parallel} all ||
   1209 	    bomb "Failed to make all in ${kernelbuildpath}"
   1210 	${runcmd} cd "${TOP}"
   1211 
   1212 	if [ "${runcmd}" != "echo" ]; then
   1213 		statusmsg "Kernels built from ${kernelconf}:"
   1214 		kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
   1215 		for kern in ${kernlist:-netbsd}; do
   1216 			[ -f "${kernelbuildpath}/${kern}" ] && \
   1217 			    echo "  ${kernelbuildpath}/${kern}"
   1218 		done | tee -a "${results}"
   1219 	fi
   1220 }
   1221 
   1222 releasekernel()
   1223 {
   1224 	getkernelconf $1
   1225 	kernelreldir="${RELEASEDIR}/${MACHINE}/binary/kernel"
   1226 	${runcmd} mkdir -p "${kernelreldir}"
   1227 	kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
   1228 	for kern in ${kernlist:-netbsd}; do
   1229 		builtkern="${kernelbuildpath}/${kern}"
   1230 		[ -f "${builtkern}" ] || continue
   1231 		releasekern="${kernelreldir}/${kern}-${kernelconfname}.gz"
   1232 		statusmsg "Kernel copy:      ${releasekern}"
   1233 		${runcmd} gzip -c -9 < "${builtkern}" > "${releasekern}"
   1234 	done
   1235 }
   1236 
   1237 installworld()
   1238 {
   1239 	dir="$1"
   1240 	${runcmd} "${makewrapper}" INSTALLWORLDDIR="${dir}" installworld ||
   1241 	    bomb "Failed to make installworld to ${dir}"
   1242 	statusmsg "Successful installworld to ${dir}"
   1243 }
   1244 
   1245 
   1246 main()
   1247 {
   1248 	initdefaults
   1249 	_args=$@
   1250 	parseoptions "$@"
   1251 
   1252 	sanitycheck
   1253 
   1254 	build_start=$(date)
   1255 	statusmsg "${progname} command: $0 $@"
   1256 	statusmsg "${progname} started: ${build_start}"
   1257 	statusmsg "NetBSD version:   ${DISTRIBVER}"
   1258 	statusmsg "MACHINE:          ${MACHINE}"
   1259 	statusmsg "MACHINE_ARCH:     ${MACHINE_ARCH}"
   1260 	statusmsg "Build platform:   ${uname_s} ${uname_r} ${uname_m}"
   1261 	statusmsg "HOST_SH:          ${HOST_SH}"
   1262 
   1263 	rebuildmake
   1264 	validatemakeparams
   1265 	createmakewrapper
   1266 
   1267 	# Perform the operations.
   1268 	#
   1269 	for op in ${operations}; do
   1270 		case "${op}" in
   1271 
   1272 		makewrapper)
   1273 			# no-op
   1274 			;;
   1275 
   1276 		tools)
   1277 			buildtools
   1278 			;;
   1279 
   1280 		sets)
   1281 			statusmsg "Building sets from pre-populated ${DESTDIR}"
   1282 			${runcmd} "${makewrapper}" ${parallel} ${op} ||
   1283 			    bomb "Failed to make ${op}"
   1284 			statusmsg "Successful make ${op}"
   1285 			;;
   1286 
   1287 		obj|build|distribution|release|sourcesets|syspkgs|params)
   1288 			${runcmd} "${makewrapper}" ${parallel} ${op} ||
   1289 			    bomb "Failed to make ${op}"
   1290 			statusmsg "Successful make ${op}"
   1291 			;;
   1292 
   1293 		iso-image|iso-image-source)
   1294 			${runcmd} "${makewrapper}" ${parallel} \
   1295 			    CDEXTRA=$iso_dir ${op} ||
   1296 			    bomb "Failed to make ${op}"
   1297 			statusmsg "Successful make ${op}"
   1298 			;;
   1299 
   1300 		kernel=*)
   1301 			arg=${op#*=}
   1302 			buildkernel "${arg}"
   1303 			;;
   1304 
   1305 		releasekernel=*)
   1306 			arg=${op#*=}
   1307 			releasekernel "${arg}"
   1308 			;;
   1309 
   1310 		install=*)
   1311 			arg=${op#*=}
   1312 			if [ "${arg}" = "/" ] && \
   1313 			    (	[ "${uname_s}" != "NetBSD" ] || \
   1314 				[ "${uname_m}" != "${MACHINE}" ] ); then
   1315 				bomb "'${op}' must != / for cross builds."
   1316 			fi
   1317 			installworld "${arg}"
   1318 			;;
   1319 
   1320 		*)
   1321 			bomb "Unknown operation \`${op}'"
   1322 			;;
   1323 
   1324 		esac
   1325 	done
   1326 
   1327 	statusmsg "${progname} ended:   $(date)"
   1328 	if [ -s "${results}" ]; then
   1329 		echo "===> Summary of results:"
   1330 		sed -e 's/^===>//;s/^/	/' "${results}"
   1331 		echo "===> ."
   1332 	fi
   1333 }
   1334 
   1335 main "$@"
   1336