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