1#! /usr/bin/env sh 2# $NetBSD: build.sh,v 1.333 2019/06/07 15:49:20 sborrill Exp $ 3# 4# Copyright (c) 2001-2011 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, to build or cross-build NetBSD. 33# 34 35# 36# {{{ Begin shell feature tests. 37# 38# We try to determine whether or not this script is being run under 39# a shell that supports the features that we use. If not, we try to 40# re-exec the script under another shell. If we can't find another 41# suitable shell, then we print a message and exit. 42# 43 44errmsg='' # error message, if not empty 45shelltest=false # if true, exit after testing the shell 46re_exec_allowed=true # if true, we may exec under another shell 47 48# Parse special command line options in $1. These special options are 49# for internal use only, are not documented, and are not valid anywhere 50# other than $1. 51case "$1" in 52"--shelltest") 53 shelltest=true 54 re_exec_allowed=false 55 shift 56 ;; 57"--no-re-exec") 58 re_exec_allowed=false 59 shift 60 ;; 61esac 62 63# Solaris /bin/sh, and other SVR4 shells, do not support "!". 64# This is the first feature that we test, because subsequent 65# tests use "!". 66# 67if test -z "$errmsg"; then 68 if ( eval '! false' ) >/dev/null 2>&1 ; then 69 : 70 else 71 errmsg='Shell does not support "!".' 72 fi 73fi 74 75# Does the shell support functions? 76# 77if test -z "$errmsg"; then 78 if ! ( 79 eval 'somefunction() { : ; }' 80 ) >/dev/null 2>&1 81 then 82 errmsg='Shell does not support functions.' 83 fi 84fi 85 86# Does the shell support the "local" keyword for variables in functions? 87# 88# Local variables are not required by SUSv3, but some scripts run during 89# the NetBSD build use them. 90# 91# ksh93 fails this test; it uses an incompatible syntax involving the 92# keywords 'function' and 'typeset'. 93# 94if test -z "$errmsg"; then 95 if ! ( 96 eval 'f() { local v=2; }; v=1; f && test x"$v" = x"1"' 97 ) >/dev/null 2>&1 98 then 99 errmsg='Shell does not support the "local" keyword in functions.' 100 fi 101fi 102 103# Does the shell support ${var%suffix}, ${var#prefix}, and their variants? 104# 105# We don't bother testing for ${var+value}, ${var-value}, or their variants, 106# since shells without those are sure to fail other tests too. 107# 108if test -z "$errmsg"; then 109 if ! ( 110 eval 'var=a/b/c ; 111 test x"${var#*/};${var##*/};${var%/*};${var%%/*}" = \ 112 x"b/c;c;a/b;a" ;' 113 ) >/dev/null 2>&1 114 then 115 errmsg='Shell does not support "${var%suffix}" or "${var#prefix}".' 116 fi 117fi 118 119# Does the shell support IFS? 120# 121# zsh in normal mode (as opposed to "emulate sh" mode) fails this test. 122# 123if test -z "$errmsg"; then 124 if ! ( 125 eval 'IFS=: ; v=":a b::c" ; set -- $v ; IFS=+ ; 126 test x"$#;$1,$2,$3,$4;$*" = x"4;,a b,,c;+a b++c"' 127 ) >/dev/null 2>&1 128 then 129 errmsg='Shell does not support IFS word splitting.' 130 fi 131fi 132 133# Does the shell support ${1+"$@"}? 134# 135# Some versions of zsh fail this test, even in "emulate sh" mode. 136# 137if test -z "$errmsg"; then 138 if ! ( 139 eval 'set -- "a a a" "b b b"; set -- ${1+"$@"}; 140 test x"$#;$1;$2" = x"2;a a a;b b b";' 141 ) >/dev/null 2>&1 142 then 143 errmsg='Shell does not support ${1+"$@"}.' 144 fi 145fi 146 147# Does the shell support $(...) command substitution? 148# 149if test -z "$errmsg"; then 150 if ! ( 151 eval 'var=$(echo abc); test x"$var" = x"abc"' 152 ) >/dev/null 2>&1 153 then 154 errmsg='Shell does not support "$(...)" command substitution.' 155 fi 156fi 157 158# Does the shell support $(...) command substitution with 159# unbalanced parentheses? 160# 161# Some shells known to fail this test are: NetBSD /bin/ksh (as of 2009-12), 162# bash-3.1, pdksh-5.2.14, zsh-4.2.7 in "emulate sh" mode. 163# 164if test -z "$errmsg"; then 165 if ! ( 166 eval 'var=$(case x in x) echo abc;; esac); test x"$var" = x"abc"' 167 ) >/dev/null 2>&1 168 then 169 # XXX: This test is ignored because so many shells fail it; instead, 170 # the NetBSD build avoids using the problematic construct. 171 : ignore 'Shell does not support "$(...)" with unbalanced ")".' 172 fi 173fi 174 175# Does the shell support getopts or getopt? 176# 177if test -z "$errmsg"; then 178 if ! ( 179 eval 'type getopts || type getopt' 180 ) >/dev/null 2>&1 181 then 182 errmsg='Shell does not support getopts or getopt.' 183 fi 184fi 185 186# 187# If shelltest is true, exit now, reporting whether or not the shell is good. 188# 189if $shelltest; then 190 if test -n "$errmsg"; then 191 echo >&2 "$0: $errmsg" 192 exit 1 193 else 194 exit 0 195 fi 196fi 197 198# 199# If the shell was bad, try to exec a better shell, or report an error. 200# 201# Loops are broken by passing an extra "--no-re-exec" flag to the new 202# instance of this script. 203# 204if test -n "$errmsg"; then 205 if $re_exec_allowed; then 206 for othershell in \ 207 "${HOST_SH}" /usr/xpg4/bin/sh ksh ksh88 mksh pdksh dash bash 208 # NOTE: some shells known not to work are: 209 # any shell using csh syntax; 210 # Solaris /bin/sh (missing many modern features); 211 # ksh93 (incompatible syntax for local variables); 212 # zsh (many differences, unless run in compatibility mode). 213 do 214 test -n "$othershell" || continue 215 if eval 'type "$othershell"' >/dev/null 2>&1 \ 216 && "$othershell" "$0" --shelltest >/dev/null 2>&1 217 then 218 cat <<EOF 219$0: $errmsg 220$0: Retrying under $othershell 221EOF 222 HOST_SH="$othershell" 223 export HOST_SH 224 exec $othershell "$0" --no-re-exec "$@" # avoid ${1+"$@"} 225 fi 226 # If HOST_SH was set, but failed the test above, 227 # then give up without trying any other shells. 228 test x"${othershell}" = x"${HOST_SH}" && break 229 done 230 fi 231 232 # 233 # If we get here, then the shell is bad, and we either could not 234 # find a replacement, or were not allowed to try a replacement. 235 # 236 cat <<EOF 237$0: $errmsg 238 239The NetBSD build system requires a shell that supports modern POSIX 240features, as well as the "local" keyword in functions (which is a 241widely-implemented but non-standardised feature). 242 243Please re-run this script under a suitable shell. For example: 244 245 /path/to/suitable/shell $0 ... 246 247The above command will usually enable build.sh to automatically set 248HOST_SH=/path/to/suitable/shell, but if that fails, then you may also 249need to explicitly set the HOST_SH environment variable, as follows: 250 251 HOST_SH=/path/to/suitable/shell 252 export HOST_SH 253 \${HOST_SH} $0 ... 254EOF 255 exit 1 256fi 257 258# 259# }}} End shell feature tests. 260# 261 262progname=${0##*/} 263toppid=$$ 264results=/dev/null 265tab=' ' 266nl=' 267' 268trap "exit 1" 1 2 3 15 269 270bomb() 271{ 272 cat >&2 <<ERRORMESSAGE 273 274ERROR: $@ 275*** BUILD ABORTED *** 276ERRORMESSAGE 277 kill ${toppid} # in case we were invoked from a subshell 278 exit 1 279} 280 281# Quote args to make them safe in the shell. 282# Usage: quotedlist="$(shell_quote args...)" 283# 284# After building up a quoted list, use it by evaling it inside 285# double quotes, like this: 286# eval "set -- $quotedlist" 287# or like this: 288# eval "\$command $quotedlist \$filename" 289# 290shell_quote() 291{( 292 local result='' 293 local arg qarg 294 LC_COLLATE=C ; export LC_COLLATE # so [a-zA-Z0-9] works in ASCII 295 for arg in "$@" ; do 296 case "${arg}" in 297 '') 298 qarg="''" 299 ;; 300 *[!-./a-zA-Z0-9]*) 301 # Convert each embedded ' to '\'', 302 # then insert ' at the beginning of the first line, 303 # and append ' at the end of the last line. 304 # Finally, elide unnecessary '' pairs at the 305 # beginning and end of the result and as part of 306 # '\'''\'' sequences that result from multiple 307 # adjacent quotes in he input. 308 qarg="$(printf "%s\n" "$arg" | \ 309 ${SED:-sed} -e "s/'/'\\\\''/g" \ 310 -e "1s/^/'/" -e "\$s/\$/'/" \ 311 -e "1s/^''//" -e "\$s/''\$//" \ 312 -e "s/'''/'/g" 313 )" 314 ;; 315 *) 316 # Arg is not the empty string, and does not contain 317 # any unsafe characters. Leave it unchanged for 318 # readability. 319 qarg="${arg}" 320 ;; 321 esac 322 result="${result}${result:+ }${qarg}" 323 done 324 printf "%s\n" "$result" 325)} 326 327statusmsg() 328{ 329 ${runcmd} echo "===> $@" | tee -a "${results}" 330} 331 332statusmsg2() 333{ 334 local msg 335 336 msg="${1}" 337 shift 338 case "${msg}" in 339 ????????????????*) ;; 340 ??????????*) msg="${msg} ";; 341 ?????*) msg="${msg} ";; 342 *) msg="${msg} ";; 343 esac 344 case "${msg}" in 345 ?????????????????????*) ;; 346 ????????????????????) msg="${msg} ";; 347 ???????????????????) msg="${msg} ";; 348 ??????????????????) msg="${msg} ";; 349 ?????????????????) msg="${msg} ";; 350 ????????????????) msg="${msg} ";; 351 esac 352 statusmsg "${msg}$*" 353} 354 355warning() 356{ 357 statusmsg "Warning: $@" 358} 359 360# Find a program in the PATH, and print the result. If not found, 361# print a default. If $2 is defined (even if it is an empty string), 362# then that is the default; otherwise, $1 is used as the default. 363find_in_PATH() 364{ 365 local prog="$1" 366 local result="${2-"$1"}" 367 local oldIFS="${IFS}" 368 local dir 369 IFS=":" 370 for dir in ${PATH}; do 371 if [ -x "${dir}/${prog}" ]; then 372 result="${dir}/${prog}" 373 break 374 fi 375 done 376 IFS="${oldIFS}" 377 echo "${result}" 378} 379 380# Try to find a working POSIX shell, and set HOST_SH to refer to it. 381# Assumes that uname_s, uname_m, and PWD have been set. 382set_HOST_SH() 383{ 384 # Even if ${HOST_SH} is already defined, we still do the 385 # sanity checks at the end. 386 387 # Solaris has /usr/xpg4/bin/sh. 388 # 389 [ -z "${HOST_SH}" ] && [ x"${uname_s}" = x"SunOS" ] && \ 390 [ -x /usr/xpg4/bin/sh ] && HOST_SH="/usr/xpg4/bin/sh" 391 392 # Try to get the name of the shell that's running this script, 393 # by parsing the output from "ps". We assume that, if the host 394 # system's ps command supports -o comm at all, it will do so 395 # in the usual way: a one-line header followed by a one-line 396 # result, possibly including trailing white space. And if the 397 # host system's ps command doesn't support -o comm, we assume 398 # that we'll get an error message on stderr and nothing on 399 # stdout. (We don't try to use ps -o 'comm=' to suppress the 400 # header line, because that is less widely supported.) 401 # 402 # If we get the wrong result here, the user can override it by 403 # specifying HOST_SH in the environment. 404 # 405 [ -z "${HOST_SH}" ] && HOST_SH="$( 406 (ps -p $$ -o comm | sed -ne "2s/[ ${tab}]*\$//p") 2>/dev/null )" 407 408 # If nothing above worked, use "sh". We will later find the 409 # first directory in the PATH that has a "sh" program. 410 # 411 [ -z "${HOST_SH}" ] && HOST_SH="sh" 412 413 # If the result so far is not an absolute path, try to prepend 414 # PWD or search the PATH. 415 # 416 case "${HOST_SH}" in 417 /*) : 418 ;; 419 */*) HOST_SH="${PWD}/${HOST_SH}" 420 ;; 421 *) HOST_SH="$(find_in_PATH "${HOST_SH}")" 422 ;; 423 esac 424 425 # If we don't have an absolute path by now, bomb. 426 # 427 case "${HOST_SH}" in 428 /*) : 429 ;; 430 *) bomb "HOST_SH=\"${HOST_SH}\" is not an absolute path." 431 ;; 432 esac 433 434 # If HOST_SH is not executable, bomb. 435 # 436 [ -x "${HOST_SH}" ] || 437 bomb "HOST_SH=\"${HOST_SH}\" is not executable." 438 439 # If HOST_SH fails tests, bomb. 440 # ("$0" may be a path that is no longer valid, because we have 441 # performed "cd $(dirname $0)", so don't use $0 here.) 442 # 443 "${HOST_SH}" build.sh --shelltest || 444 bomb "HOST_SH=\"${HOST_SH}\" failed functionality tests." 445} 446 447# initdefaults -- 448# Set defaults before parsing command line options. 449# 450initdefaults() 451{ 452 makeenv= 453 makewrapper= 454 makewrappermachine= 455 runcmd= 456 operations= 457 removedirs= 458 459 [ -d usr.bin/make ] || cd "$(dirname $0)" 460 [ -d usr.bin/make ] || 461 bomb "usr.bin/make not found; build.sh must be run from the top \ 462level of source directory" 463 [ -f share/mk/bsd.own.mk ] || 464 bomb "src/share/mk is missing; please re-fetch the source tree" 465 466 # Set various environment variables to known defaults, 467 # to minimize (cross-)build problems observed "in the field". 468 # 469 # LC_ALL=C must be set before we try to parse the output from 470 # any command. Other variables are set (or unset) here, before 471 # we parse command line arguments. 472 # 473 # These variables can be overridden via "-V var=value" if 474 # you know what you are doing. 475 # 476 unsetmakeenv INFODIR 477 unsetmakeenv LESSCHARSET 478 unsetmakeenv MAKEFLAGS 479 unsetmakeenv TERMINFO 480 setmakeenv LC_ALL C 481 482 # Find information about the build platform. This should be 483 # kept in sync with _HOST_OSNAME, _HOST_OSREL, and _HOST_ARCH 484 # variables in share/mk/bsd.sys.mk. 485 # 486 # Note that "uname -p" is not part of POSIX, but we want uname_p 487 # to be set to the host MACHINE_ARCH, if possible. On systems 488 # where "uname -p" fails, prints "unknown", or prints a string 489 # that does not look like an identifier, fall back to using the 490 # output from "uname -m" instead. 491 # 492 uname_s=$(uname -s 2>/dev/null) 493 uname_r=$(uname -r 2>/dev/null) 494 uname_m=$(uname -m 2>/dev/null) 495 uname_p=$(uname -p 2>/dev/null || echo "unknown") 496 case "${uname_p}" in 497 ''|unknown|*[!-_A-Za-z0-9]*) uname_p="${uname_m}" ;; 498 esac 499 500 id_u=$(id -u 2>/dev/null || /usr/xpg4/bin/id -u 2>/dev/null) 501 502 # If $PWD is a valid name of the current directory, POSIX mandates 503 # that pwd return it by default which causes problems in the 504 # presence of symlinks. Unsetting PWD is simpler than changing 505 # every occurrence of pwd to use -P. 506 # 507 # XXX Except that doesn't work on Solaris. Or many Linuces. 508 # 509 unset PWD 510 TOP=$( (exec pwd -P 2>/dev/null) || (exec pwd 2>/dev/null) ) 511 512 # The user can set HOST_SH in the environment, or we try to 513 # guess an appropriate value. Then we set several other 514 # variables from HOST_SH. 515 # 516 set_HOST_SH 517 setmakeenv HOST_SH "${HOST_SH}" 518 setmakeenv BSHELL "${HOST_SH}" 519 setmakeenv CONFIG_SHELL "${HOST_SH}" 520 521 # Set defaults. 522 # 523 toolprefix=nb 524 525 # Some systems have a small ARG_MAX. -X prevents make(1) from 526 # exporting variables in the environment redundantly. 527 # 528 case "${uname_s}" in 529 Darwin | FreeBSD | CYGWIN*) 530 MAKEFLAGS="-X ${MAKEFLAGS}" 531 ;; 532 esac 533 534 # do_{operation}=true if given operation is requested. 535 # 536 do_expertmode=false 537 do_rebuildmake=false 538 do_removedirs=false 539 do_tools=false 540 do_libs=false 541 do_cleandir=false 542 do_obj=false 543 do_build=false 544 do_distribution=false 545 do_release=false 546 do_kernel=false 547 do_releasekernel=false 548 do_kernels=false 549 do_modules=false 550 do_installmodules=false 551 do_install=false 552 do_sets=false 553 do_sourcesets=false 554 do_syspkgs=false 555 do_iso_image=false 556 do_iso_image_source=false 557 do_live_image=false 558 do_install_image=false 559 do_disk_image=false 560 do_params=false 561 do_rump=false 562 563 # done_{operation}=true if given operation has been done. 564 # 565 done_rebuildmake=false 566 567 # Create scratch directory 568 # 569 tmpdir="${TMPDIR-/tmp}/nbbuild$$" 570 mkdir "${tmpdir}" || bomb "Cannot mkdir: ${tmpdir}" 571 trap "cd /; rm -r -f \"${tmpdir}\"" 0 572 results="${tmpdir}/build.sh.results" 573 574 # Set source directories 575 # 576 setmakeenv NETBSDSRCDIR "${TOP}" 577 578 # Make sure KERNOBJDIR is an absolute path if defined 579 # 580 case "${KERNOBJDIR}" in 581 ''|/*) ;; 582 *) KERNOBJDIR="${TOP}/${KERNOBJDIR}" 583 setmakeenv KERNOBJDIR "${KERNOBJDIR}" 584 ;; 585 esac 586 587 # Find the version of NetBSD 588 # 589 DISTRIBVER="$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh)" 590 591 # Set the BUILDSEED to NetBSD-"N" 592 # 593 setmakeenv BUILDSEED "NetBSD-$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh -m)" 594 595 # Set MKARZERO to "yes" 596 # 597 setmakeenv MKARZERO "yes" 598 599} 600 601# valid_MACHINE_ARCH -- A multi-line string, listing all valid 602# MACHINE/MACHINE_ARCH pairs. 603# 604# Each line contains a MACHINE and MACHINE_ARCH value, an optional ALIAS 605# which may be used to refer to the MACHINE/MACHINE_ARCH pair, and an 606# optional DEFAULT or NO_DEFAULT keyword. 607# 608# When a MACHINE corresponds to multiple possible values of 609# MACHINE_ARCH, then this table should list all allowed combinations. 610# If the MACHINE is associated with a default MACHINE_ARCH (to be 611# used when the user specifies the MACHINE but fails to specify the 612# MACHINE_ARCH), then one of the lines should have the "DEFAULT" 613# keyword. If there is no default MACHINE_ARCH for a particular 614# MACHINE, then there should be a line with the "NO_DEFAULT" keyword, 615# and with a blank MACHINE_ARCH. 616# 617valid_MACHINE_ARCH=' 618MACHINE=acorn32 MACHINE_ARCH=arm 619MACHINE=acorn32 MACHINE_ARCH=earmv4 ALIAS=eacorn32 DEFAULT 620MACHINE=algor MACHINE_ARCH=mips64el ALIAS=algor64 621MACHINE=algor MACHINE_ARCH=mipsel DEFAULT 622MACHINE=alpha MACHINE_ARCH=alpha 623MACHINE=amd64 MACHINE_ARCH=x86_64 624MACHINE=amiga MACHINE_ARCH=m68k 625MACHINE=amigappc MACHINE_ARCH=powerpc 626MACHINE=arc MACHINE_ARCH=mips64el ALIAS=arc64 627MACHINE=arc MACHINE_ARCH=mipsel DEFAULT 628MACHINE=atari MACHINE_ARCH=m68k 629MACHINE=bebox MACHINE_ARCH=powerpc 630MACHINE=cats MACHINE_ARCH=arm ALIAS=ocats 631MACHINE=cats MACHINE_ARCH=earmv4 ALIAS=ecats DEFAULT 632MACHINE=cesfic MACHINE_ARCH=m68k 633MACHINE=cobalt MACHINE_ARCH=mips64el ALIAS=cobalt64 634MACHINE=cobalt MACHINE_ARCH=mipsel DEFAULT 635MACHINE=dreamcast MACHINE_ARCH=sh3el 636MACHINE=emips MACHINE_ARCH=mipseb 637MACHINE=epoc32 MACHINE_ARCH=arm 638MACHINE=epoc32 MACHINE_ARCH=earmv4 ALIAS=eepoc32 DEFAULT 639MACHINE=evbarm MACHINE_ARCH=arm ALIAS=evboarm-el 640MACHINE=evbarm MACHINE_ARCH=armeb ALIAS=evboarm-eb 641MACHINE=evbarm MACHINE_ARCH=earm ALIAS=evbearm-el ALIAS=evbarm-el DEFAULT 642MACHINE=evbarm MACHINE_ARCH=earmeb ALIAS=evbearm-eb ALIAS=evbarm-eb 643MACHINE=evbarm MACHINE_ARCH=earmhf ALIAS=evbearmhf-el ALIAS=evbarmhf-el 644MACHINE=evbarm MACHINE_ARCH=earmhfeb ALIAS=evbearmhf-eb ALIAS=evbarmhf-eb 645MACHINE=evbarm MACHINE_ARCH=earmv4 ALIAS=evbearmv4-el ALIAS=evbarmv4-el 646MACHINE=evbarm MACHINE_ARCH=earmv4eb ALIAS=evbearmv4-eb ALIAS=evbarmv4-eb 647MACHINE=evbarm MACHINE_ARCH=earmv5 ALIAS=evbearmv5-el ALIAS=evbarmv5-el 648MACHINE=evbarm MACHINE_ARCH=earmv5eb ALIAS=evbearmv5-eb ALIAS=evbarmv5-eb 649MACHINE=evbarm MACHINE_ARCH=earmv6 ALIAS=evbearmv6-el ALIAS=evbarmv6-el 650MACHINE=evbarm MACHINE_ARCH=earmv6hf ALIAS=evbearmv6hf-el ALIAS=evbarmv6hf-el 651MACHINE=evbarm MACHINE_ARCH=earmv6eb ALIAS=evbearmv6-eb ALIAS=evbarmv6-eb 652MACHINE=evbarm MACHINE_ARCH=earmv6hfeb ALIAS=evbearmv6hf-eb ALIAS=evbarmv6hf-eb 653MACHINE=evbarm MACHINE_ARCH=earmv7 ALIAS=evbearmv7-el ALIAS=evbarmv7-el 654MACHINE=evbarm MACHINE_ARCH=earmv7eb ALIAS=evbearmv7-eb ALIAS=evbarmv7-eb 655MACHINE=evbarm MACHINE_ARCH=earmv7hf ALIAS=evbearmv7hf-el ALIAS=evbarmv7hf-el 656MACHINE=evbarm MACHINE_ARCH=earmv7hfeb ALIAS=evbearmv7hf-eb ALIAS=evbarmv7hf-eb 657MACHINE=evbarm MACHINE_ARCH=aarch64 ALIAS=evbarm64-el ALIAS=evbarm64 DEFAULT 658MACHINE=evbarm MACHINE_ARCH=aarch64eb ALIAS=evbarm64-eb 659MACHINE=evbcf MACHINE_ARCH=coldfire 660MACHINE=evbmips MACHINE_ARCH= NO_DEFAULT 661MACHINE=evbmips MACHINE_ARCH=mips64eb ALIAS=evbmips64-eb 662MACHINE=evbmips MACHINE_ARCH=mips64el ALIAS=evbmips64-el 663MACHINE=evbmips MACHINE_ARCH=mipseb ALIAS=evbmips-eb 664MACHINE=evbmips MACHINE_ARCH=mipsel ALIAS=evbmips-el 665MACHINE=evbppc MACHINE_ARCH=powerpc DEFAULT 666MACHINE=evbppc MACHINE_ARCH=powerpc64 ALIAS=evbppc64 667MACHINE=evbsh3 MACHINE_ARCH= NO_DEFAULT 668MACHINE=evbsh3 MACHINE_ARCH=sh3eb ALIAS=evbsh3-eb 669MACHINE=evbsh3 MACHINE_ARCH=sh3el ALIAS=evbsh3-el 670MACHINE=ews4800mips MACHINE_ARCH=mipseb 671MACHINE=hp300 MACHINE_ARCH=m68k 672MACHINE=hppa MACHINE_ARCH=hppa 673MACHINE=hpcarm MACHINE_ARCH=arm ALIAS=hpcoarm 674MACHINE=hpcarm MACHINE_ARCH=earmv4 ALIAS=hpcearm DEFAULT 675MACHINE=hpcmips MACHINE_ARCH=mipsel 676MACHINE=hpcsh MACHINE_ARCH=sh3el 677MACHINE=i386 MACHINE_ARCH=i386 678MACHINE=ia64 MACHINE_ARCH=ia64 679MACHINE=ibmnws MACHINE_ARCH=powerpc 680MACHINE=iyonix MACHINE_ARCH=arm ALIAS=oiyonix 681MACHINE=iyonix MACHINE_ARCH=earm ALIAS=eiyonix DEFAULT 682MACHINE=landisk MACHINE_ARCH=sh3el 683MACHINE=luna68k MACHINE_ARCH=m68k 684MACHINE=mac68k MACHINE_ARCH=m68k 685MACHINE=macppc MACHINE_ARCH=powerpc DEFAULT 686MACHINE=macppc MACHINE_ARCH=powerpc64 ALIAS=macppc64 687MACHINE=mipsco MACHINE_ARCH=mipseb 688MACHINE=mmeye MACHINE_ARCH=sh3eb 689MACHINE=mvme68k MACHINE_ARCH=m68k 690MACHINE=mvmeppc MACHINE_ARCH=powerpc 691MACHINE=netwinder MACHINE_ARCH=arm ALIAS=onetwinder 692MACHINE=netwinder MACHINE_ARCH=earmv4 ALIAS=enetwinder DEFAULT 693MACHINE=news68k MACHINE_ARCH=m68k 694MACHINE=newsmips MACHINE_ARCH=mipseb 695MACHINE=next68k MACHINE_ARCH=m68k 696MACHINE=ofppc MACHINE_ARCH=powerpc DEFAULT 697MACHINE=ofppc MACHINE_ARCH=powerpc64 ALIAS=ofppc64 698MACHINE=or1k MACHINE_ARCH=or1k 699MACHINE=playstation2 MACHINE_ARCH=mipsel 700MACHINE=pmax MACHINE_ARCH=mips64el ALIAS=pmax64 701MACHINE=pmax MACHINE_ARCH=mipsel DEFAULT 702MACHINE=prep MACHINE_ARCH=powerpc 703MACHINE=riscv MACHINE_ARCH=riscv64 ALIAS=riscv64 DEFAULT 704MACHINE=riscv MACHINE_ARCH=riscv32 ALIAS=riscv32 705MACHINE=rs6000 MACHINE_ARCH=powerpc 706MACHINE=sandpoint MACHINE_ARCH=powerpc 707MACHINE=sbmips MACHINE_ARCH= NO_DEFAULT 708MACHINE=sbmips MACHINE_ARCH=mips64eb ALIAS=sbmips64-eb 709MACHINE=sbmips MACHINE_ARCH=mips64el ALIAS=sbmips64-el 710MACHINE=sbmips MACHINE_ARCH=mipseb ALIAS=sbmips-eb 711MACHINE=sbmips MACHINE_ARCH=mipsel ALIAS=sbmips-el 712MACHINE=sgimips MACHINE_ARCH=mips64eb ALIAS=sgimips64 713MACHINE=sgimips MACHINE_ARCH=mipseb DEFAULT 714MACHINE=shark MACHINE_ARCH=arm ALIAS=oshark 715MACHINE=shark MACHINE_ARCH=earmv4 ALIAS=eshark DEFAULT 716MACHINE=sparc MACHINE_ARCH=sparc 717MACHINE=sparc64 MACHINE_ARCH=sparc64 718MACHINE=sun2 MACHINE_ARCH=m68000 719MACHINE=sun3 MACHINE_ARCH=m68k 720MACHINE=vax MACHINE_ARCH=vax 721MACHINE=x68k MACHINE_ARCH=m68k 722MACHINE=zaurus MACHINE_ARCH=arm ALIAS=ozaurus 723MACHINE=zaurus MACHINE_ARCH=earm ALIAS=ezaurus DEFAULT 724' 725 726# getarch -- find the default MACHINE_ARCH for a MACHINE, 727# or convert an alias to a MACHINE/MACHINE_ARCH pair. 728# 729# Saves the original value of MACHINE in makewrappermachine before 730# alias processing. 731# 732# Sets MACHINE and MACHINE_ARCH if the input MACHINE value is 733# recognised as an alias, or recognised as a machine that has a default 734# MACHINE_ARCH (or that has only one possible MACHINE_ARCH). 735# 736# Leaves MACHINE and MACHINE_ARCH unchanged if MACHINE is recognised 737# as being associated with multiple MACHINE_ARCH values with no default. 738# 739# Bombs if MACHINE is not recognised. 740# 741getarch() 742{ 743 local IFS 744 local found="" 745 local line 746 747 IFS="${nl}" 748 makewrappermachine="${MACHINE}" 749 for line in ${valid_MACHINE_ARCH}; do 750 line="${line%%#*}" # ignore comments 751 line="$( IFS=" ${tab}" ; echo $line )" # normalise white space 752 case "${line} " in 753 " ") 754 # skip blank lines or comment lines 755 continue 756 ;; 757 *" ALIAS=${MACHINE} "*) 758 # Found a line with a matching ALIAS=<alias>. 759 found="$line" 760 break 761 ;; 762 "MACHINE=${MACHINE} "*" NO_DEFAULT"*) 763 # Found an explicit "NO_DEFAULT" for this MACHINE. 764 found="$line" 765 break 766 ;; 767 "MACHINE=${MACHINE} "*" DEFAULT"*) 768 # Found an explicit "DEFAULT" for this MACHINE. 769 found="$line" 770 break 771 ;; 772 "MACHINE=${MACHINE} "*) 773 # Found a line for this MACHINE. If it's the 774 # first such line, then tentatively accept it. 775 # If it's not the first matching line, then 776 # remember that there was more than one match. 777 case "$found" in 778 '') found="$line" ;; 779 *) found="MULTIPLE_MATCHES" ;; 780 esac 781 ;; 782 esac 783 done 784 785 case "$found" in 786 *NO_DEFAULT*|*MULTIPLE_MATCHES*) 787 # MACHINE is OK, but MACHINE_ARCH is still unknown 788 return 789 ;; 790 "MACHINE="*" MACHINE_ARCH="*) 791 # Obey the MACHINE= and MACHINE_ARCH= parts of the line. 792 IFS=" " 793 for frag in ${found}; do 794 case "$frag" in 795 MACHINE=*|MACHINE_ARCH=*) 796 eval "$frag" 797 ;; 798 esac 799 done 800 ;; 801 *) 802 bomb "Unknown target MACHINE: ${MACHINE}" 803 ;; 804 esac 805} 806 807# validatearch -- check that the MACHINE/MACHINE_ARCH pair is supported. 808# 809# Bombs if the pair is not supported. 810# 811validatearch() 812{ 813 local IFS 814 local line 815 local foundpair=false foundmachine=false foundarch=false 816 817 case "${MACHINE_ARCH}" in 818 "") 819 bomb "No MACHINE_ARCH provided" 820 ;; 821 esac 822 823 IFS="${nl}" 824 for line in ${valid_MACHINE_ARCH}; do 825 line="${line%%#*}" # ignore comments 826 line="$( IFS=" ${tab}" ; echo $line )" # normalise white space 827 case "${line} " in 828 " ") 829 # skip blank lines or comment lines 830 continue 831 ;; 832 "MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} "*) 833 foundpair=true 834 ;; 835 "MACHINE=${MACHINE} "*) 836 foundmachine=true 837 ;; 838 *"MACHINE_ARCH=${MACHINE_ARCH} "*) 839 foundarch=true 840 ;; 841 esac 842 done 843 844 case "${foundpair}:${foundmachine}:${foundarch}" in 845 true:*) 846 : OK 847 ;; 848 *:false:*) 849 bomb "Unknown target MACHINE: ${MACHINE}" 850 ;; 851 *:*:false) 852 bomb "Unknown target MACHINE_ARCH: ${MACHINE_ARCH}" 853 ;; 854 *) 855 bomb "MACHINE_ARCH '${MACHINE_ARCH}' does not support MACHINE '${MACHINE}'" 856 ;; 857 esac 858} 859 860# listarch -- list valid MACHINE/MACHINE_ARCH/ALIAS values, 861# optionally restricted to those where the MACHINE and/or MACHINE_ARCH 862# match specifed glob patterns. 863# 864listarch() 865{ 866 local machglob="$1" archglob="$2" 867 local IFS 868 local wildcard="*" 869 local line xline frag 870 local line_matches_machine line_matches_arch 871 local found=false 872 873 # Empty machglob or archglob should match anything 874 : "${machglob:=${wildcard}}" 875 : "${archglob:=${wildcard}}" 876 877 IFS="${nl}" 878 for line in ${valid_MACHINE_ARCH}; do 879 line="${line%%#*}" # ignore comments 880 xline="$( IFS=" ${tab}" ; echo $line )" # normalise white space 881 [ -z "${xline}" ] && continue # skip blank or comment lines 882 883 line_matches_machine=false 884 line_matches_arch=false 885 886 IFS=" " 887 for frag in ${xline}; do 888 case "${frag}" in 889 MACHINE=${machglob}) 890 line_matches_machine=true ;; 891 ALIAS=${machglob}) 892 line_matches_machine=true ;; 893 MACHINE_ARCH=${archglob}) 894 line_matches_arch=true ;; 895 esac 896 done 897 898 if $line_matches_machine && $line_matches_arch; then 899 found=true 900 echo "$line" 901 fi 902 done 903 if ! $found; then 904 echo >&2 "No match for" \ 905 "MACHINE=${machglob} MACHINE_ARCH=${archglob}" 906 return 1 907 fi 908 return 0 909} 910 911# nobomb_getmakevar -- 912# Given the name of a make variable in $1, print make's idea of the 913# value of that variable, or return 1 if there's an error. 914# 915nobomb_getmakevar() 916{ 917 [ -x "${make}" ] || return 1 918 "${make}" -m ${TOP}/share/mk -s -B -f- _x_ <<EOF || return 1 919_x_: 920 echo \${$1} 921.include <bsd.prog.mk> 922.include <bsd.kernobj.mk> 923EOF 924} 925 926# bomb_getmakevar -- 927# Given the name of a make variable in $1, print make's idea of the 928# value of that variable, or bomb if there's an error. 929# 930bomb_getmakevar() 931{ 932 [ -x "${make}" ] || bomb "bomb_getmakevar $1: ${make} is not executable" 933 nobomb_getmakevar "$1" || bomb "bomb_getmakevar $1: ${make} failed" 934} 935 936# getmakevar -- 937# Given the name of a make variable in $1, print make's idea of the 938# value of that variable, or print a literal '$' followed by the 939# variable name if ${make} is not executable. This is intended for use in 940# messages that need to be readable even if $make hasn't been built, 941# such as when build.sh is run with the "-n" option. 942# 943getmakevar() 944{ 945 if [ -x "${make}" ]; then 946 bomb_getmakevar "$1" 947 else 948 echo "\$$1" 949 fi 950} 951 952setmakeenv() 953{ 954 eval "$1='$2'; export $1" 955 makeenv="${makeenv} $1" 956} 957safe_setmakeenv() 958{ 959 case "$1" in 960 961 # Look for any vars we want to prohibit here, like: 962 # Bad | Dangerous) usage "Cannot override $1 with -V";; 963 964 # That first char is OK has already been verified. 965 *[!A-Za-z0-9_]*) usage "Bad variable name (-V): '$1'";; 966 esac 967 setmakeenv "$@" 968} 969 970unsetmakeenv() 971{ 972 eval "unset $1" 973 makeenv="${makeenv} $1" 974} 975safe_unsetmakeenv() 976{ 977 case "$1" in 978 979 # Look for any vars user should not be able to unset 980 # Needed | Must_Have) usage "Variable $1 cannot be unset";; 981 982 [!A-Za-z_]* | *[!A-Za-z0-9_]*) usage "Bad variable name (-Z): '$1'";; 983 esac 984 unsetmakeenv "$1" 985} 986 987# Given a variable name in $1, modify the variable in place as follows: 988# For each space-separated word in the variable, call resolvepath. 989resolvepaths() 990{ 991 local var="$1" 992 local val 993 eval val=\"\${${var}}\" 994 local newval='' 995 local word 996 for word in ${val}; do 997 resolvepath word 998 newval="${newval}${newval:+ }${word}" 999 done 1000 eval ${var}=\"\${newval}\" 1001} 1002 1003# Given a variable name in $1, modify the variable in place as follows: 1004# Convert possibly-relative path to absolute path by prepending 1005# ${TOP} if necessary. Also delete trailing "/", if any. 1006resolvepath() 1007{ 1008 local var="$1" 1009 local val 1010 eval val=\"\${${var}}\" 1011 case "${val}" in 1012 /) 1013 ;; 1014 /*) 1015 val="${val%/}" 1016 ;; 1017 *) 1018 val="${TOP}/${val%/}" 1019 ;; 1020 esac 1021 eval ${var}=\"\${val}\" 1022} 1023 1024usage() 1025{ 1026 if [ -n "$*" ]; then 1027 echo "" 1028 echo "${progname}: $*" 1029 fi 1030 cat <<_usage_ 1031 1032Usage: ${progname} [-EhnoPRrUuxy] [-a arch] [-B buildid] [-C cdextras] 1033 [-D dest] [-j njob] [-M obj] [-m mach] [-N noisy] 1034 [-O obj] [-R release] [-S seed] [-T tools] 1035 [-V var=[value]] [-w wrapper] [-X x11src] [-Y extsrcsrc] 1036 [-Z var] 1037 operation [...] 1038 1039 Build operations (all imply "obj" and "tools"): 1040 build Run "make build". 1041 distribution Run "make distribution" (includes DESTDIR/etc/ files). 1042 release Run "make release" (includes kernels & distrib media). 1043 1044 Other operations: 1045 help Show this message and exit. 1046 makewrapper Create ${toolprefix}make-\${MACHINE} wrapper and ${toolprefix}make. 1047 Always performed. 1048 cleandir Run "make cleandir". [Default unless -u is used] 1049 obj Run "make obj". [Default unless -o is used] 1050 tools Build and install tools. 1051 install=idir Run "make installworld" to \`idir' to install all sets 1052 except \`etc'. Useful after "distribution" or "release" 1053 kernel=conf Build kernel with config file \`conf' 1054 kernel.gdb=conf Build kernel (including netbsd.gdb) with config 1055 file \`conf' 1056 releasekernel=conf Install kernel built by kernel=conf to RELEASEDIR. 1057 kernels Build all kernels 1058 installmodules=idir Run "make installmodules" to \`idir' to install all 1059 kernel modules. 1060 modules Build kernel modules. 1061 rumptest Do a linktest for rump (for developers). 1062 sets Create binary sets in 1063 RELEASEDIR/RELEASEMACHINEDIR/binary/sets. 1064 DESTDIR should be populated beforehand. 1065 sourcesets Create source sets in RELEASEDIR/source/sets. 1066 syspkgs Create syspkgs in 1067 RELEASEDIR/RELEASEMACHINEDIR/binary/syspkgs. 1068 iso-image Create CD-ROM image in RELEASEDIR/images. 1069 iso-image-source Create CD-ROM image with source in RELEASEDIR/images. 1070 live-image Create bootable live image in 1071 RELEASEDIR/RELEASEMACHINEDIR/installation/liveimage. 1072 install-image Create bootable installation image in 1073 RELEASEDIR/RELEASEMACHINEDIR/installation/installimage. 1074 disk-image=target Create bootable disk image in 1075 RELEASEDIR/RELEASEMACHINEDIR/binary/gzimg/target.img.gz. 1076 params Display various make(1) parameters. 1077 list-arch Display a list of valid MACHINE/MACHINE_ARCH values, 1078 and exit. The list may be narrowed by passing glob 1079 patterns or exact values in MACHINE or MACHINE_ARCH. 1080 1081 Options: 1082 -a arch Set MACHINE_ARCH to arch. [Default: deduced from MACHINE] 1083 -B buildid Set BUILDID to buildid. 1084 -C cdextras Append cdextras to CDEXTRA variable for inclusion on CD-ROM. 1085 -D dest Set DESTDIR to dest. [Default: destdir.MACHINE] 1086 -E Set "expert" mode; disables various safety checks. 1087 Should not be used without expert knowledge of the build system. 1088 -h Print this help message. 1089 -j njob Run up to njob jobs in parallel; see make(1) -j. 1090 -M obj Set obj root directory to obj; sets MAKEOBJDIRPREFIX. 1091 Unsets MAKEOBJDIR. 1092 -m mach Set MACHINE to mach. Some mach values are actually 1093 aliases that set MACHINE/MACHINE_ARCH pairs. 1094 [Default: deduced from the host system if the host 1095 OS is NetBSD] 1096 -N noisy Set the noisyness (MAKEVERBOSE) level of the build: 1097 0 Minimal output ("quiet") 1098 1 Describe what is occurring 1099 2 Describe what is occurring and echo the actual command 1100 3 Ignore the effect of the "@" prefix in make commands 1101 4 Trace shell commands using the shell's -x flag 1102 [Default: 2] 1103 -n Show commands that would be executed, but do not execute them. 1104 -O obj Set obj root directory to obj; sets a MAKEOBJDIR pattern. 1105 Unsets MAKEOBJDIRPREFIX. 1106 -o Set MKOBJDIRS=no; do not create objdirs at start of build. 1107 -P Set MKREPRO and MKREPRO_TIMESTAMP to the latest source 1108 CVS timestamp for reproducible builds. 1109 -R release Set RELEASEDIR to release. [Default: releasedir] 1110 -r Remove contents of TOOLDIR and DESTDIR before building. 1111 -S seed Set BUILDSEED to seed. [Default: NetBSD-majorversion] 1112 -T tools Set TOOLDIR to tools. If unset, and TOOLDIR is not set in 1113 the environment, ${toolprefix}make will be (re)built 1114 unconditionally. 1115 -U Set MKUNPRIVED=yes; build without requiring root privileges, 1116 install from an UNPRIVED build with proper file permissions. 1117 -u Set MKUPDATE=yes; do not run "make cleandir" first. 1118 Without this, everything is rebuilt, including the tools. 1119 -V var=[value] Set variable \`var' to \`value'. 1120 -w wrapper Create ${toolprefix}make script as wrapper. 1121 [Default: \${TOOLDIR}/bin/${toolprefix}make-\${MACHINE}] 1122 -X x11src Set X11SRCDIR to x11src. [Default: /usr/xsrc] 1123 -x Set MKX11=yes; build X11 from X11SRCDIR 1124 -Y extsrcsrc Set EXTSRCSRCDIR to extsrcsrc. [Default: /usr/extsrc] 1125 -y Set MKEXTSRC=yes; build extsrc from EXTSRCSRCDIR 1126 -Z var Unset ("zap") variable \`var'. 1127 1128_usage_ 1129 exit 1 1130} 1131 1132parseoptions() 1133{ 1134 opts='a:B:C:D:Ehj:M:m:N:nO:oPR:rS:T:UuV:w:X:xY:yZ:' 1135 opt_a=false 1136 opt_m=false 1137 1138 if type getopts >/dev/null 2>&1; then 1139 # Use POSIX getopts. 1140 # 1141 getoptcmd='getopts ${opts} opt && opt=-${opt}' 1142 optargcmd=':' 1143 optremcmd='shift $((${OPTIND} -1))' 1144 else 1145 type getopt >/dev/null 2>&1 || 1146 bomb "Shell does not support getopts or getopt" 1147 1148 # Use old-style getopt(1) (doesn't handle whitespace in args). 1149 # 1150 args="$(getopt ${opts} $*)" 1151 [ $? = 0 ] || usage 1152 set -- ${args} 1153 1154 getoptcmd='[ $# -gt 0 ] && opt="$1" && shift' 1155 optargcmd='OPTARG="$1"; shift' 1156 optremcmd=':' 1157 fi 1158 1159 # Parse command line options. 1160 # 1161 while eval ${getoptcmd}; do 1162 case ${opt} in 1163 1164 -a) 1165 eval ${optargcmd} 1166 MACHINE_ARCH=${OPTARG} 1167 opt_a=true 1168 ;; 1169 1170 -B) 1171 eval ${optargcmd} 1172 BUILDID=${OPTARG} 1173 ;; 1174 1175 -C) 1176 eval ${optargcmd}; resolvepaths OPTARG 1177 CDEXTRA="${CDEXTRA}${CDEXTRA:+ }${OPTARG}" 1178 ;; 1179 1180 -D) 1181 eval ${optargcmd}; resolvepath OPTARG 1182 setmakeenv DESTDIR "${OPTARG}" 1183 ;; 1184 1185 -E) 1186 do_expertmode=true 1187 ;; 1188 1189 -j) 1190 eval ${optargcmd} 1191 parallel="-j ${OPTARG}" 1192 ;; 1193 1194 -M) 1195 eval ${optargcmd}; resolvepath OPTARG 1196 case "${OPTARG}" in 1197 \$*) usage "-M argument must not begin with '\$'" 1198 ;; 1199 *\$*) # can use resolvepath, but can't set TOP_objdir 1200 resolvepath OPTARG 1201 ;; 1202 *) resolvepath OPTARG 1203 TOP_objdir="${OPTARG}${TOP}" 1204 ;; 1205 esac 1206 unsetmakeenv MAKEOBJDIR 1207 setmakeenv MAKEOBJDIRPREFIX "${OPTARG}" 1208 ;; 1209 1210 # -m overrides MACHINE_ARCH unless "-a" is specified 1211 -m) 1212 eval ${optargcmd} 1213 MACHINE="${OPTARG}" 1214 opt_m=true 1215 ;; 1216 1217 -N) 1218 eval ${optargcmd} 1219 case "${OPTARG}" in 1220 0|1|2|3|4) 1221 setmakeenv MAKEVERBOSE "${OPTARG}" 1222 ;; 1223 *) 1224 usage "'${OPTARG}' is not a valid value for -N" 1225 ;; 1226 esac 1227 ;; 1228 1229 -n) 1230 runcmd=echo 1231 ;; 1232 1233 -O) 1234 eval ${optargcmd} 1235 case "${OPTARG}" in 1236 *\$*) usage "-O argument must not contain '\$'" 1237 ;; 1238 *) resolvepath OPTARG 1239 TOP_objdir="${OPTARG}" 1240 ;; 1241 esac 1242 unsetmakeenv MAKEOBJDIRPREFIX 1243 setmakeenv MAKEOBJDIR "\${.CURDIR:C,^$TOP,$OPTARG,}" 1244 ;; 1245 1246 -o) 1247 MKOBJDIRS=no 1248 ;; 1249 1250 -P) 1251 MKREPRO=yes 1252 ;; 1253 1254 -R) 1255 eval ${optargcmd}; resolvepath OPTARG 1256 setmakeenv RELEASEDIR "${OPTARG}" 1257 ;; 1258 1259 -r) 1260 do_removedirs=true 1261 do_rebuildmake=true 1262 ;; 1263 1264 -S) 1265 eval ${optargcmd} 1266 setmakeenv BUILDSEED "${OPTARG}" 1267 ;; 1268 1269 -T) 1270 eval ${optargcmd}; resolvepath OPTARG 1271 TOOLDIR="${OPTARG}" 1272 export TOOLDIR 1273 ;; 1274 1275 -U) 1276 setmakeenv MKUNPRIVED yes 1277 ;; 1278 1279 -u) 1280 setmakeenv MKUPDATE yes 1281 ;; 1282 1283 -V) 1284 eval ${optargcmd} 1285 case "${OPTARG}" in 1286 # XXX: consider restricting which variables can be changed? 1287 [a-zA-Z_]*=*) 1288 safe_setmakeenv "${OPTARG%%=*}" "${OPTARG#*=}" 1289 ;; 1290 [a-zA-Z_]*) 1291 safe_setmakeenv "${OPTARG}" "" 1292 ;; 1293 *) 1294 usage "-V argument must be of the form 'var[=value]'" 1295 ;; 1296 esac 1297 ;; 1298 1299 -w) 1300 eval ${optargcmd}; resolvepath OPTARG 1301 makewrapper="${OPTARG}" 1302 ;; 1303 1304 -X) 1305 eval ${optargcmd}; resolvepath OPTARG 1306 setmakeenv X11SRCDIR "${OPTARG}" 1307 ;; 1308 1309 -x) 1310 setmakeenv MKX11 yes 1311 ;; 1312 1313 -Y) 1314 eval ${optargcmd}; resolvepath OPTARG 1315 setmakeenv EXTSRCSRCDIR "${OPTARG}" 1316 ;; 1317 1318 -y) 1319 setmakeenv MKEXTSRC yes 1320 ;; 1321 1322 -Z) 1323 eval ${optargcmd} 1324 # XXX: consider restricting which variables can be unset? 1325 safe_unsetmakeenv "${OPTARG}" 1326 ;; 1327 1328 --) 1329 break 1330 ;; 1331 1332 -'?'|-h) 1333 usage 1334 ;; 1335 1336 esac 1337 done 1338 1339 # Validate operations. 1340 # 1341 eval ${optremcmd} 1342 while [ $# -gt 0 ]; do 1343 op=$1; shift 1344 operations="${operations} ${op}" 1345 1346 case "${op}" in 1347 1348 help) 1349 usage 1350 ;; 1351 1352 list-arch) 1353 listarch "${MACHINE}" "${MACHINE_ARCH}" 1354 exit $? 1355 ;; 1356 1357 kernel=*|releasekernel=*|kernel.gdb=*) 1358 arg=${op#*=} 1359 op=${op%%=*} 1360 [ -n "${arg}" ] || 1361 bomb "Must supply a kernel name with \`${op}=...'" 1362 ;; 1363 1364 disk-image=*) 1365 arg=${op#*=} 1366 op=disk_image 1367 [ -n "${arg}" ] || 1368 bomb "Must supply a target name with \`${op}=...'" 1369 1370 ;; 1371 1372 install=*|installmodules=*) 1373 arg=${op#*=} 1374 op=${op%%=*} 1375 [ -n "${arg}" ] || 1376 bomb "Must supply a directory with \`install=...'" 1377 ;; 1378 1379 build|\ 1380 cleandir|\ 1381 distribution|\ 1382 install-image|\ 1383 iso-image-source|\ 1384 iso-image|\ 1385 kernels|\ 1386 libs|\ 1387 live-image|\ 1388 makewrapper|\ 1389 modules|\ 1390 obj|\ 1391 params|\ 1392 release|\ 1393 rump|\ 1394 rumptest|\ 1395 sets|\ 1396 sourcesets|\ 1397 syspkgs|\ 1398 tools) 1399 ;; 1400 1401 *) 1402 usage "Unknown operation \`${op}'" 1403 ;; 1404 1405 esac 1406 # ${op} may contain chars that are not allowed in variable 1407 # names. Replace them with '_' before setting do_${op}. 1408 op="$( echo "$op" | tr -s '.-' '__')" 1409 eval do_${op}=true 1410 done 1411 [ -n "${operations}" ] || usage "Missing operation to perform." 1412 1413 # Set up MACHINE*. On a NetBSD host, these are allowed to be unset. 1414 # 1415 if [ -z "${MACHINE}" ]; then 1416 [ "${uname_s}" = "NetBSD" ] || 1417 bomb "MACHINE must be set, or -m must be used, for cross builds." 1418 MACHINE=${uname_m} 1419 MACHINE_ARCH=${uname_p} 1420 fi 1421 if $opt_m && ! $opt_a; then 1422 # Settings implied by the command line -m option 1423 # override MACHINE_ARCH from the environment (if any). 1424 getarch 1425 fi 1426 [ -n "${MACHINE_ARCH}" ] || getarch 1427 validatearch 1428 1429 # Set up default make(1) environment. 1430 # 1431 makeenv="${makeenv} TOOLDIR MACHINE MACHINE_ARCH MAKEFLAGS" 1432 [ -z "${BUILDID}" ] || makeenv="${makeenv} BUILDID" 1433 [ -z "${BUILDINFO}" ] || makeenv="${makeenv} BUILDINFO" 1434 MAKEFLAGS="-de -m ${TOP}/share/mk ${MAKEFLAGS}" 1435 MAKEFLAGS="${MAKEFLAGS} MKOBJDIRS=${MKOBJDIRS-yes}" 1436 export MAKEFLAGS MACHINE MACHINE_ARCH 1437 setmakeenv USETOOLS "yes" 1438 setmakeenv MAKEWRAPPERMACHINE "${makewrappermachine:-${MACHINE}}" 1439} 1440 1441# sanitycheck -- 1442# Sanity check after parsing command line options, before rebuildmake. 1443# 1444sanitycheck() 1445{ 1446 # Install as non-root is a bad idea. 1447 # 1448 if ${do_install} && [ "$id_u" -ne 0 ] ; then 1449 if ${do_expertmode}; then 1450 warning "Will install as an unprivileged user." 1451 else 1452 bomb "-E must be set for install as an unprivileged user." 1453 fi 1454 fi 1455 1456 # If the PATH contains any non-absolute components (including, 1457 # but not limited to, "." or ""), then complain. As an exception, 1458 # allow "" or "." as the last component of the PATH. This is fatal 1459 # if expert mode is not in effect. 1460 # 1461 local path="${PATH}" 1462 path="${path%:}" # delete trailing ":" 1463 path="${path%:.}" # delete trailing ":." 1464 case ":${path}:/" in 1465 *:[!/]*) 1466 if ${do_expertmode}; then 1467 warning "PATH contains non-absolute components" 1468 else 1469 bomb "PATH environment variable must not" \ 1470 "contain non-absolute components" 1471 fi 1472 ;; 1473 esac 1474 1475 while [ ${MKX11-no} = "yes" ]; do # not really a loop 1476 test -n "${X11SRCDIR}" && { 1477 test -d "${X11SRCDIR}" || 1478 bomb "X11SRCDIR (${X11SRCDIR}) does not exist (with -x)" 1479 break 1480 } 1481 for _xd in \ 1482 "${NETBSDSRCDIR%/*}/xsrc" \ 1483 "${NETBSDSRCDIR}/xsrc" \ 1484 /usr/xsrc 1485 do 1486 test -d "${_xd}" && 1487 setmakeenv X11SRCDIR "${_xd}" && 1488 break 2 1489 done 1490 bomb "Asked to build X11 but no xsrc" 1491 done 1492} 1493 1494# print_tooldir_make -- 1495# Try to find and print a path to an existing 1496# ${TOOLDIR}/bin/${toolprefix}program 1497print_tooldir_program() 1498{ 1499 local possible_TOP_OBJ 1500 local possible_TOOLDIR 1501 local possible_program 1502 local tooldir_program 1503 local program=${1} 1504 1505 if [ -n "${TOOLDIR}" ]; then 1506 echo "${TOOLDIR}/bin/${toolprefix}${program}" 1507 return 1508 fi 1509 1510 # Set host_ostype to something like "NetBSD-4.5.6-i386". This 1511 # is intended to match the HOST_OSTYPE variable in <bsd.own.mk>. 1512 # 1513 local host_ostype="${uname_s}-$( 1514 echo "${uname_r}" | sed -e 's/([^)]*)//g' -e 's/ /_/g' 1515 )-$( 1516 echo "${uname_p}" | sed -e 's/([^)]*)//g' -e 's/ /_/g' 1517 )" 1518 1519 # Look in a few potential locations for 1520 # ${possible_TOOLDIR}/bin/${toolprefix}${program}. 1521 # If we find it, then set possible_program. 1522 # 1523 # In the usual case (without interference from environment 1524 # variables or /etc/mk.conf), <bsd.own.mk> should set TOOLDIR to 1525 # "${_SRC_TOP_OBJ_}/tooldir.${host_ostype}". 1526 # 1527 # In practice it's difficult to figure out the correct value 1528 # for _SRC_TOP_OBJ_. In the easiest case, when the -M or -O 1529 # options were passed to build.sh, then ${TOP_objdir} will be 1530 # the correct value. We also try a few other possibilities, but 1531 # we do not replicate all the logic of <bsd.obj.mk>. 1532 # 1533 for possible_TOP_OBJ in \ 1534 "${TOP_objdir}" \ 1535 "${MAKEOBJDIRPREFIX:+${MAKEOBJDIRPREFIX}${TOP}}" \ 1536 "${TOP}" \ 1537 "${TOP}/obj" \ 1538 "${TOP}/obj.${MACHINE}" 1539 do 1540 [ -n "${possible_TOP_OBJ}" ] || continue 1541 possible_TOOLDIR="${possible_TOP_OBJ}/tooldir.${host_ostype}" 1542 possible_program="${possible_TOOLDIR}/bin/${toolprefix}${program}" 1543 if [ -x "${possible_make}" ]; then 1544 echo ${possible_program} 1545 return; 1546 fi 1547 done 1548 echo "" 1549} 1550# print_tooldir_make -- 1551# Try to find and print a path to an existing 1552# ${TOOLDIR}/bin/${toolprefix}make, for use by rebuildmake() before a 1553# new version of ${toolprefix}make has been built. 1554# 1555# * If TOOLDIR was set in the environment or on the command line, use 1556# that value. 1557# * Otherwise try to guess what TOOLDIR would be if not overridden by 1558# /etc/mk.conf, and check whether the resulting directory contains 1559# a copy of ${toolprefix}make (this should work for everybody who 1560# doesn't override TOOLDIR via /etc/mk.conf); 1561# * Failing that, search for ${toolprefix}make, nbmake, bmake, or make, 1562# in the PATH (this might accidentally find a version of make that 1563# does not understand the syntax used by NetBSD make, and that will 1564# lead to failure in the next step); 1565# * If a copy of make was found above, try to use it with 1566# nobomb_getmakevar to find the correct value for TOOLDIR, and believe the 1567# result only if it's a directory that already exists; 1568# * If a value of TOOLDIR was found above, and if 1569# ${TOOLDIR}/bin/${toolprefix}make exists, print that value. 1570# 1571print_tooldir_make() 1572{ 1573 local possible_make 1574 local possible_TOOLDIR 1575 local tooldir_make 1576 1577 possible_make=$(print_tooldir_program make) 1578 # If the above didn't work, search the PATH for a suitable 1579 # ${toolprefix}make, nbmake, bmake, or make. 1580 # 1581 : ${possible_make:=$(find_in_PATH ${toolprefix}make '')} 1582 : ${possible_make:=$(find_in_PATH nbmake '')} 1583 : ${possible_make:=$(find_in_PATH bmake '')} 1584 : ${possible_make:=$(find_in_PATH make '')} 1585 1586 # At this point, we don't care whether possible_make is in the 1587 # correct TOOLDIR or not; we simply want it to be usable by 1588 # getmakevar to help us find the correct TOOLDIR. 1589 # 1590 # Use ${possible_make} with nobomb_getmakevar to try to find 1591 # the value of TOOLDIR. Believe the result only if it's 1592 # a directory that already exists and contains bin/${toolprefix}make. 1593 # 1594 if [ -x "${possible_make}" ]; then 1595 possible_TOOLDIR="$( 1596 make="${possible_make}" \ 1597 nobomb_getmakevar TOOLDIR 2>/dev/null 1598 )" 1599 if [ $? = 0 ] && [ -n "${possible_TOOLDIR}" ] \ 1600 && [ -d "${possible_TOOLDIR}" ]; 1601 then 1602 tooldir_make="${possible_TOOLDIR}/bin/${toolprefix}make" 1603 if [ -x "${tooldir_make}" ]; then 1604 echo "${tooldir_make}" 1605 return 0 1606 fi 1607 fi 1608 fi 1609 return 1 1610} 1611 1612# rebuildmake -- 1613# Rebuild nbmake in a temporary directory if necessary. Sets $make 1614# to a path to the nbmake executable. Sets done_rebuildmake=true 1615# if nbmake was rebuilt. 1616# 1617# There is a cyclic dependency between building nbmake and choosing 1618# TOOLDIR: TOOLDIR may be affected by settings in /etc/mk.conf, so we 1619# would like to use getmakevar to get the value of TOOLDIR; but we can't 1620# use getmakevar before we have an up to date version of nbmake; we 1621# might already have an up to date version of nbmake in TOOLDIR, but we 1622# don't yet know where TOOLDIR is. 1623# 1624# The default value of TOOLDIR also depends on the location of the top 1625# level object directory, so $(getmakevar TOOLDIR) invoked before or 1626# after making the top level object directory may produce different 1627# results. 1628# 1629# Strictly speaking, we should do the following: 1630# 1631# 1. build a new version of nbmake in a temporary directory; 1632# 2. use the temporary nbmake to create the top level obj directory; 1633# 3. use $(getmakevar TOOLDIR) with the temporary nbmake to 1634# get the correct value of TOOLDIR; 1635# 4. move the temporary nbmake to ${TOOLDIR}/bin/nbmake. 1636# 1637# However, people don't like building nbmake unnecessarily if their 1638# TOOLDIR has not changed since an earlier build. We try to avoid 1639# rebuilding a temporary version of nbmake by taking some shortcuts to 1640# guess a value for TOOLDIR, looking for an existing version of nbmake 1641# in that TOOLDIR, and checking whether that nbmake is newer than the 1642# sources used to build it. 1643# 1644rebuildmake() 1645{ 1646 make="$(print_tooldir_make)" 1647 if [ -n "${make}" ] && [ -x "${make}" ]; then 1648 for f in usr.bin/make/*.[ch] usr.bin/make/lst.lib/*.[ch]; do 1649 if [ "${f}" -nt "${make}" ]; then 1650 statusmsg "${make} outdated" \ 1651 "(older than ${f}), needs building." 1652 do_rebuildmake=true 1653 break 1654 fi 1655 done 1656 else 1657 statusmsg "No \$TOOLDIR/bin/${toolprefix}make, needs building." 1658 do_rebuildmake=true 1659 fi 1660 1661 # Build bootstrap ${toolprefix}make if needed. 1662 if ! ${do_rebuildmake}; then 1663 return 1664 fi 1665 1666 statusmsg "Bootstrapping ${toolprefix}make" 1667 ${runcmd} cd "${tmpdir}" 1668 ${runcmd} env CC="${HOST_CC-cc}" CPPFLAGS="${HOST_CPPFLAGS}" \ 1669 CFLAGS="${HOST_CFLAGS--O}" LDFLAGS="${HOST_LDFLAGS}" \ 1670 ${HOST_SH} "${TOP}/tools/make/configure" || 1671 ( cp ${tmpdir}/config.log ${tmpdir}-config.log 1672 bomb "Configure of ${toolprefix}make failed, see ${tmpdir}-config.log for details" ) 1673 ${runcmd} ${HOST_SH} buildmake.sh || 1674 bomb "Build of ${toolprefix}make failed" 1675 make="${tmpdir}/${toolprefix}make" 1676 ${runcmd} cd "${TOP}" 1677 ${runcmd} rm -f usr.bin/make/*.o usr.bin/make/lst.lib/*.o 1678 done_rebuildmake=true 1679} 1680 1681# validatemakeparams -- 1682# Perform some late sanity checks, after rebuildmake, 1683# but before createmakewrapper or any real work. 1684# 1685# Creates the top-level obj directory, because that 1686# is needed by some of the sanity checks. 1687# 1688# Prints status messages reporting the values of several variables. 1689# 1690validatemakeparams() 1691{ 1692 # MAKECONF (which defaults to /etc/mk.conf in share/mk/bsd.own.mk) 1693 # can affect many things, so mention it in an early status message. 1694 # 1695 MAKECONF=$(getmakevar MAKECONF) 1696 if [ -e "${MAKECONF}" ]; then 1697 statusmsg2 "MAKECONF file:" "${MAKECONF}" 1698 else 1699 statusmsg2 "MAKECONF file:" "${MAKECONF} (File not found)" 1700 fi 1701 1702 # Normalise MKOBJDIRS, MKUNPRIVED, and MKUPDATE. 1703 # These may be set as build.sh options or in "mk.conf". 1704 # Don't export them as they're only used for tests in build.sh. 1705 # 1706 MKOBJDIRS=$(getmakevar MKOBJDIRS) 1707 MKUNPRIVED=$(getmakevar MKUNPRIVED) 1708 MKUPDATE=$(getmakevar MKUPDATE) 1709 1710 # Non-root should always use either the -U or -E flag. 1711 # 1712 if ! ${do_expertmode} && \ 1713 [ "$id_u" -ne 0 ] && \ 1714 [ "${MKUNPRIVED}" = "no" ] ; then 1715 bomb "-U or -E must be set for build as an unprivileged user." 1716 fi 1717 1718 if [ "${runcmd}" = "echo" ]; then 1719 TOOLCHAIN_MISSING=no 1720 EXTERNAL_TOOLCHAIN="" 1721 else 1722 TOOLCHAIN_MISSING=$(bomb_getmakevar TOOLCHAIN_MISSING) 1723 EXTERNAL_TOOLCHAIN=$(bomb_getmakevar EXTERNAL_TOOLCHAIN) 1724 fi 1725 if [ "${TOOLCHAIN_MISSING}" = "yes" ] && \ 1726 [ -z "${EXTERNAL_TOOLCHAIN}" ]; then 1727 ${runcmd} echo "ERROR: build.sh (in-tree cross-toolchain) is not yet available for" 1728 ${runcmd} echo " MACHINE: ${MACHINE}" 1729 ${runcmd} echo " MACHINE_ARCH: ${MACHINE_ARCH}" 1730 ${runcmd} echo "" 1731 ${runcmd} echo "All builds for this platform should be done via a traditional make" 1732 ${runcmd} echo "If you wish to use an external cross-toolchain, set" 1733 ${runcmd} echo " EXTERNAL_TOOLCHAIN=<path to toolchain root>" 1734 ${runcmd} echo "in either the environment or mk.conf and rerun" 1735 ${runcmd} echo " ${progname} $*" 1736 exit 1 1737 fi 1738 1739 if [ "${MKOBJDIRS}" != "no" ]; then 1740 # Create the top-level object directory. 1741 # 1742 # "make obj NOSUBDIR=" can handle most cases, but it 1743 # can't handle the case where MAKEOBJDIRPREFIX is set 1744 # while the corresponding directory does not exist 1745 # (rules in <bsd.obj.mk> would abort the build). We 1746 # therefore have to handle the MAKEOBJDIRPREFIX case 1747 # without invoking "make obj". The MAKEOBJDIR case 1748 # could be handled either way, but we choose to handle 1749 # it similarly to MAKEOBJDIRPREFIX. 1750 # 1751 if [ -n "${TOP_obj}" ]; then 1752 # It must have been set by the "-M" or "-O" 1753 # command line options, so there's no need to 1754 # use getmakevar 1755 : 1756 elif [ -n "$MAKEOBJDIRPREFIX" ]; then 1757 TOP_obj="$(getmakevar MAKEOBJDIRPREFIX)${TOP}" 1758 elif [ -n "$MAKEOBJDIR" ]; then 1759 TOP_obj="$(getmakevar MAKEOBJDIR)" 1760 fi 1761 if [ -n "$TOP_obj" ]; then 1762 ${runcmd} mkdir -p "${TOP_obj}" || 1763 bomb "Can't create top level object directory" \ 1764 "${TOP_obj}" 1765 else 1766 ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= || 1767 bomb "Can't create top level object directory" \ 1768 "using make obj" 1769 fi 1770 1771 # make obj in tools to ensure that the objdir for "tools" 1772 # is available. 1773 # 1774 ${runcmd} cd tools 1775 ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= || 1776 bomb "Failed to make obj in tools" 1777 ${runcmd} cd "${TOP}" 1778 fi 1779 1780 # Find TOOLDIR, DESTDIR, and RELEASEDIR, according to getmakevar, 1781 # and bomb if they have changed from the values we had from the 1782 # command line or environment. 1783 # 1784 # This must be done after creating the top-level object directory. 1785 # 1786 for var in TOOLDIR DESTDIR RELEASEDIR 1787 do 1788 eval oldval=\"\$${var}\" 1789 newval="$(getmakevar $var)" 1790 if ! $do_expertmode; then 1791 : ${_SRC_TOP_OBJ_:=$(getmakevar _SRC_TOP_OBJ_)} 1792 case "$var" in 1793 DESTDIR) 1794 : ${newval:=${_SRC_TOP_OBJ_}/destdir.${MACHINE}} 1795 makeenv="${makeenv} DESTDIR" 1796 ;; 1797 RELEASEDIR) 1798 : ${newval:=${_SRC_TOP_OBJ_}/releasedir} 1799 makeenv="${makeenv} RELEASEDIR" 1800 ;; 1801 esac 1802 fi 1803 if [ -n "$oldval" ] && [ "$oldval" != "$newval" ]; then 1804 bomb "Value of ${var} has changed" \ 1805 "(was \"${oldval}\", now \"${newval}\")" 1806 fi 1807 eval ${var}=\"\${newval}\" 1808 eval export ${var} 1809 statusmsg2 "${var} path:" "${newval}" 1810 done 1811 1812 # RELEASEMACHINEDIR is just a subdir name, e.g. "i386". 1813 RELEASEMACHINEDIR=$(getmakevar RELEASEMACHINEDIR) 1814 1815 # Check validity of TOOLDIR and DESTDIR. 1816 # 1817 if [ -z "${TOOLDIR}" ] || [ "${TOOLDIR}" = "/" ]; then 1818 bomb "TOOLDIR '${TOOLDIR}' invalid" 1819 fi 1820 removedirs="${TOOLDIR}" 1821 1822 if [ -z "${DESTDIR}" ] || [ "${DESTDIR}" = "/" ]; then 1823 if ${do_distribution} || ${do_release} || \ 1824 [ "${uname_s}" != "NetBSD" ] || \ 1825 [ "${uname_m}" != "${MACHINE}" ]; then 1826 bomb "DESTDIR must != / for cross builds, or ${progname} 'distribution' or 'release'." 1827 fi 1828 if ! ${do_expertmode}; then 1829 bomb "DESTDIR must != / for non -E (expert) builds" 1830 fi 1831 statusmsg "WARNING: Building to /, in expert mode." 1832 statusmsg " This may cause your system to break! Reasons include:" 1833 statusmsg " - your kernel is not up to date" 1834 statusmsg " - the libraries or toolchain have changed" 1835 statusmsg " YOU HAVE BEEN WARNED!" 1836 else 1837 removedirs="${removedirs} ${DESTDIR}" 1838 fi 1839 if ${do_releasekernel} && [ -z "${RELEASEDIR}" ]; then 1840 bomb "Must set RELEASEDIR with \`releasekernel=...'" 1841 fi 1842 1843 # If a previous build.sh run used -U (and therefore created a 1844 # METALOG file), then most subsequent build.sh runs must also 1845 # use -U. If DESTDIR is about to be removed, then don't perform 1846 # this check. 1847 # 1848 case "${do_removedirs} ${removedirs} " in 1849 true*" ${DESTDIR} "*) 1850 # DESTDIR is about to be removed 1851 ;; 1852 *) 1853 if [ -e "${DESTDIR}/METALOG" ] && \ 1854 [ "${MKUNPRIVED}" = "no" ] ; then 1855 if $do_expertmode; then 1856 warning "A previous build.sh run specified -U." 1857 else 1858 bomb "A previous build.sh run specified -U; you must specify it again now." 1859 fi 1860 fi 1861 ;; 1862 esac 1863 1864 # live-image and install-image targets require binary sets 1865 # (actually DESTDIR/etc/mtree/set.* files) built with MKUNPRIVED. 1866 # If release operation is specified with live-image or install-image, 1867 # the release op should be performed with -U for later image ops. 1868 # 1869 if ${do_release} && ( ${do_live_image} || ${do_install_image} ) && \ 1870 [ "${MKUNPRIVED}" = "no" ] ; then 1871 bomb "-U must be specified on building release to create images later." 1872 fi 1873} 1874 1875 1876createmakewrapper() 1877{ 1878 # Remove the target directories. 1879 # 1880 if ${do_removedirs}; then 1881 for f in ${removedirs}; do 1882 statusmsg "Removing ${f}" 1883 ${runcmd} rm -r -f "${f}" 1884 done 1885 fi 1886 1887 # Recreate $TOOLDIR. 1888 # 1889 ${runcmd} mkdir -p "${TOOLDIR}/bin" || 1890 bomb "mkdir of '${TOOLDIR}/bin' failed" 1891 1892 # If we did not previously rebuild ${toolprefix}make, then 1893 # check whether $make is still valid and the same as the output 1894 # from print_tooldir_make. If not, then rebuild make now. A 1895 # possible reason for this being necessary is that the actual 1896 # value of TOOLDIR might be different from the value guessed 1897 # before the top level obj dir was created. 1898 # 1899 if ! ${done_rebuildmake} && \ 1900 ( [ ! -x "$make" ] || [ "$make" != "$(print_tooldir_make)" ] ) 1901 then 1902 rebuildmake 1903 fi 1904 1905 # Install ${toolprefix}make if it was built. 1906 # 1907 if ${done_rebuildmake}; then 1908 ${runcmd} rm -f "${TOOLDIR}/bin/${toolprefix}make" 1909 ${runcmd} cp "${make}" "${TOOLDIR}/bin/${toolprefix}make" || 1910 bomb "Failed to install \$TOOLDIR/bin/${toolprefix}make" 1911 make="${TOOLDIR}/bin/${toolprefix}make" 1912 statusmsg "Created ${make}" 1913 fi 1914 1915 # Build a ${toolprefix}make wrapper script, usable by hand as 1916 # well as by build.sh. 1917 # 1918 if [ -z "${makewrapper}" ]; then 1919 makewrapper="${TOOLDIR}/bin/${toolprefix}make-${makewrappermachine:-${MACHINE}}" 1920 [ -z "${BUILDID}" ] || makewrapper="${makewrapper}-${BUILDID}" 1921 fi 1922 1923 ${runcmd} rm -f "${makewrapper}" 1924 if [ "${runcmd}" = "echo" ]; then 1925 echo 'cat <<EOF >'${makewrapper} 1926 makewrapout= 1927 else 1928 makewrapout=">>\${makewrapper}" 1929 fi 1930 1931 case "${KSH_VERSION:-${SH_VERSION}}" in 1932 *PD\ KSH*|*MIRBSD\ KSH*) 1933 set +o braceexpand 1934 ;; 1935 esac 1936 1937 eval cat <<EOF ${makewrapout} 1938#! ${HOST_SH} 1939# Set proper variables to allow easy "make" building of a NetBSD subtree. 1940# Generated from: \$NetBSD: build.sh,v 1.333 2019/06/07 15:49:20 sborrill Exp $ 1941# with these arguments: ${_args} 1942# 1943 1944EOF 1945 { 1946 sorted_vars="$(for var in ${makeenv}; do echo "${var}" ; done \ 1947 | sort -u )" 1948 for var in ${sorted_vars}; do 1949 eval val=\"\${${var}}\" 1950 eval is_set=\"\${${var}+set}\" 1951 if [ -z "${is_set}" ]; then 1952 echo "unset ${var}" 1953 else 1954 qval="$(shell_quote "${val}")" 1955 echo "${var}=${qval}; export ${var}" 1956 fi 1957 done 1958 1959 cat <<EOF 1960 1961exec "\${TOOLDIR}/bin/${toolprefix}make" \${1+"\$@"} 1962EOF 1963 } | eval cat "${makewrapout}" 1964 [ "${runcmd}" = "echo" ] && echo EOF 1965 ${runcmd} chmod +x "${makewrapper}" 1966 statusmsg2 "Updated makewrapper:" "${makewrapper}" 1967} 1968 1969make_in_dir() 1970{ 1971 local dir="$1" 1972 local op="$2" 1973 ${runcmd} cd "${dir}" || 1974 bomb "Failed to cd to \"${dir}\"" 1975 ${runcmd} "${makewrapper}" ${parallel} ${op} || 1976 bomb "Failed to make ${op} in \"${dir}\"" 1977 ${runcmd} cd "${TOP}" || 1978 bomb "Failed to cd back to \"${TOP}\"" 1979} 1980 1981buildtools() 1982{ 1983 if [ "${MKOBJDIRS}" != "no" ]; then 1984 ${runcmd} "${makewrapper}" ${parallel} obj-tools || 1985 bomb "Failed to make obj-tools" 1986 fi 1987 if [ "${MKUPDATE}" = "no" ]; then 1988 make_in_dir tools cleandir 1989 fi 1990 make_in_dir tools build_install 1991 statusmsg "Tools built to ${TOOLDIR}" 1992} 1993 1994buildlibs() 1995{ 1996 if [ "${MKOBJDIRS}" != "no" ]; then 1997 ${runcmd} "${makewrapper}" ${parallel} obj || 1998 bomb "Failed to make obj" 1999 fi 2000 if [ "${MKUPDATE}" = "no" ]; then 2001 make_in_dir lib cleandir 2002 fi 2003 make_in_dir . do-distrib-dirs 2004 make_in_dir . includes 2005 make_in_dir . do-lib 2006 statusmsg "libs built" 2007} 2008 2009getkernelconf() 2010{ 2011 kernelconf="$1" 2012 if [ "${MKOBJDIRS}" != "no" ]; then 2013 # The correct value of KERNOBJDIR might 2014 # depend on a prior "make obj" in 2015 # ${KERNSRCDIR}/${KERNARCHDIR}/compile. 2016 # 2017 KERNSRCDIR="$(getmakevar KERNSRCDIR)" 2018 KERNARCHDIR="$(getmakevar KERNARCHDIR)" 2019 make_in_dir "${KERNSRCDIR}/${KERNARCHDIR}/compile" obj 2020 fi 2021 KERNCONFDIR="$(getmakevar KERNCONFDIR)" 2022 KERNOBJDIR="$(getmakevar KERNOBJDIR)" 2023 case "${kernelconf}" in 2024 */*) 2025 kernelconfpath="${kernelconf}" 2026 kernelconfname="${kernelconf##*/}" 2027 ;; 2028 *) 2029 kernelconfpath="${KERNCONFDIR}/${kernelconf}" 2030 kernelconfname="${kernelconf}" 2031 ;; 2032 esac 2033 kernelbuildpath="${KERNOBJDIR}/${kernelconfname}" 2034} 2035 2036diskimage() 2037{ 2038 ARG="$(echo $1 | tr '[:lower:]' '[:upper:]')" 2039 [ -f "${DESTDIR}/etc/mtree/set.base" ] || 2040 bomb "The release binaries must be built first" 2041 kerneldir="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel" 2042 kernel="${kerneldir}/netbsd-${ARG}.gz" 2043 [ -f "${kernel}" ] || 2044 bomb "The kernel ${kernel} must be built first" 2045 make_in_dir "${NETBSDSRCDIR}/etc" "smp_${1}" 2046} 2047 2048buildkernel() 2049{ 2050 if ! ${do_tools} && ! ${buildkernelwarned:-false}; then 2051 # Building tools every time we build a kernel is clearly 2052 # unnecessary. We could try to figure out whether rebuilding 2053 # the tools is necessary this time, but it doesn't seem worth 2054 # the trouble. Instead, we say it's the user's responsibility 2055 # to rebuild the tools if necessary. 2056 # 2057 statusmsg "Building kernel without building new tools" 2058 buildkernelwarned=true 2059 fi 2060 getkernelconf $1 2061 statusmsg2 "Building kernel:" "${kernelconf}" 2062 statusmsg2 "Build directory:" "${kernelbuildpath}" 2063 ${runcmd} mkdir -p "${kernelbuildpath}" || 2064 bomb "Cannot mkdir: ${kernelbuildpath}" 2065 if [ "${MKUPDATE}" = "no" ]; then 2066 make_in_dir "${kernelbuildpath}" cleandir 2067 fi 2068 [ -x "${TOOLDIR}/bin/${toolprefix}config" ] \ 2069 || bomb "${TOOLDIR}/bin/${toolprefix}config does not exist. You need to \"$0 tools\" first." 2070 CONFIGOPTS=$(getmakevar CONFIGOPTS) 2071 ${runcmd} "${TOOLDIR}/bin/${toolprefix}config" ${CONFIGOPTS} \ 2072 -b "${kernelbuildpath}" -s "${TOP}/sys" ${configopts} \ 2073 "${kernelconfpath}" || 2074 bomb "${toolprefix}config failed for ${kernelconf}" 2075 make_in_dir "${kernelbuildpath}" depend 2076 make_in_dir "${kernelbuildpath}" all 2077 2078 if [ "${runcmd}" != "echo" ]; then 2079 statusmsg "Kernels built from ${kernelconf}:" 2080 kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath}) 2081 for kern in ${kernlist:-netbsd}; do 2082 [ -f "${kernelbuildpath}/${kern}" ] && \ 2083 echo " ${kernelbuildpath}/${kern}" 2084 done | tee -a "${results}" 2085 fi 2086} 2087 2088releasekernel() 2089{ 2090 getkernelconf $1 2091 kernelreldir="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel" 2092 ${runcmd} mkdir -p "${kernelreldir}" 2093 kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath}) 2094 for kern in ${kernlist:-netbsd}; do 2095 builtkern="${kernelbuildpath}/${kern}" 2096 [ -f "${builtkern}" ] || continue 2097 releasekern="${kernelreldir}/${kern}-${kernelconfname}.gz" 2098 statusmsg2 "Kernel copy:" "${releasekern}" 2099 if [ "${runcmd}" = "echo" ]; then 2100 echo "gzip -c -9 < ${builtkern} > ${releasekern}" 2101 else 2102 gzip -c -9 < "${builtkern}" > "${releasekern}" 2103 fi 2104 done 2105} 2106 2107buildkernels() 2108{ 2109 allkernels=$( runcmd= make_in_dir etc '-V ${ALL_KERNELS}' ) 2110 for k in $allkernels; do 2111 buildkernel "${k}" 2112 done 2113} 2114 2115buildmodules() 2116{ 2117 setmakeenv MKBINUTILS no 2118 if ! ${do_tools} && ! ${buildmoduleswarned:-false}; then 2119 # Building tools every time we build modules is clearly 2120 # unnecessary as well as a kernel. 2121 # 2122 statusmsg "Building modules without building new tools" 2123 buildmoduleswarned=true 2124 fi 2125 2126 statusmsg "Building kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}" 2127 if [ "${MKOBJDIRS}" != "no" ]; then 2128 make_in_dir sys/modules obj 2129 fi 2130 if [ "${MKUPDATE}" = "no" ]; then 2131 make_in_dir sys/modules cleandir 2132 fi 2133 make_in_dir sys/modules dependall 2134 make_in_dir sys/modules install 2135 2136 statusmsg "Successful build of kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}" 2137} 2138 2139installmodules() 2140{ 2141 dir="$1" 2142 ${runcmd} "${makewrapper}" INSTALLMODULESDIR="${dir}" installmodules || 2143 bomb "Failed to make installmodules to ${dir}" 2144 statusmsg "Successful installmodules to ${dir}" 2145} 2146 2147installworld() 2148{ 2149 dir="$1" 2150 ${runcmd} "${makewrapper}" INSTALLWORLDDIR="${dir}" installworld || 2151 bomb "Failed to make installworld to ${dir}" 2152 statusmsg "Successful installworld to ${dir}" 2153} 2154 2155# Run rump build&link tests. 2156# 2157# To make this feasible for running without having to install includes and 2158# libraries into destdir (i.e. quick), we only run ld. This is possible 2159# since the rump kernel is a closed namespace apart from calls to rumpuser. 2160# Therefore, if ld complains only about rumpuser symbols, rump kernel 2161# linking was successful. 2162# 2163# We test that rump links with a number of component configurations. 2164# These attempt to mimic what is encountered in the full build. 2165# See list below. The list should probably be either autogenerated 2166# or managed elsewhere; keep it here until a better idea arises. 2167# 2168# Above all, note that THIS IS NOT A SUBSTITUTE FOR A FULL BUILD. 2169# 2170 2171RUMP_LIBSETS=' 2172 -lrump, 2173 -lrumpvfs -lrump, 2174 -lrumpvfs -lrumpdev -lrump, 2175 -lrumpnet -lrump, 2176 -lrumpkern_tty -lrumpvfs -lrump, 2177 -lrumpfs_tmpfs -lrumpvfs -lrump, 2178 -lrumpfs_ffs -lrumpfs_msdos -lrumpvfs -lrumpdev_disk -lrumpdev -lrump, 2179 -lrumpnet_virtif -lrumpnet_netinet -lrumpnet_net -lrumpnet 2180 -lrumpdev -lrumpvfs -lrump, 2181 -lrumpnet_sockin -lrumpfs_smbfs -lrumpdev_netsmb 2182 -lrumpkern_crypto -lrumpdev -lrumpnet -lrumpvfs -lrump, 2183 -lrumpnet_sockin -lrumpfs_nfs -lrumpnet -lrumpvfs -lrump, 2184 -lrumpdev_cgd -lrumpdev_raidframe -lrumpdev_disk -lrumpdev_rnd 2185 -lrumpdev_dm -lrumpdev -lrumpvfs -lrumpkern_crypto -lrump' 2186dorump() 2187{ 2188 local doclean="" 2189 local doobjs="" 2190 2191 # we cannot link libs without building csu, and that leads to lossage 2192 [ "${1}" != "rumptest" ] && bomb 'build.sh rump not yet functional. ' \ 2193 'did you mean "rumptest"?' 2194 2195 export RUMPKERN_ONLY=1 2196 # create obj and distrib dirs 2197 if [ "${MKOBJDIRS}" != "no" ]; then 2198 make_in_dir "${NETBSDSRCDIR}/etc/mtree" obj 2199 make_in_dir "${NETBSDSRCDIR}/sys/rump" obj 2200 fi 2201 ${runcmd} "${makewrapper}" ${parallel} do-distrib-dirs \ 2202 || bomb 'could not create distrib-dirs' 2203 2204 [ "${MKUPDATE}" = "no" ] && doclean="cleandir" 2205 targlist="${doclean} ${doobjs} dependall install" 2206 # optimize: for test we build only static libs (3x test speedup) 2207 if [ "${1}" = "rumptest" ] ; then 2208 setmakeenv NOPIC 1 2209 setmakeenv NOPROFILE 1 2210 fi 2211 for cmd in ${targlist} ; do 2212 make_in_dir "${NETBSDSRCDIR}/sys/rump" ${cmd} 2213 done 2214 2215 # if we just wanted to build & install rump, we're done 2216 [ "${1}" != "rumptest" ] && return 2217 2218 ${runcmd} cd "${NETBSDSRCDIR}/sys/rump/librump/rumpkern" \ 2219 || bomb "cd to rumpkern failed" 2220 md_quirks=`${runcmd} "${makewrapper}" -V '${_SYMQUIRK}'` 2221 # one little, two little, three little backslashes ... 2222 md_quirks="$(echo ${md_quirks} | sed 's,\\,\\\\,g'";s/'//g" )" 2223 ${runcmd} cd "${TOP}" || bomb "cd to ${TOP} failed" 2224 tool_ld=`${runcmd} "${makewrapper}" -V '${LD}'` 2225 2226 local oIFS="${IFS}" 2227 IFS="," 2228 for set in ${RUMP_LIBSETS} ; do 2229 IFS="${oIFS}" 2230 ${runcmd} ${tool_ld} -nostdlib -L${DESTDIR}/usr/lib \ 2231 -static --whole-archive ${set} 2>&1 -o /tmp/rumptest.$$ | \ 2232 awk -v quirks="${md_quirks}" ' 2233 /undefined reference/ && 2234 !/more undefined references.*follow/{ 2235 if (match($NF, 2236 "`(rumpuser_|rumpcomp_|__" quirks ")") == 0) 2237 fails[NR] = $0 2238 } 2239 /cannot find -l/{fails[NR] = $0} 2240 /cannot open output file/{fails[NR] = $0} 2241 END{ 2242 for (x in fails) 2243 print fails[x] 2244 exit x!=0 2245 }' 2246 [ $? -ne 0 ] && bomb "Testlink of rump failed: ${set}" 2247 done 2248 statusmsg "Rump build&link tests successful" 2249} 2250 2251setup_mkrepro() 2252{ 2253 if [ ${MKREPRO-no} != "yes" ]; then 2254 return 2255 fi 2256 local dirs=${NETBSDSRCDIR-/usr/src}/ 2257 if [ ${MKX11-no} = "yes" ]; then 2258 dirs="$dirs ${X11SRCDIR-/usr/xsrc}/" 2259 fi 2260 local cvslatest=$(print_tooldir_program cvslatest) 2261 if [ ! -x "${cvslatest}" ]; then 2262 buildtools 2263 fi 2264 MKREPRO_TIMESTAMP=$("${cvslatest}" ${dirs}) 2265 [ -n "${MKREPRO_TIMESTAMP}" ] || bomb "Failed to compute timestamp" 2266 statusmsg2 "MKREPRO_TIMESTAMP" "$(TZ=UTC date -r ${MKREPRO_TIMESTAMP})" 2267 export MKREPRO MKREPRO_TIMESTAMP 2268} 2269 2270main() 2271{ 2272 initdefaults 2273 _args=$@ 2274 parseoptions "$@" 2275 2276 sanitycheck 2277 2278 build_start=$(date) 2279 statusmsg2 "${progname} command:" "$0 $*" 2280 statusmsg2 "${progname} started:" "${build_start}" 2281 statusmsg2 "NetBSD version:" "${DISTRIBVER}" 2282 statusmsg2 "MACHINE:" "${MACHINE}" 2283 statusmsg2 "MACHINE_ARCH:" "${MACHINE_ARCH}" 2284 statusmsg2 "Build platform:" "${uname_s} ${uname_r} ${uname_m}" 2285 statusmsg2 "HOST_SH:" "${HOST_SH}" 2286 if [ -n "${BUILDID}" ]; then 2287 statusmsg2 "BUILDID:" "${BUILDID}" 2288 fi 2289 if [ -n "${BUILDINFO}" ]; then 2290 printf "%b\n" "${BUILDINFO}" | \ 2291 while read -r line ; do 2292 [ -s "${line}" ] && continue 2293 statusmsg2 "BUILDINFO:" "${line}" 2294 done 2295 fi 2296 2297 rebuildmake 2298 validatemakeparams 2299 createmakewrapper 2300 setup_mkrepro 2301 2302 # Perform the operations. 2303 # 2304 for op in ${operations}; do 2305 case "${op}" in 2306 2307 makewrapper) 2308 # no-op 2309 ;; 2310 2311 tools) 2312 buildtools 2313 ;; 2314 libs) 2315 buildlibs 2316 ;; 2317 2318 sets) 2319 statusmsg "Building sets from pre-populated ${DESTDIR}" 2320 ${runcmd} "${makewrapper}" ${parallel} ${op} || 2321 bomb "Failed to make ${op}" 2322 setdir=${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets 2323 statusmsg "Built sets to ${setdir}" 2324 ;; 2325 2326 build|distribution|release) 2327 ${runcmd} "${makewrapper}" ${parallel} ${op} || 2328 bomb "Failed to make ${op}" 2329 statusmsg "Successful make ${op}" 2330 ;; 2331 2332 cleandir|obj|sourcesets|syspkgs|params) 2333 ${runcmd} "${makewrapper}" ${parallel} ${op} || 2334 bomb "Failed to make ${op}" 2335 statusmsg "Successful make ${op}" 2336 ;; 2337 2338 iso-image|iso-image-source) 2339 ${runcmd} "${makewrapper}" ${parallel} \ 2340 CDEXTRA="$CDEXTRA" ${op} || 2341 bomb "Failed to make ${op}" 2342 statusmsg "Successful make ${op}" 2343 ;; 2344 2345 live-image|install-image) 2346 # install-image and live-image require mtree spec files 2347 # built with UNPRIVED. Assume UNPRIVED build has been 2348 # performed if METALOG file is created in DESTDIR. 2349 if [ ! -e "${DESTDIR}/METALOG" ] ; then 2350 bomb "The release binaries must have been built with -U to create images." 2351 fi 2352 ${runcmd} "${makewrapper}" ${parallel} ${op} || 2353 bomb "Failed to make ${op}" 2354 statusmsg "Successful make ${op}" 2355 ;; 2356 kernel=*) 2357 arg=${op#*=} 2358 buildkernel "${arg}" 2359 ;; 2360 kernel.gdb=*) 2361 arg=${op#*=} 2362 configopts="-D DEBUG=-g" 2363 buildkernel "${arg}" 2364 ;; 2365 releasekernel=*) 2366 arg=${op#*=} 2367 releasekernel "${arg}" 2368 ;; 2369 2370 kernels) 2371 buildkernels 2372 ;; 2373 2374 disk-image=*) 2375 arg=${op#*=} 2376 diskimage "${arg}" 2377 ;; 2378 2379 modules) 2380 buildmodules 2381 ;; 2382 2383 installmodules=*) 2384 arg=${op#*=} 2385 if [ "${arg}" = "/" ] && \ 2386 ( [ "${uname_s}" != "NetBSD" ] || \ 2387 [ "${uname_m}" != "${MACHINE}" ] ); then 2388 bomb "'${op}' must != / for cross builds." 2389 fi 2390 installmodules "${arg}" 2391 ;; 2392 2393 install=*) 2394 arg=${op#*=} 2395 if [ "${arg}" = "/" ] && \ 2396 ( [ "${uname_s}" != "NetBSD" ] || \ 2397 [ "${uname_m}" != "${MACHINE}" ] ); then 2398 bomb "'${op}' must != / for cross builds." 2399 fi 2400 installworld "${arg}" 2401 ;; 2402 2403 rump|rumptest) 2404 dorump "${op}" 2405 ;; 2406 2407 *) 2408 bomb "Unknown operation \`${op}'" 2409 ;; 2410 2411 esac 2412 done 2413 2414 statusmsg2 "${progname} ended:" "$(date)" 2415 if [ -s "${results}" ]; then 2416 echo "===> Summary of results:" 2417 sed -e 's/^===>//;s/^/ /' "${results}" 2418 echo "===> ." 2419 fi 2420} 2421 2422main "$@" 2423