build.sh revision 1.333.2.10 1 #! /usr/bin/env sh
2 # $NetBSD: build.sh,v 1.333.2.10 2025/07/08 15:26:32 martin 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
44 errmsg='' # error message, if not empty
45 shelltest=false # if true, exit after testing the shell
46 re_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.
51 case "$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 ;;
61 esac
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 #
67 if test -z "$errmsg"; then
68 if ( eval '! false' ) >/dev/null 2>&1 ; then
69 :
70 else
71 errmsg='Shell does not support "!".'
72 fi
73 fi
74
75 # Does the shell support functions?
76 #
77 if 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
84 fi
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 #
94 if 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
101 fi
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 #
108 if 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
117 fi
118
119 # Does the shell support IFS?
120 #
121 # zsh in normal mode (as opposed to "emulate sh" mode) fails this test.
122 #
123 if 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
131 fi
132
133 # Does the shell support ${1+"$@"}?
134 #
135 # Some versions of zsh fail this test, even in "emulate sh" mode.
136 #
137 if 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
145 fi
146
147 # Does the shell support $(...) command substitution?
148 #
149 if 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
156 fi
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 #
164 if 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
173 fi
174
175 # Does the shell support getopts or getopt?
176 #
177 if 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
184 fi
185
186 #
187 # If shelltest is true, exit now, reporting whether or not the shell is good.
188 #
189 if $shelltest; then
190 if test -n "$errmsg"; then
191 echo >&2 "$0: $errmsg"
192 exit 1
193 else
194 exit 0
195 fi
196 fi
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 #
204 if 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
221 EOF
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
239 The NetBSD build system requires a shell that supports modern POSIX
240 features, as well as the "local" keyword in functions (which is a
241 widely-implemented but non-standardised feature).
242
243 Please re-run this script under a suitable shell. For example:
244
245 /path/to/suitable/shell $0 ...
246
247 The above command will usually enable build.sh to automatically set
248 HOST_SH=/path/to/suitable/shell, but if that fails, then you may also
249 need 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 ...
254 EOF
255 exit 1
256 fi
257
258 #
259 # }}} End shell feature tests.
260 #
261
262 progname=${0##*/}
263 toppid=$$
264 results=/dev/null
265 tab=' '
266 nl='
267 '
268 trap "exit 1" 1 2 3 15
269
270 bomb()
271 {
272 cat >&2 <<ERRORMESSAGE
273
274 ERROR: $@
275 *** BUILD ABORTED ***
276 ERRORMESSAGE
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 #
290 shell_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
327 statusmsg()
328 {
329 ${runcmd} echo "===> $@" | tee -a "${results}"
330 }
331
332 statusmsg2()
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
355 warning()
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.
363 find_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.
382 set_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 #
450 initdefaults()
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 \
462 level 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 #
617 valid_MACHINE_ARCH='
618 MACHINE=acorn32 MACHINE_ARCH=arm
619 MACHINE=acorn32 MACHINE_ARCH=earmv4 ALIAS=eacorn32 DEFAULT
620 MACHINE=algor MACHINE_ARCH=mips64el ALIAS=algor64
621 MACHINE=algor MACHINE_ARCH=mipsel DEFAULT
622 MACHINE=alpha MACHINE_ARCH=alpha
623 MACHINE=amd64 MACHINE_ARCH=x86_64
624 MACHINE=amiga MACHINE_ARCH=m68k
625 MACHINE=amigappc MACHINE_ARCH=powerpc
626 MACHINE=arc MACHINE_ARCH=mips64el ALIAS=arc64
627 MACHINE=arc MACHINE_ARCH=mipsel DEFAULT
628 MACHINE=atari MACHINE_ARCH=m68k
629 MACHINE=bebox MACHINE_ARCH=powerpc
630 MACHINE=cats MACHINE_ARCH=arm ALIAS=ocats
631 MACHINE=cats MACHINE_ARCH=earmv4 ALIAS=ecats DEFAULT
632 MACHINE=cesfic MACHINE_ARCH=m68k
633 MACHINE=cobalt MACHINE_ARCH=mips64el ALIAS=cobalt64
634 MACHINE=cobalt MACHINE_ARCH=mipsel DEFAULT
635 MACHINE=dreamcast MACHINE_ARCH=sh3el
636 MACHINE=emips MACHINE_ARCH=mipseb
637 MACHINE=epoc32 MACHINE_ARCH=arm
638 MACHINE=epoc32 MACHINE_ARCH=earmv4 ALIAS=eepoc32 DEFAULT
639 MACHINE=evbarm MACHINE_ARCH=arm ALIAS=evboarm-el
640 MACHINE=evbarm MACHINE_ARCH=armeb ALIAS=evboarm-eb
641 MACHINE=evbarm MACHINE_ARCH=earm ALIAS=evbearm-el ALIAS=evbarm-el DEFAULT
642 MACHINE=evbarm MACHINE_ARCH=earmeb ALIAS=evbearm-eb ALIAS=evbarm-eb
643 MACHINE=evbarm MACHINE_ARCH=earmhf ALIAS=evbearmhf-el ALIAS=evbarmhf-el
644 MACHINE=evbarm MACHINE_ARCH=earmhfeb ALIAS=evbearmhf-eb ALIAS=evbarmhf-eb
645 MACHINE=evbarm MACHINE_ARCH=earmv4 ALIAS=evbearmv4-el ALIAS=evbarmv4-el
646 MACHINE=evbarm MACHINE_ARCH=earmv4eb ALIAS=evbearmv4-eb ALIAS=evbarmv4-eb
647 MACHINE=evbarm MACHINE_ARCH=earmv5 ALIAS=evbearmv5-el ALIAS=evbarmv5-el
648 MACHINE=evbarm MACHINE_ARCH=earmv5eb ALIAS=evbearmv5-eb ALIAS=evbarmv5-eb
649 MACHINE=evbarm MACHINE_ARCH=earmv6 ALIAS=evbearmv6-el ALIAS=evbarmv6-el
650 MACHINE=evbarm MACHINE_ARCH=earmv6hf ALIAS=evbearmv6hf-el ALIAS=evbarmv6hf-el
651 MACHINE=evbarm MACHINE_ARCH=earmv6eb ALIAS=evbearmv6-eb ALIAS=evbarmv6-eb
652 MACHINE=evbarm MACHINE_ARCH=earmv6hfeb ALIAS=evbearmv6hf-eb ALIAS=evbarmv6hf-eb
653 MACHINE=evbarm MACHINE_ARCH=earmv7 ALIAS=evbearmv7-el ALIAS=evbarmv7-el
654 MACHINE=evbarm MACHINE_ARCH=earmv7eb ALIAS=evbearmv7-eb ALIAS=evbarmv7-eb
655 MACHINE=evbarm MACHINE_ARCH=earmv7hf ALIAS=evbearmv7hf-el ALIAS=evbarmv7hf-el
656 MACHINE=evbarm MACHINE_ARCH=earmv7hfeb ALIAS=evbearmv7hf-eb ALIAS=evbarmv7hf-eb
657 MACHINE=evbarm MACHINE_ARCH=aarch64 ALIAS=evbarm64-el ALIAS=evbarm64 DEFAULT
658 MACHINE=evbarm MACHINE_ARCH=aarch64eb ALIAS=evbarm64-eb
659 MACHINE=evbcf MACHINE_ARCH=coldfire
660 MACHINE=evbmips MACHINE_ARCH= NO_DEFAULT
661 MACHINE=evbmips MACHINE_ARCH=mips64eb ALIAS=evbmips64-eb
662 MACHINE=evbmips MACHINE_ARCH=mips64el ALIAS=evbmips64-el
663 MACHINE=evbmips MACHINE_ARCH=mipseb ALIAS=evbmips-eb
664 MACHINE=evbmips MACHINE_ARCH=mipsel ALIAS=evbmips-el
665 MACHINE=evbppc MACHINE_ARCH=powerpc DEFAULT
666 MACHINE=evbppc MACHINE_ARCH=powerpc64 ALIAS=evbppc64
667 MACHINE=evbsh3 MACHINE_ARCH= NO_DEFAULT
668 MACHINE=evbsh3 MACHINE_ARCH=sh3eb ALIAS=evbsh3-eb
669 MACHINE=evbsh3 MACHINE_ARCH=sh3el ALIAS=evbsh3-el
670 MACHINE=ews4800mips MACHINE_ARCH=mipseb
671 MACHINE=hp300 MACHINE_ARCH=m68k
672 MACHINE=hppa MACHINE_ARCH=hppa
673 MACHINE=hpcarm MACHINE_ARCH=arm ALIAS=hpcoarm
674 MACHINE=hpcarm MACHINE_ARCH=earmv4 ALIAS=hpcearm DEFAULT
675 MACHINE=hpcmips MACHINE_ARCH=mipsel
676 MACHINE=hpcsh MACHINE_ARCH=sh3el
677 MACHINE=i386 MACHINE_ARCH=i386
678 MACHINE=ia64 MACHINE_ARCH=ia64
679 MACHINE=ibmnws MACHINE_ARCH=powerpc
680 MACHINE=iyonix MACHINE_ARCH=arm ALIAS=oiyonix
681 MACHINE=iyonix MACHINE_ARCH=earm ALIAS=eiyonix DEFAULT
682 MACHINE=landisk MACHINE_ARCH=sh3el
683 MACHINE=luna68k MACHINE_ARCH=m68k
684 MACHINE=mac68k MACHINE_ARCH=m68k
685 MACHINE=macppc MACHINE_ARCH=powerpc DEFAULT
686 MACHINE=macppc MACHINE_ARCH=powerpc64 ALIAS=macppc64
687 MACHINE=mipsco MACHINE_ARCH=mipseb
688 MACHINE=mmeye MACHINE_ARCH=sh3eb
689 MACHINE=mvme68k MACHINE_ARCH=m68k
690 MACHINE=mvmeppc MACHINE_ARCH=powerpc
691 MACHINE=netwinder MACHINE_ARCH=arm ALIAS=onetwinder
692 MACHINE=netwinder MACHINE_ARCH=earmv4 ALIAS=enetwinder DEFAULT
693 MACHINE=news68k MACHINE_ARCH=m68k
694 MACHINE=newsmips MACHINE_ARCH=mipseb
695 MACHINE=next68k MACHINE_ARCH=m68k
696 MACHINE=ofppc MACHINE_ARCH=powerpc DEFAULT
697 MACHINE=ofppc MACHINE_ARCH=powerpc64 ALIAS=ofppc64
698 MACHINE=or1k MACHINE_ARCH=or1k
699 MACHINE=playstation2 MACHINE_ARCH=mipsel
700 MACHINE=pmax MACHINE_ARCH=mips64el ALIAS=pmax64
701 MACHINE=pmax MACHINE_ARCH=mipsel DEFAULT
702 MACHINE=prep MACHINE_ARCH=powerpc
703 MACHINE=riscv MACHINE_ARCH=riscv64 ALIAS=riscv64 DEFAULT
704 MACHINE=riscv MACHINE_ARCH=riscv32 ALIAS=riscv32
705 MACHINE=rs6000 MACHINE_ARCH=powerpc
706 MACHINE=sandpoint MACHINE_ARCH=powerpc
707 MACHINE=sbmips MACHINE_ARCH= NO_DEFAULT
708 MACHINE=sbmips MACHINE_ARCH=mips64eb ALIAS=sbmips64-eb
709 MACHINE=sbmips MACHINE_ARCH=mips64el ALIAS=sbmips64-el
710 MACHINE=sbmips MACHINE_ARCH=mipseb ALIAS=sbmips-eb
711 MACHINE=sbmips MACHINE_ARCH=mipsel ALIAS=sbmips-el
712 MACHINE=sgimips MACHINE_ARCH=mips64eb ALIAS=sgimips64
713 MACHINE=sgimips MACHINE_ARCH=mipseb DEFAULT
714 MACHINE=shark MACHINE_ARCH=arm ALIAS=oshark
715 MACHINE=shark MACHINE_ARCH=earmv4 ALIAS=eshark DEFAULT
716 MACHINE=sparc MACHINE_ARCH=sparc
717 MACHINE=sparc64 MACHINE_ARCH=sparc64
718 MACHINE=sun2 MACHINE_ARCH=m68000
719 MACHINE=sun3 MACHINE_ARCH=m68k
720 MACHINE=vax MACHINE_ARCH=vax
721 MACHINE=x68k MACHINE_ARCH=m68k
722 MACHINE=zaurus MACHINE_ARCH=arm ALIAS=ozaurus
723 MACHINE=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 #
741 getarch()
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 #
811 validatearch()
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 #
864 listarch()
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 #
915 nobomb_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>
923 EOF
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 #
930 bomb_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 #
943 getmakevar()
944 {
945 if [ -x "${make}" ]; then
946 bomb_getmakevar "$1"
947 else
948 echo "\$$1"
949 fi
950 }
951
952 setmakeenv()
953 {
954 eval "$1='$2'; export $1"
955 makeenv="${makeenv} $1"
956 }
957 safe_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
970 unsetmakeenv()
971 {
972 eval "unset $1"
973 makeenv="${makeenv} $1"
974 }
975 safe_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.
989 resolvepaths()
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.
1006 resolvepath()
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
1024 usage()
1025 {
1026 if [ -n "$*" ]; then
1027 echo ""
1028 echo "${progname}: $*"
1029 fi
1030 cat <<_usage_
1031
1032 Usage: ${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 distsets Same as "distribution sets".
1066 sourcesets Create source sets in RELEASEDIR/source/sets.
1067 syspkgs Create syspkgs in
1068 RELEASEDIR/RELEASEMACHINEDIR/binary/syspkgs.
1069 iso-image Create CD-ROM image in RELEASEDIR/images.
1070 iso-image-source Create CD-ROM image with source in RELEASEDIR/images.
1071 live-image Create bootable live image in
1072 RELEASEDIR/RELEASEMACHINEDIR/installation/liveimage.
1073 install-image Create bootable installation image in
1074 RELEASEDIR/RELEASEMACHINEDIR/installation/installimage.
1075 disk-image=target Create bootable disk image in
1076 RELEASEDIR/RELEASEMACHINEDIR/binary/gzimg/target.img.gz.
1077 params Display various make(1) parameters.
1078 list-arch Display a list of valid MACHINE/MACHINE_ARCH values,
1079 and exit. The list may be narrowed by passing glob
1080 patterns or exact values in MACHINE or MACHINE_ARCH.
1081 mkrepro-timestamp Show the latest source timestamp used for reproducable
1082 builds and exit. Requires -P or -V MKREPRO=yes.
1083 show-revisionid Show the revision ID of the current directory
1084 (in SCM-dependent format) and exit.
1085 Requires -P or -V MKREPRO=yes.
1086
1087 Options:
1088 -a arch Set MACHINE_ARCH to arch. [Default: deduced from MACHINE]
1089 -B buildid Set BUILDID to buildid.
1090 -C cdextras Append cdextras to CDEXTRA variable for inclusion on CD-ROM.
1091 -D dest Set DESTDIR to dest. [Default: destdir.MACHINE]
1092 -E Set "expert" mode; disables various safety checks.
1093 Should not be used without expert knowledge of the build
1094 system.
1095 -h Print this help message.
1096 -j njob Run up to njob jobs in parallel; see make(1) -j.
1097 -M obj Set obj root directory to obj; sets MAKEOBJDIRPREFIX.
1098 Unsets MAKEOBJDIR.
1099 -m mach Set MACHINE to mach. Some mach values are actually
1100 aliases that set MACHINE/MACHINE_ARCH pairs.
1101 [Default: deduced from the host system if the host
1102 OS is NetBSD]
1103 -N noisy Set the noisyness (MAKEVERBOSE) level of the build:
1104 0 Minimal output ("quiet")
1105 1 Describe what is occurring
1106 2 Describe what is occurring and echo the actual
1107 command
1108 3 Ignore the effect of the "@" prefix in make commands
1109 4 Trace shell commands using the shell's -x flag
1110 [Default: 2]
1111 -n Show commands that would be executed, but do not execute them.
1112 -O obj Set obj root directory to obj; sets a MAKEOBJDIR pattern.
1113 Unsets MAKEOBJDIRPREFIX.
1114 -o Set MKOBJDIRS=no; do not create objdirs at start of build.
1115 -P Set MKREPRO and MKREPRO_TIMESTAMP to the latest source
1116 CVS timestamp for reproducible builds.
1117 -R release Set RELEASEDIR to release. [Default: releasedir]
1118 -r Remove contents of TOOLDIR and DESTDIR before building.
1119 -S seed Set BUILDSEED to seed. [Default: NetBSD-majorversion]
1120 -T tools Set TOOLDIR to tools. If unset, and TOOLDIR is not set in
1121 the environment, ${toolprefix}make will be (re)built
1122 unconditionally.
1123 -U Set MKUNPRIVED=yes; build without requiring root privileges,
1124 install from an UNPRIVED build with proper file permissions.
1125 -u Set MKUPDATE=yes; do not run "make cleandir" first.
1126 Without this, everything is rebuilt, including the tools.
1127 -V var=[value] Set variable \`var' to \`value'.
1128 -w wrapper Create ${toolprefix}make script as wrapper.
1129 [Default: \${TOOLDIR}/bin/${toolprefix}make-\${MACHINE}]
1130 -X x11src Set X11SRCDIR to x11src. [Default: /usr/xsrc]
1131 -x Set MKX11=yes; build X11 from X11SRCDIR
1132 -Y extsrcsrc Set EXTSRCSRCDIR to extsrcsrc. [Default: /usr/extsrc]
1133 -y Set MKEXTSRC=yes; build extsrc from EXTSRCSRCDIR
1134 -Z var Unset ("zap") variable \`var'.
1135
1136 _usage_
1137 exit 1
1138 }
1139
1140 parseoptions()
1141 {
1142 opts='a:B:C:D:Ehj:M:m:N:nO:oPR:rS:T:UuV:w:X:xY:yZ:'
1143 opt_a=false
1144 opt_m=false
1145 local did_show_info=false
1146
1147 if type getopts >/dev/null 2>&1; then
1148 # Use POSIX getopts.
1149 #
1150 getoptcmd='getopts ${opts} opt && opt=-${opt}'
1151 optargcmd=':'
1152 optremcmd='shift $((${OPTIND} -1))'
1153 else
1154 type getopt >/dev/null 2>&1 ||
1155 bomb "Shell does not support getopts or getopt"
1156
1157 # Use old-style getopt(1) (doesn't handle whitespace in args).
1158 #
1159 args="$(getopt ${opts} $*)"
1160 [ $? = 0 ] || usage
1161 set -- ${args}
1162
1163 getoptcmd='[ $# -gt 0 ] && opt="$1" && shift'
1164 optargcmd='OPTARG="$1"; shift'
1165 optremcmd=':'
1166 fi
1167
1168 # Parse command line options.
1169 #
1170 while eval ${getoptcmd}; do
1171 case ${opt} in
1172
1173 -a)
1174 eval ${optargcmd}
1175 MACHINE_ARCH=${OPTARG}
1176 opt_a=true
1177 ;;
1178
1179 -B)
1180 eval ${optargcmd}
1181 BUILDID=${OPTARG}
1182 ;;
1183
1184 -C)
1185 eval ${optargcmd}; resolvepaths OPTARG
1186 CDEXTRA="${CDEXTRA}${CDEXTRA:+ }${OPTARG}"
1187 ;;
1188
1189 -D)
1190 eval ${optargcmd}; resolvepath OPTARG
1191 setmakeenv DESTDIR "${OPTARG}"
1192 ;;
1193
1194 -E)
1195 do_expertmode=true
1196 ;;
1197
1198 -j)
1199 eval ${optargcmd}
1200 parallel="-j ${OPTARG}"
1201 ;;
1202
1203 -M)
1204 eval ${optargcmd}; resolvepath OPTARG
1205 case "${OPTARG}" in
1206 \$*) usage "-M argument must not begin with '\$'"
1207 ;;
1208 *\$*) # can use resolvepath, but can't set TOP_objdir
1209 resolvepath OPTARG
1210 ;;
1211 *) resolvepath OPTARG
1212 TOP_objdir="${OPTARG}${TOP}"
1213 ;;
1214 esac
1215 unsetmakeenv MAKEOBJDIR
1216 setmakeenv MAKEOBJDIRPREFIX "${OPTARG}"
1217 ;;
1218
1219 # -m overrides MACHINE_ARCH unless "-a" is specified
1220 -m)
1221 eval ${optargcmd}
1222 MACHINE="${OPTARG}"
1223 opt_m=true
1224 ;;
1225
1226 -N)
1227 eval ${optargcmd}
1228 case "${OPTARG}" in
1229 0|1|2|3|4)
1230 setmakeenv MAKEVERBOSE "${OPTARG}"
1231 ;;
1232 *)
1233 usage "'${OPTARG}' is not a valid value for -N"
1234 ;;
1235 esac
1236 ;;
1237
1238 -n)
1239 runcmd=echo
1240 ;;
1241
1242 -O)
1243 eval ${optargcmd}
1244 case "${OPTARG}" in
1245 *\$*) usage "-O argument must not contain '\$'"
1246 ;;
1247 *) resolvepath OPTARG
1248 TOP_objdir="${OPTARG}"
1249 ;;
1250 esac
1251 unsetmakeenv MAKEOBJDIRPREFIX
1252 setmakeenv MAKEOBJDIR "\${.CURDIR:C,^$TOP,$OPTARG,}"
1253 ;;
1254
1255 -o)
1256 MKOBJDIRS=no
1257 ;;
1258
1259 -P)
1260 MKREPRO=yes
1261 export MKREPRO
1262 ;;
1263
1264 -R)
1265 eval ${optargcmd}; resolvepath OPTARG
1266 setmakeenv RELEASEDIR "${OPTARG}"
1267 ;;
1268
1269 -r)
1270 do_removedirs=true
1271 do_rebuildmake=true
1272 ;;
1273
1274 -S)
1275 eval ${optargcmd}
1276 setmakeenv BUILDSEED "${OPTARG}"
1277 ;;
1278
1279 -T)
1280 eval ${optargcmd}; resolvepath OPTARG
1281 TOOLDIR="${OPTARG}"
1282 export TOOLDIR
1283 ;;
1284
1285 -U)
1286 setmakeenv MKUNPRIVED yes
1287 ;;
1288
1289 -u)
1290 setmakeenv MKUPDATE yes
1291 ;;
1292
1293 -V)
1294 eval ${optargcmd}
1295 case "${OPTARG}" in
1296 # XXX: consider restricting which variables can be changed?
1297 [a-zA-Z_]*=*)
1298 safe_setmakeenv "${OPTARG%%=*}" "${OPTARG#*=}"
1299 ;;
1300 [a-zA-Z_]*)
1301 safe_setmakeenv "${OPTARG}" ""
1302 ;;
1303 *)
1304 usage "-V argument must be of the form 'var[=value]'"
1305 ;;
1306 esac
1307 ;;
1308
1309 -w)
1310 eval ${optargcmd}; resolvepath OPTARG
1311 makewrapper="${OPTARG}"
1312 ;;
1313
1314 -X)
1315 eval ${optargcmd}; resolvepath OPTARG
1316 setmakeenv X11SRCDIR "${OPTARG}"
1317 ;;
1318
1319 -x)
1320 setmakeenv MKX11 yes
1321 ;;
1322
1323 -Y)
1324 eval ${optargcmd}; resolvepath OPTARG
1325 setmakeenv EXTSRCSRCDIR "${OPTARG}"
1326 ;;
1327
1328 -y)
1329 setmakeenv MKEXTSRC yes
1330 ;;
1331
1332 -Z)
1333 eval ${optargcmd}
1334 # XXX: consider restricting which variables can be unset?
1335 safe_unsetmakeenv "${OPTARG}"
1336 ;;
1337
1338 --)
1339 break
1340 ;;
1341
1342 -'?'|-h)
1343 usage
1344 ;;
1345
1346 esac
1347 done
1348
1349 # Validate operations.
1350 #
1351 eval ${optremcmd}
1352 while [ $# -gt 0 ]; do
1353 op=$1; shift
1354 operations="${operations} ${op}"
1355
1356 case "${op}" in
1357
1358 help)
1359 usage
1360 ;;
1361
1362 list-arch)
1363 listarch "${MACHINE}" "${MACHINE_ARCH}"
1364 exit
1365 ;;
1366 mkrepro-timestamp)
1367 setup_mkrepro quiet
1368 echo ${MKREPRO_TIMESTAMP:-0}
1369 did_show_info=true
1370 ;;
1371
1372 show-revisionid)
1373 setup_mkrepro quiet
1374 echo ${NETBSD_REVISIONID}
1375 did_show_info=true
1376 ;;
1377
1378 kernel=*|releasekernel=*|kernel.gdb=*)
1379 arg=${op#*=}
1380 op=${op%%=*}
1381 [ -n "${arg}" ] ||
1382 bomb "Must supply a kernel name with \`${op}=...'"
1383 ;;
1384
1385 disk-image=*)
1386 arg=${op#*=}
1387 op=disk_image
1388 [ -n "${arg}" ] ||
1389 bomb "Must supply a target name with \`${op}=...'"
1390
1391 ;;
1392
1393 install=*|installmodules=*)
1394 arg=${op#*=}
1395 op=${op%%=*}
1396 [ -n "${arg}" ] ||
1397 bomb "Must supply a directory with \`install=...'"
1398 ;;
1399
1400 distsets)
1401 operations="$(echo "$operations" | sed 's/distsets/distribution sets/')"
1402 do_sets=true
1403 op=distribution
1404 ;;
1405
1406 build|\
1407 cleandir|\
1408 distribution|\
1409 install-image|\
1410 iso-image-source|\
1411 iso-image|\
1412 kernels|\
1413 libs|\
1414 live-image|\
1415 makewrapper|\
1416 modules|\
1417 obj|\
1418 params|\
1419 release|\
1420 rump|\
1421 rumptest|\
1422 sets|\
1423 sourcesets|\
1424 syspkgs|\
1425 tools)
1426 ;;
1427
1428 *)
1429 usage "Unknown operation \`${op}'"
1430 ;;
1431
1432 esac
1433 # ${op} may contain chars that are not allowed in variable
1434 # names. Replace them with '_' before setting do_${op}.
1435 op="$( echo "$op" | tr -s '.-' '__')"
1436 eval do_${op}=true
1437 done
1438
1439 [ "$did_show_info" = true ] && [ ${MKREPRO_TIMESTAMP:-0} -ne 0 ] && exit
1440
1441 [ -n "${operations}" ] || usage "Missing operation to perform."
1442
1443 # Set up MACHINE*. On a NetBSD host, these are allowed to be unset.
1444 #
1445 if [ -z "${MACHINE}" ]; then
1446 [ "${uname_s}" = "NetBSD" ] ||
1447 bomb "MACHINE must be set, or -m must be used, for cross builds."
1448 MACHINE=${uname_m}
1449 MACHINE_ARCH=${uname_p}
1450 fi
1451 if $opt_m && ! $opt_a; then
1452 # Settings implied by the command line -m option
1453 # override MACHINE_ARCH from the environment (if any).
1454 getarch
1455 fi
1456 [ -n "${MACHINE_ARCH}" ] || getarch
1457 validatearch
1458
1459 # Set up default make(1) environment.
1460 #
1461 makeenv="${makeenv} TOOLDIR MACHINE MACHINE_ARCH MAKEFLAGS"
1462 [ -z "${BUILDID}" ] || makeenv="${makeenv} BUILDID"
1463 [ -z "${BUILDINFO}" ] || makeenv="${makeenv} BUILDINFO"
1464 MAKEFLAGS="-de -m ${TOP}/share/mk ${MAKEFLAGS}"
1465 MAKEFLAGS="${MAKEFLAGS} MKOBJDIRS=${MKOBJDIRS-yes}"
1466 export MAKEFLAGS MACHINE MACHINE_ARCH
1467 if [ -z "${USETOOLS}" ]; then
1468 setmakeenv USETOOLS yes
1469 else
1470 setmakeenv USETOOLS "${USETOOLS}"
1471 fi
1472 setmakeenv MAKEWRAPPERMACHINE "${makewrappermachine:-${MACHINE}}"
1473 }
1474
1475 # sanitycheck --
1476 # Sanity check after parsing command line options, before rebuildmake.
1477 #
1478 sanitycheck()
1479 {
1480 # Install as non-root is a bad idea.
1481 #
1482 if ${do_install} && [ "$id_u" -ne 0 ] ; then
1483 if ${do_expertmode}; then
1484 warning "Will install as an unprivileged user."
1485 else
1486 bomb "-E must be set for install as an unprivileged user."
1487 fi
1488 fi
1489
1490 # If the PATH contains any non-absolute components (including,
1491 # but not limited to, "." or ""), then complain. As an exception,
1492 # allow "" or "." as the last component of the PATH. This is fatal
1493 # if expert mode is not in effect.
1494 #
1495 local path="${PATH}"
1496 path="${path%:}" # delete trailing ":"
1497 path="${path%:.}" # delete trailing ":."
1498 case ":${path}:/" in
1499 *:[!/]*)
1500 if ${do_expertmode}; then
1501 warning "PATH contains non-absolute components"
1502 else
1503 bomb "PATH environment variable must not" \
1504 "contain non-absolute components"
1505 fi
1506 ;;
1507 esac
1508
1509 while [ ${MKX11-no} = "yes" ]; do # not really a loop
1510 test -n "${X11SRCDIR}" && {
1511 test -d "${X11SRCDIR}/external" ||
1512 bomb "X11SRCDIR (${X11SRCDIR}) does not exist (with -x)"
1513 break
1514 }
1515 for _xd in \
1516 "${NETBSDSRCDIR%/*}/xsrc" \
1517 "${NETBSDSRCDIR}/xsrc" \
1518 /usr/xsrc
1519 do
1520 test -f "${_xd}/Makefile" &&
1521 setmakeenv X11SRCDIR "${_xd}" &&
1522 break 2
1523 done
1524 bomb "Asked to build X11 but no xsrc"
1525 done
1526 }
1527
1528 # find a command in PATH and print the full filename
1529 print_path_of()
1530 {
1531 set -- $( type "$1" )
1532 printf "${3}\n"
1533 }
1534
1535 # print_tooldir_make --
1536 # Try to find and print a path to an existing
1537 # ${TOOLDIR}/bin/${toolprefix}program
1538 print_tooldir_program()
1539 {
1540 local possible_TOP_OBJ
1541 local possible_TOOLDIR
1542 local possible_program
1543 local tooldir_program
1544 local program=${1}
1545
1546 if [ "${USETOOLS-yes}" != "yes" ]; then
1547 print_path_of "${program}"
1548 return
1549 fi
1550
1551 if [ -n "${TOOLDIR}" ]; then
1552 echo "${TOOLDIR}/bin/${toolprefix}${program}"
1553 return
1554 fi
1555
1556 # Set host_ostype to something like "NetBSD-4.5.6-i386". This
1557 # is intended to match the HOST_OSTYPE variable in <bsd.own.mk>.
1558 #
1559 local host_ostype="${uname_s}-$(
1560 echo "${uname_r}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
1561 )-$(
1562 echo "${uname_p}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
1563 )"
1564
1565 # Look in a few potential locations for
1566 # ${possible_TOOLDIR}/bin/${toolprefix}${program}.
1567 # If we find it, then set possible_program.
1568 #
1569 # In the usual case (without interference from environment
1570 # variables or /etc/mk.conf), <bsd.own.mk> should set TOOLDIR to
1571 # "${_SRC_TOP_OBJ_}/tooldir.${host_ostype}".
1572 #
1573 # In practice it's difficult to figure out the correct value
1574 # for _SRC_TOP_OBJ_. In the easiest case, when the -M or -O
1575 # options were passed to build.sh, then ${TOP_objdir} will be
1576 # the correct value. We also try a few other possibilities, but
1577 # we do not replicate all the logic of <bsd.obj.mk>.
1578 #
1579 for possible_TOP_OBJ in \
1580 "${TOP_objdir}" \
1581 "${MAKEOBJDIRPREFIX:+${MAKEOBJDIRPREFIX}${TOP}}" \
1582 "${TOP}" \
1583 "${TOP}/obj" \
1584 "${TOP}/obj.${MACHINE}"
1585 do
1586 [ -n "${possible_TOP_OBJ}" ] || continue
1587 possible_TOOLDIR="${possible_TOP_OBJ}/tooldir.${host_ostype}"
1588 possible_program="${possible_TOOLDIR}/bin/${toolprefix}${program}"
1589 if [ -x "${possible_make}" ]; then
1590 echo ${possible_program}
1591 return;
1592 fi
1593 done
1594 echo ""
1595 }
1596 # print_tooldir_make --
1597 # Try to find and print a path to an existing
1598 # ${TOOLDIR}/bin/${toolprefix}make, for use by rebuildmake() before a
1599 # new version of ${toolprefix}make has been built.
1600 #
1601 # * If TOOLDIR was set in the environment or on the command line, use
1602 # that value.
1603 # * Otherwise try to guess what TOOLDIR would be if not overridden by
1604 # /etc/mk.conf, and check whether the resulting directory contains
1605 # a copy of ${toolprefix}make (this should work for everybody who
1606 # doesn't override TOOLDIR via /etc/mk.conf);
1607 # * Failing that, search for ${toolprefix}make, nbmake, bmake, or make,
1608 # in the PATH (this might accidentally find a version of make that
1609 # does not understand the syntax used by NetBSD make, and that will
1610 # lead to failure in the next step);
1611 # * If a copy of make was found above, try to use it with
1612 # nobomb_getmakevar to find the correct value for TOOLDIR, and believe the
1613 # result only if it's a directory that already exists;
1614 # * If a value of TOOLDIR was found above, and if
1615 # ${TOOLDIR}/bin/${toolprefix}make exists, print that value.
1616 #
1617 print_tooldir_make()
1618 {
1619 local possible_make
1620 local possible_TOOLDIR
1621 local tooldir_make
1622
1623 possible_make=$(print_tooldir_program make)
1624 # If the above didn't work, search the PATH for a suitable
1625 # ${toolprefix}make, nbmake, bmake, or make.
1626 #
1627 : ${possible_make:=$(find_in_PATH ${toolprefix}make '')}
1628 : ${possible_make:=$(find_in_PATH nbmake '')}
1629 : ${possible_make:=$(find_in_PATH bmake '')}
1630 : ${possible_make:=$(find_in_PATH make '')}
1631
1632 # At this point, we don't care whether possible_make is in the
1633 # correct TOOLDIR or not; we simply want it to be usable by
1634 # getmakevar to help us find the correct TOOLDIR.
1635 #
1636 # Use ${possible_make} with nobomb_getmakevar to try to find
1637 # the value of TOOLDIR. Believe the result only if it's
1638 # a directory that already exists and contains bin/${toolprefix}make.
1639 #
1640 if [ -x "${possible_make}" ]; then
1641 possible_TOOLDIR="$(
1642 make="${possible_make}" \
1643 nobomb_getmakevar TOOLDIR 2>/dev/null
1644 )"
1645 if [ $? = 0 ] && [ -n "${possible_TOOLDIR}" ] \
1646 && [ -d "${possible_TOOLDIR}" ];
1647 then
1648 tooldir_make="${possible_TOOLDIR}/bin/${toolprefix}make"
1649 if [ -x "${tooldir_make}" ]; then
1650 echo "${tooldir_make}"
1651 return 0
1652 fi
1653 fi
1654 fi
1655 return 1
1656 }
1657
1658 # rebuildmake --
1659 # Rebuild nbmake in a temporary directory if necessary. Sets $make
1660 # to a path to the nbmake executable. Sets done_rebuildmake=true
1661 # if nbmake was rebuilt.
1662 #
1663 # There is a cyclic dependency between building nbmake and choosing
1664 # TOOLDIR: TOOLDIR may be affected by settings in /etc/mk.conf, so we
1665 # would like to use getmakevar to get the value of TOOLDIR; but we can't
1666 # use getmakevar before we have an up to date version of nbmake; we
1667 # might already have an up to date version of nbmake in TOOLDIR, but we
1668 # don't yet know where TOOLDIR is.
1669 #
1670 # The default value of TOOLDIR also depends on the location of the top
1671 # level object directory, so $(getmakevar TOOLDIR) invoked before or
1672 # after making the top level object directory may produce different
1673 # results.
1674 #
1675 # Strictly speaking, we should do the following:
1676 #
1677 # 1. build a new version of nbmake in a temporary directory;
1678 # 2. use the temporary nbmake to create the top level obj directory;
1679 # 3. use $(getmakevar TOOLDIR) with the temporary nbmake to
1680 # get the correct value of TOOLDIR;
1681 # 4. move the temporary nbmake to ${TOOLDIR}/bin/nbmake.
1682 #
1683 # However, people don't like building nbmake unnecessarily if their
1684 # TOOLDIR has not changed since an earlier build. We try to avoid
1685 # rebuilding a temporary version of nbmake by taking some shortcuts to
1686 # guess a value for TOOLDIR, looking for an existing version of nbmake
1687 # in that TOOLDIR, and checking whether that nbmake is newer than the
1688 # sources used to build it.
1689 #
1690 rebuildmake()
1691 {
1692 make="$(print_tooldir_make)"
1693 if [ -n "${make}" ] && [ -x "${make}" ]; then
1694 for f in usr.bin/make/*.[ch] usr.bin/make/lst.lib/*.[ch]; do
1695 if [ "${f}" -nt "${make}" ]; then
1696 statusmsg "${make} outdated" \
1697 "(older than ${f}), needs building."
1698 do_rebuildmake=true
1699 break
1700 fi
1701 done
1702 else
1703 statusmsg "No \$TOOLDIR/bin/${toolprefix}make, needs building."
1704 do_rebuildmake=true
1705 fi
1706
1707 # Build bootstrap ${toolprefix}make if needed.
1708 if ! ${do_rebuildmake}; then
1709 return
1710 fi
1711
1712 statusmsg "Bootstrapping ${toolprefix}make"
1713 ${runcmd} cd "${tmpdir}"
1714 ${runcmd} env CC="${HOST_CC-cc}" CPPFLAGS="${HOST_CPPFLAGS}" \
1715 CFLAGS="${HOST_CFLAGS--O}" LDFLAGS="${HOST_LDFLAGS}" \
1716 ${HOST_SH} "${TOP}/tools/make/configure" ||
1717 ( cp ${tmpdir}/config.log ${tmpdir}-config.log
1718 bomb "Configure of ${toolprefix}make failed, see ${tmpdir}-config.log for details" )
1719 ${runcmd} ${HOST_SH} buildmake.sh ||
1720 bomb "Build of ${toolprefix}make failed"
1721 make="${tmpdir}/${toolprefix}make"
1722 ${runcmd} cd "${TOP}"
1723 ${runcmd} rm -f usr.bin/make/*.o usr.bin/make/lst.lib/*.o
1724 done_rebuildmake=true
1725 }
1726
1727 # validatemakeparams --
1728 # Perform some late sanity checks, after rebuildmake,
1729 # but before createmakewrapper or any real work.
1730 #
1731 # Creates the top-level obj directory, because that
1732 # is needed by some of the sanity checks.
1733 #
1734 # Prints status messages reporting the values of several variables.
1735 #
1736 validatemakeparams()
1737 {
1738 # MAKECONF (which defaults to /etc/mk.conf in share/mk/bsd.own.mk)
1739 # can affect many things, so mention it in an early status message.
1740 #
1741 MAKECONF=$(getmakevar MAKECONF)
1742 if [ -e "${MAKECONF}" ]; then
1743 statusmsg2 "MAKECONF file:" "${MAKECONF}"
1744 else
1745 statusmsg2 "MAKECONF file:" "${MAKECONF} (File not found)"
1746 fi
1747
1748 # Normalise MKOBJDIRS, MKUNPRIVED, and MKUPDATE.
1749 # These may be set as build.sh options or in "mk.conf".
1750 # Don't export them as they're only used for tests in build.sh.
1751 #
1752 MKOBJDIRS=$(getmakevar MKOBJDIRS)
1753 MKUNPRIVED=$(getmakevar MKUNPRIVED)
1754 MKUPDATE=$(getmakevar MKUPDATE)
1755
1756 # Non-root should always use either the -U or -E flag.
1757 #
1758 if ! ${do_expertmode} && \
1759 [ "$id_u" -ne 0 ] && \
1760 [ "${MKUNPRIVED}" = "no" ] ; then
1761 bomb "-U or -E must be set for build as an unprivileged user."
1762 fi
1763
1764 if [ "${runcmd}" = "echo" ]; then
1765 TOOLCHAIN_MISSING=no
1766 EXTERNAL_TOOLCHAIN=""
1767 else
1768 TOOLCHAIN_MISSING=$(bomb_getmakevar TOOLCHAIN_MISSING)
1769 EXTERNAL_TOOLCHAIN=$(bomb_getmakevar EXTERNAL_TOOLCHAIN)
1770 fi
1771 if [ "${TOOLCHAIN_MISSING}" = "yes" ] && \
1772 [ -z "${EXTERNAL_TOOLCHAIN}" ]; then
1773 ${runcmd} echo "ERROR: build.sh (in-tree cross-toolchain) is not yet available for"
1774 ${runcmd} echo " MACHINE: ${MACHINE}"
1775 ${runcmd} echo " MACHINE_ARCH: ${MACHINE_ARCH}"
1776 ${runcmd} echo ""
1777 ${runcmd} echo "All builds for this platform should be done via a traditional make"
1778 ${runcmd} echo "If you wish to use an external cross-toolchain, set"
1779 ${runcmd} echo " EXTERNAL_TOOLCHAIN=<path to toolchain root>"
1780 ${runcmd} echo "in either the environment or mk.conf and rerun"
1781 ${runcmd} echo " ${progname} $*"
1782 exit 1
1783 fi
1784
1785 if [ "${MKOBJDIRS}" != "no" ]; then
1786 # Create the top-level object directory.
1787 #
1788 # "make obj NOSUBDIR=" can handle most cases, but it
1789 # can't handle the case where MAKEOBJDIRPREFIX is set
1790 # while the corresponding directory does not exist
1791 # (rules in <bsd.obj.mk> would abort the build). We
1792 # therefore have to handle the MAKEOBJDIRPREFIX case
1793 # without invoking "make obj". The MAKEOBJDIR case
1794 # could be handled either way, but we choose to handle
1795 # it similarly to MAKEOBJDIRPREFIX.
1796 #
1797 if [ -n "${TOP_obj}" ]; then
1798 # It must have been set by the "-M" or "-O"
1799 # command line options, so there's no need to
1800 # use getmakevar
1801 :
1802 elif [ -n "$MAKEOBJDIRPREFIX" ]; then
1803 TOP_obj="$(getmakevar MAKEOBJDIRPREFIX)${TOP}"
1804 elif [ -n "$MAKEOBJDIR" ]; then
1805 TOP_obj="$(getmakevar MAKEOBJDIR)"
1806 fi
1807 if [ -n "$TOP_obj" ]; then
1808 ${runcmd} mkdir -p "${TOP_obj}" ||
1809 bomb "Can't create top level object directory" \
1810 "${TOP_obj}"
1811 else
1812 ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
1813 bomb "Can't create top level object directory" \
1814 "using make obj"
1815 fi
1816
1817 # make obj in tools to ensure that the objdir for "tools"
1818 # is available.
1819 #
1820 ${runcmd} cd tools
1821 ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
1822 bomb "Failed to make obj in tools"
1823 ${runcmd} cd "${TOP}"
1824 fi
1825
1826 # Find TOOLDIR, DESTDIR, and RELEASEDIR, according to getmakevar,
1827 # and bomb if they have changed from the values we had from the
1828 # command line or environment.
1829 #
1830 # This must be done after creating the top-level object directory.
1831 #
1832 for var in TOOLDIR DESTDIR RELEASEDIR
1833 do
1834 eval oldval=\"\$${var}\"
1835 newval="$(getmakevar $var)"
1836 if ! $do_expertmode; then
1837 : ${_SRC_TOP_OBJ_:=$(getmakevar _SRC_TOP_OBJ_)}
1838 case "$var" in
1839 DESTDIR)
1840 : ${newval:=${_SRC_TOP_OBJ_}/destdir.${MACHINE}}
1841 makeenv="${makeenv} DESTDIR"
1842 ;;
1843 RELEASEDIR)
1844 : ${newval:=${_SRC_TOP_OBJ_}/releasedir}
1845 makeenv="${makeenv} RELEASEDIR"
1846 ;;
1847 esac
1848 fi
1849 if [ -n "$oldval" ] && [ "$oldval" != "$newval" ]; then
1850 bomb "Value of ${var} has changed" \
1851 "(was \"${oldval}\", now \"${newval}\")"
1852 fi
1853 eval ${var}=\"\${newval}\"
1854 eval export ${var}
1855 statusmsg2 "${var} path:" "${newval}"
1856 done
1857
1858 # RELEASEMACHINEDIR is just a subdir name, e.g. "i386".
1859 RELEASEMACHINEDIR=$(getmakevar RELEASEMACHINEDIR)
1860
1861 # Check validity of TOOLDIR and DESTDIR.
1862 #
1863 if [ -z "${TOOLDIR}" ] || [ "${TOOLDIR}" = "/" ]; then
1864 bomb "TOOLDIR '${TOOLDIR}' invalid"
1865 fi
1866 removedirs="${TOOLDIR}"
1867
1868 if [ -z "${DESTDIR}" ] || [ "${DESTDIR}" = "/" ]; then
1869 if ${do_distribution} || ${do_release} || \
1870 [ "${uname_s}" != "NetBSD" ] || \
1871 [ "${uname_m}" != "${MACHINE}" ]; then
1872 bomb "DESTDIR must != / for cross builds, or ${progname} 'distribution' or 'release'."
1873 fi
1874 if ! ${do_expertmode}; then
1875 bomb "DESTDIR must != / for non -E (expert) builds"
1876 fi
1877 statusmsg "WARNING: Building to /, in expert mode."
1878 statusmsg " This may cause your system to break! Reasons include:"
1879 statusmsg " - your kernel is not up to date"
1880 statusmsg " - the libraries or toolchain have changed"
1881 statusmsg " YOU HAVE BEEN WARNED!"
1882 else
1883 removedirs="${removedirs} ${DESTDIR}"
1884 fi
1885 if ${do_releasekernel} && [ -z "${RELEASEDIR}" ]; then
1886 bomb "Must set RELEASEDIR with \`releasekernel=...'"
1887 fi
1888
1889 # If a previous build.sh run used -U (and therefore created a
1890 # METALOG file), then most subsequent build.sh runs must also
1891 # use -U. If DESTDIR is about to be removed, then don't perform
1892 # this check.
1893 #
1894 case "${do_removedirs} ${removedirs} " in
1895 true*" ${DESTDIR} "*)
1896 # DESTDIR is about to be removed
1897 ;;
1898 *)
1899 if [ -e "${DESTDIR}/METALOG" ] && \
1900 [ "${MKUNPRIVED}" = "no" ] ; then
1901 if $do_expertmode; then
1902 warning "A previous build.sh run specified -U."
1903 else
1904 bomb "A previous build.sh run specified -U; you must specify it again now."
1905 fi
1906 fi
1907 ;;
1908 esac
1909
1910 # live-image and install-image targets require binary sets
1911 # (actually DESTDIR/etc/mtree/set.* files) built with MKUNPRIVED.
1912 # If release operation is specified with live-image or install-image,
1913 # the release op should be performed with -U for later image ops.
1914 #
1915 if ${do_release} && ( ${do_live_image} || ${do_install_image} ) && \
1916 [ "${MKUNPRIVED}" = "no" ] ; then
1917 bomb "-U must be specified on building release to create images later."
1918 fi
1919 }
1920
1921
1922 createmakewrapper()
1923 {
1924 # Remove the target directories.
1925 #
1926 if ${do_removedirs}; then
1927 for f in ${removedirs}; do
1928 statusmsg "Removing ${f}"
1929 ${runcmd} rm -r -f "${f}"
1930 done
1931 fi
1932
1933 # Recreate $TOOLDIR.
1934 #
1935 ${runcmd} mkdir -p "${TOOLDIR}/bin" ||
1936 bomb "mkdir of '${TOOLDIR}/bin' failed"
1937
1938 # If we did not previously rebuild ${toolprefix}make, then
1939 # check whether $make is still valid and the same as the output
1940 # from print_tooldir_make. If not, then rebuild make now. A
1941 # possible reason for this being necessary is that the actual
1942 # value of TOOLDIR might be different from the value guessed
1943 # before the top level obj dir was created.
1944 #
1945 if ! ${done_rebuildmake} && \
1946 ( [ ! -x "$make" ] || [ "$make" != "$(print_tooldir_make)" ] )
1947 then
1948 rebuildmake
1949 fi
1950
1951 # Install ${toolprefix}make if it was built.
1952 #
1953 if ${done_rebuildmake}; then
1954 ${runcmd} rm -f "${TOOLDIR}/bin/${toolprefix}make"
1955 ${runcmd} cp "${make}" "${TOOLDIR}/bin/${toolprefix}make" ||
1956 bomb "Failed to install \$TOOLDIR/bin/${toolprefix}make"
1957 make="${TOOLDIR}/bin/${toolprefix}make"
1958 statusmsg "Created ${make}"
1959 fi
1960
1961 # Build a ${toolprefix}make wrapper script, usable by hand as
1962 # well as by build.sh.
1963 #
1964 if [ -z "${makewrapper}" ]; then
1965 makewrapper="${TOOLDIR}/bin/${toolprefix}make-${makewrappermachine:-${MACHINE}}"
1966 [ -z "${BUILDID}" ] || makewrapper="${makewrapper}-${BUILDID}"
1967 fi
1968
1969 ${runcmd} rm -f "${makewrapper}"
1970 if [ "${runcmd}" = "echo" ]; then
1971 echo 'cat <<EOF >'${makewrapper}
1972 makewrapout=
1973 else
1974 makewrapout=">>\${makewrapper}"
1975 fi
1976
1977 case "${KSH_VERSION:-${SH_VERSION}}" in
1978 *PD\ KSH*|*MIRBSD\ KSH*)
1979 set +o braceexpand
1980 ;;
1981 esac
1982
1983 eval cat <<EOF ${makewrapout}
1984 #! ${HOST_SH}
1985 # Set proper variables to allow easy "make" building of a NetBSD subtree.
1986 # Generated from: \$NetBSD: build.sh,v 1.333.2.10 2025/07/08 15:26:32 martin Exp $
1987 # with these arguments: ${_args}
1988 #
1989
1990 EOF
1991 {
1992 sorted_vars="$(for var in ${makeenv}; do echo "${var}" ; done \
1993 | sort -u )"
1994 for var in ${sorted_vars}; do
1995 eval val=\"\${${var}}\"
1996 eval is_set=\"\${${var}+set}\"
1997 if [ -z "${is_set}" ]; then
1998 echo "unset ${var}"
1999 else
2000 qval="$(shell_quote "${val}")"
2001 echo "${var}=${qval}; export ${var}"
2002 fi
2003 done
2004
2005 cat <<EOF
2006
2007 exec "\${TOOLDIR}/bin/${toolprefix}make" \${1+"\$@"}
2008 EOF
2009 } | eval cat "${makewrapout}"
2010 [ "${runcmd}" = "echo" ] && echo EOF
2011 ${runcmd} chmod +x "${makewrapper}"
2012 statusmsg2 "Updated makewrapper:" "${makewrapper}"
2013 }
2014
2015 make_in_dir()
2016 {
2017 local dir="$1"
2018 local op="$2"
2019 ${runcmd} cd "${dir}" ||
2020 bomb "Failed to cd to \"${dir}\""
2021 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
2022 bomb "Failed to make ${op} in \"${dir}\""
2023 ${runcmd} cd "${TOP}" ||
2024 bomb "Failed to cd back to \"${TOP}\""
2025 }
2026
2027 buildtools()
2028 {
2029 if [ "${MKOBJDIRS}" != "no" ]; then
2030 ${runcmd} "${makewrapper}" ${parallel} obj-tools ||
2031 bomb "Failed to make obj-tools"
2032 fi
2033 if [ "${MKUPDATE}" = "no" ]; then
2034 make_in_dir tools cleandir
2035 fi
2036 make_in_dir tools build_install
2037 statusmsg "Tools built to ${TOOLDIR}"
2038 }
2039
2040 buildlibs()
2041 {
2042 if [ "${MKOBJDIRS}" != "no" ]; then
2043 ${runcmd} "${makewrapper}" ${parallel} obj ||
2044 bomb "Failed to make obj"
2045 fi
2046 if [ "${MKUPDATE}" = "no" ]; then
2047 make_in_dir lib cleandir
2048 fi
2049 make_in_dir . do-distrib-dirs
2050 make_in_dir . includes
2051 make_in_dir . do-lib
2052 statusmsg "libs built"
2053 }
2054
2055 getkernelconf()
2056 {
2057 kernelconf="$1"
2058 if [ "${MKOBJDIRS}" != "no" ]; then
2059 # The correct value of KERNOBJDIR might
2060 # depend on a prior "make obj" in
2061 # ${KERNSRCDIR}/${KERNARCHDIR}/compile.
2062 #
2063 KERNSRCDIR="$(getmakevar KERNSRCDIR)"
2064 KERNARCHDIR="$(getmakevar KERNARCHDIR)"
2065 make_in_dir "${KERNSRCDIR}/${KERNARCHDIR}/compile" obj
2066 fi
2067 KERNCONFDIR="$(getmakevar KERNCONFDIR)"
2068 KERNOBJDIR="$(getmakevar KERNOBJDIR)"
2069 case "${kernelconf}" in
2070 */*)
2071 kernelconfpath="${kernelconf}"
2072 kernelconfname="${kernelconf##*/}"
2073 ;;
2074 *)
2075 kernelconfpath="${KERNCONFDIR}/${kernelconf}"
2076 kernelconfname="${kernelconf}"
2077 ;;
2078 esac
2079 kernelbuildpath="${KERNOBJDIR}/${kernelconfname}"
2080 }
2081
2082 diskimage()
2083 {
2084 ARG="$(echo $1 | tr '[:lower:]' '[:upper:]')"
2085 [ -f "${DESTDIR}/etc/mtree/set.base" ] ||
2086 bomb "The release binaries must be built first"
2087 kerneldir="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel"
2088 kernel="${kerneldir}/netbsd-${ARG}.gz"
2089 [ -f "${kernel}" ] ||
2090 bomb "The kernel ${kernel} must be built first"
2091 make_in_dir "${NETBSDSRCDIR}/etc" "smp_${1}"
2092 }
2093
2094 buildkernel()
2095 {
2096 if ! ${do_tools} && ! ${buildkernelwarned:-false}; then
2097 # Building tools every time we build a kernel is clearly
2098 # unnecessary. We could try to figure out whether rebuilding
2099 # the tools is necessary this time, but it doesn't seem worth
2100 # the trouble. Instead, we say it's the user's responsibility
2101 # to rebuild the tools if necessary.
2102 #
2103 statusmsg "Building kernel without building new tools"
2104 buildkernelwarned=true
2105 fi
2106 getkernelconf $1
2107 statusmsg2 "Building kernel:" "${kernelconf}"
2108 statusmsg2 "Build directory:" "${kernelbuildpath}"
2109 ${runcmd} mkdir -p "${kernelbuildpath}" ||
2110 bomb "Cannot mkdir: ${kernelbuildpath}"
2111 if [ "${MKUPDATE}" = "no" ]; then
2112 make_in_dir "${kernelbuildpath}" cleandir
2113 fi
2114 [ -x "${TOOLDIR}/bin/${toolprefix}config" ] \
2115 || bomb "${TOOLDIR}/bin/${toolprefix}config does not exist. You need to \"$0 tools\" first."
2116 CONFIGOPTS=$(getmakevar CONFIGOPTS)
2117 ${runcmd} "${TOOLDIR}/bin/${toolprefix}config" ${CONFIGOPTS} \
2118 -b "${kernelbuildpath}" -s "${TOP}/sys" ${configopts} \
2119 "${kernelconfpath}" ||
2120 bomb "${toolprefix}config failed for ${kernelconf}"
2121 make_in_dir "${kernelbuildpath}" depend
2122 make_in_dir "${kernelbuildpath}" all
2123
2124 if [ "${runcmd}" != "echo" ]; then
2125 statusmsg "Kernels built from ${kernelconf}:"
2126 kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
2127 for kern in ${kernlist:-netbsd}; do
2128 [ -f "${kernelbuildpath}/${kern}" ] && \
2129 echo " ${kernelbuildpath}/${kern}"
2130 done | tee -a "${results}"
2131 fi
2132 }
2133
2134 releasekernel()
2135 {
2136 getkernelconf $1
2137 kernelreldir="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel"
2138 ${runcmd} mkdir -p "${kernelreldir}"
2139 kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
2140 for kern in ${kernlist:-netbsd}; do
2141 builtkern="${kernelbuildpath}/${kern}"
2142 [ -f "${builtkern}" ] || continue
2143 releasekern="${kernelreldir}/${kern}-${kernelconfname}.gz"
2144 statusmsg2 "Kernel copy:" "${releasekern}"
2145 if [ "${runcmd}" = "echo" ]; then
2146 echo "gzip -c -9 < ${builtkern} > ${releasekern}"
2147 else
2148 gzip -c -9 < "${builtkern}" > "${releasekern}"
2149 fi
2150 done
2151 }
2152
2153 buildkernels()
2154 {
2155 allkernels=$( runcmd= make_in_dir etc '-V ${ALL_KERNELS}' )
2156 for k in $allkernels; do
2157 buildkernel "${k}"
2158 done
2159 }
2160
2161 buildmodules()
2162 {
2163 setmakeenv MKBINUTILS no
2164 if ! ${do_tools} && ! ${buildmoduleswarned:-false}; then
2165 # Building tools every time we build modules is clearly
2166 # unnecessary as well as a kernel.
2167 #
2168 statusmsg "Building modules without building new tools"
2169 buildmoduleswarned=true
2170 fi
2171
2172 statusmsg "Building kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}"
2173 if [ "${MKOBJDIRS}" != "no" ]; then
2174 make_in_dir sys/modules obj
2175 fi
2176 if [ "${MKUPDATE}" = "no" ]; then
2177 make_in_dir sys/modules cleandir
2178 fi
2179 make_in_dir sys/modules dependall
2180 make_in_dir sys/modules install
2181
2182 statusmsg "Successful build of kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}"
2183 }
2184
2185 installmodules()
2186 {
2187 dir="$1"
2188 ${runcmd} "${makewrapper}" INSTALLMODULESDIR="${dir}" installmodules ||
2189 bomb "Failed to make installmodules to ${dir}"
2190 statusmsg "Successful installmodules to ${dir}"
2191 }
2192
2193 installworld()
2194 {
2195 dir="$1"
2196 ${runcmd} "${makewrapper}" INSTALLWORLDDIR="${dir}" installworld ||
2197 bomb "Failed to make installworld to ${dir}"
2198 statusmsg "Successful installworld to ${dir}"
2199 }
2200
2201 # Run rump build&link tests.
2202 #
2203 # To make this feasible for running without having to install includes and
2204 # libraries into destdir (i.e. quick), we only run ld. This is possible
2205 # since the rump kernel is a closed namespace apart from calls to rumpuser.
2206 # Therefore, if ld complains only about rumpuser symbols, rump kernel
2207 # linking was successful.
2208 #
2209 # We test that rump links with a number of component configurations.
2210 # These attempt to mimic what is encountered in the full build.
2211 # See list below. The list should probably be either autogenerated
2212 # or managed elsewhere; keep it here until a better idea arises.
2213 #
2214 # Above all, note that THIS IS NOT A SUBSTITUTE FOR A FULL BUILD.
2215 #
2216
2217 RUMP_LIBSETS='
2218 -lrump,
2219 -lrumpvfs -lrump,
2220 -lrumpvfs -lrumpdev -lrump,
2221 -lrumpnet -lrump,
2222 -lrumpkern_tty -lrumpvfs -lrump,
2223 -lrumpfs_tmpfs -lrumpvfs -lrump,
2224 -lrumpfs_ffs -lrumpfs_msdos -lrumpvfs -lrumpdev_disk -lrumpdev -lrump,
2225 -lrumpnet_virtif -lrumpnet_netinet -lrumpnet_net -lrumpnet
2226 -lrumpdev -lrumpvfs -lrump,
2227 -lrumpnet_sockin -lrumpfs_smbfs -lrumpdev_netsmb
2228 -lrumpkern_crypto -lrumpdev -lrumpnet -lrumpvfs -lrump,
2229 -lrumpnet_sockin -lrumpfs_nfs -lrumpnet -lrumpvfs -lrump,
2230 -lrumpdev_cgd -lrumpdev_raidframe -lrumpdev_disk -lrumpdev_rnd
2231 -lrumpdev_dm -lrumpdev -lrumpvfs -lrumpkern_crypto -lrump'
2232 dorump()
2233 {
2234 local doclean=""
2235 local doobjs=""
2236
2237 # we cannot link libs without building csu, and that leads to lossage
2238 [ "${1}" != "rumptest" ] && bomb 'build.sh rump not yet functional. ' \
2239 'did you mean "rumptest"?'
2240
2241 export RUMPKERN_ONLY=1
2242 # create obj and distrib dirs
2243 if [ "${MKOBJDIRS}" != "no" ]; then
2244 make_in_dir "${NETBSDSRCDIR}/etc/mtree" obj
2245 make_in_dir "${NETBSDSRCDIR}/sys/rump" obj
2246 fi
2247 ${runcmd} "${makewrapper}" ${parallel} do-distrib-dirs \
2248 || bomb 'could not create distrib-dirs'
2249
2250 [ "${MKUPDATE}" = "no" ] && doclean="cleandir"
2251 targlist="${doclean} ${doobjs} dependall install"
2252 # optimize: for test we build only static libs (3x test speedup)
2253 if [ "${1}" = "rumptest" ] ; then
2254 setmakeenv NOPIC 1
2255 setmakeenv NOPROFILE 1
2256 fi
2257 for cmd in ${targlist} ; do
2258 make_in_dir "${NETBSDSRCDIR}/sys/rump" ${cmd}
2259 done
2260
2261 # if we just wanted to build & install rump, we're done
2262 [ "${1}" != "rumptest" ] && return
2263
2264 ${runcmd} cd "${NETBSDSRCDIR}/sys/rump/librump/rumpkern" \
2265 || bomb "cd to rumpkern failed"
2266 md_quirks=`${runcmd} "${makewrapper}" -V '${_SYMQUIRK}'`
2267 # one little, two little, three little backslashes ...
2268 md_quirks="$(echo ${md_quirks} | sed 's,\\,\\\\,g'";s/'//g" )"
2269 ${runcmd} cd "${TOP}" || bomb "cd to ${TOP} failed"
2270 tool_ld=`${runcmd} "${makewrapper}" -V '${LD}'`
2271
2272 local oIFS="${IFS}"
2273 IFS=","
2274 for set in ${RUMP_LIBSETS} ; do
2275 IFS="${oIFS}"
2276 ${runcmd} ${tool_ld} -nostdlib -L${DESTDIR}/usr/lib \
2277 -static --whole-archive ${set} 2>&1 -o /tmp/rumptest.$$ | \
2278 awk -v quirks="${md_quirks}" '
2279 /undefined reference/ &&
2280 !/more undefined references.*follow/{
2281 if (match($NF,
2282 "`(rumpuser_|rumpcomp_|__" quirks ")") == 0)
2283 fails[NR] = $0
2284 }
2285 /cannot find -l/{fails[NR] = $0}
2286 /cannot open output file/{fails[NR] = $0}
2287 END{
2288 for (x in fails)
2289 print fails[x]
2290 exit x!=0
2291 }'
2292 [ $? -ne 0 ] && bomb "Testlink of rump failed: ${set}"
2293 done
2294 statusmsg "Rump build&link tests successful"
2295 }
2296
2297 repro_date() {
2298 # try the bsd date fail back the the linux one
2299 date -u -r "$1" 2> /dev/null || date -u -d "@$1"
2300 }
2301
2302 setup_mkrepro()
2303 {
2304 local quiet="$1"
2305
2306 if [ ${MKREPRO-no} != "yes" ]; then
2307 return
2308 fi
2309 if [ ${MKREPRO_TIMESTAMP-0} -ne 0 ]; then
2310 return
2311 fi
2312
2313 local dirs=${NETBSDSRCDIR-/usr/src}/
2314 if [ ${MKX11-no} = "yes" ]; then
2315 dirs="$dirs ${X11SRCDIR-/usr/xsrc}/"
2316 fi
2317
2318 MKREPRO_TIMESTAMP=0
2319 NETBSD_REVISIONID=
2320 local d
2321 local t
2322 local rid
2323 local tag
2324 local vcs
2325 for d in ${dirs}; do
2326 local base=$( basename "$d" )
2327 if [ -d "${d}CVS" ]; then
2328 local cvslatest=$(print_tooldir_program cvslatest)
2329 if [ ! -x "${cvslatest}" ]; then
2330 buildtools
2331 fi
2332 local nbdate=$(print_tooldir_program date)
2333
2334 local cvslatestflags=
2335 if ${do_expertmode}; then
2336 cvslatestflags=-i
2337 fi
2338
2339 t=$("${cvslatest}" ${cvslatestflags} "${d}")
2340 rid="$(${nbdate} -u -r ${t} '+%Y%m%d%H%M%S')"
2341 vcs=cvs
2342 elif [ -d "${d}.git" -o -f "${d}.git" ]; then
2343 t=$(cd "${d}" && git log -1 --format=%ct)
2344 rid="$(cd "${d}" && git log -1 --format=%H)"
2345 vcs=git
2346 elif [ -d "${d}.hg" ]; then
2347 t=$(cd "${d}" &&
2348 hg log -r . --template '{date(date, "%s")}\n')
2349 rid="$(hg --repo "$d" identify --template '{id}\n')"
2350 vcs=hg
2351 else
2352 bomb "Cannot determine VCS for '$d'"
2353 fi
2354 NETBSD_REVISIONID="${NETBSD_REVISIONID}${NETBSD_REVISIONID:+-}${base}:${rid}"
2355
2356 if [ -z "$t" ]; then
2357 bomb "Failed to get timestamp for vcs=$vcs in '$d'"
2358 fi
2359
2360 #echo "latest $d $vcs $t"
2361 if [ "$t" -gt "$MKREPRO_TIMESTAMP" ]; then
2362 MKREPRO_TIMESTAMP="$t"
2363 fi
2364 done
2365
2366 [ "${MKREPRO_TIMESTAMP}" != "0" ] || bomb "Failed to compute timestamp"
2367 if [ -z "${quiet}" ]; then
2368 statusmsg2 "MKREPRO_TIMESTAMP" \
2369 "$(repro_date "${MKREPRO_TIMESTAMP}")"
2370 fi
2371 export MKREPRO MKREPRO_TIMESTAMP NETBSD_REVISIONID
2372 }
2373
2374 main()
2375 {
2376 initdefaults
2377 _args=$@
2378 parseoptions "$@"
2379
2380 sanitycheck
2381
2382 build_start=$(date)
2383 statusmsg2 "${progname} command:" "$0 $*"
2384 statusmsg2 "${progname} started:" "${build_start}"
2385 statusmsg2 "NetBSD version:" "${DISTRIBVER}"
2386 statusmsg2 "MACHINE:" "${MACHINE}"
2387 statusmsg2 "MACHINE_ARCH:" "${MACHINE_ARCH}"
2388 statusmsg2 "Build platform:" "${uname_s} ${uname_r} ${uname_m}"
2389 statusmsg2 "HOST_SH:" "${HOST_SH}"
2390 if [ -n "${BUILDID}" ]; then
2391 statusmsg2 "BUILDID:" "${BUILDID}"
2392 fi
2393 if [ -n "${BUILDINFO}" ]; then
2394 printf "%b\n" "${BUILDINFO}" | \
2395 while read -r line ; do
2396 [ -s "${line}" ] && continue
2397 statusmsg2 "BUILDINFO:" "${line}"
2398 done
2399 fi
2400
2401 rebuildmake
2402 validatemakeparams
2403 createmakewrapper
2404 setup_mkrepro
2405
2406 # Perform the operations.
2407 #
2408 for op in ${operations}; do
2409 case "${op}" in
2410
2411 makewrapper)
2412 # no-op
2413 ;;
2414
2415 tools)
2416 buildtools
2417 ;;
2418 libs)
2419 buildlibs
2420 ;;
2421
2422 sets)
2423 statusmsg "Building sets from pre-populated ${DESTDIR}"
2424 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
2425 bomb "Failed to make ${op}"
2426 setdir=${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets
2427 statusmsg "Built sets to ${setdir}"
2428 ;;
2429
2430 build|distribution|release)
2431 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
2432 bomb "Failed to make ${op}"
2433 statusmsg "Successful make ${op}"
2434 ;;
2435
2436 cleandir|obj|sourcesets|syspkgs|params)
2437 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
2438 bomb "Failed to make ${op}"
2439 statusmsg "Successful make ${op}"
2440 ;;
2441
2442 iso-image|iso-image-source)
2443 ${runcmd} "${makewrapper}" ${parallel} \
2444 CDEXTRA="$CDEXTRA" ${op} ||
2445 bomb "Failed to make ${op}"
2446 statusmsg "Successful make ${op}"
2447 ;;
2448
2449 live-image|install-image)
2450 # install-image and live-image require mtree spec files
2451 # built with UNPRIVED. Assume UNPRIVED build has been
2452 # performed if METALOG file is created in DESTDIR.
2453 if [ ! -e "${DESTDIR}/METALOG" ] ; then
2454 bomb "The release binaries must have been built with -U to create images."
2455 fi
2456 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
2457 bomb "Failed to make ${op}"
2458 statusmsg "Successful make ${op}"
2459 ;;
2460 kernel=*)
2461 arg=${op#*=}
2462 buildkernel "${arg}"
2463 ;;
2464 kernel.gdb=*)
2465 arg=${op#*=}
2466 configopts="-D DEBUG=-g"
2467 buildkernel "${arg}"
2468 ;;
2469 releasekernel=*)
2470 arg=${op#*=}
2471 releasekernel "${arg}"
2472 ;;
2473
2474 kernels)
2475 buildkernels
2476 ;;
2477
2478 disk-image=*)
2479 arg=${op#*=}
2480 diskimage "${arg}"
2481 ;;
2482
2483 modules)
2484 buildmodules
2485 ;;
2486
2487 installmodules=*)
2488 arg=${op#*=}
2489 if [ "${arg}" = "/" ] && \
2490 ( [ "${uname_s}" != "NetBSD" ] || \
2491 [ "${uname_m}" != "${MACHINE}" ] ); then
2492 bomb "'${op}' must != / for cross builds."
2493 fi
2494 installmodules "${arg}"
2495 ;;
2496
2497 install=*)
2498 arg=${op#*=}
2499 if [ "${arg}" = "/" ] && \
2500 ( [ "${uname_s}" != "NetBSD" ] || \
2501 [ "${uname_m}" != "${MACHINE}" ] ); then
2502 bomb "'${op}' must != / for cross builds."
2503 fi
2504 installworld "${arg}"
2505 ;;
2506
2507 rump|rumptest)
2508 dorump "${op}"
2509 ;;
2510
2511 *)
2512 bomb "Unknown operation \`${op}'"
2513 ;;
2514
2515 esac
2516 done
2517
2518 statusmsg2 "${progname} ended:" "$(date)"
2519 if [ -s "${results}" ]; then
2520 echo "===> Summary of results:"
2521 sed -e 's/^===>//;s/^/ /' "${results}"
2522 echo "===> ."
2523 fi
2524 }
2525
2526 main "$@"
2527