Remove building with NOCRYPTO option
[minix3.git] / build.sh
blobf75c27274d1043e6c81d294545710a3dd482db3d
1 #! /usr/bin/env sh
2 # $NetBSD: build.sh,v 1.308 2015/06/27 06:00:28 matt Exp $
4 # Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
5 # All rights reserved.
7 # This code is derived from software contributed to The NetBSD Foundation
8 # by Todd Vierling and Luke Mewburn.
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.
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.
32 # Top level build wrapper, to build or cross-build NetBSD.
36 # {{{ Begin shell feature tests.
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.
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
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
57 "--no-re-exec")
58 re_exec_allowed=false
59 shift
61 esac
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 "!".
67 if test -z "$errmsg"; then
68 if ( eval '! false' ) >/dev/null 2>&1 ; then
70 else
71 errmsg='Shell does not support "!".'
75 # Does the shell support functions?
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.'
86 # Does the shell support the "local" keyword for variables in functions?
88 # Local variables are not required by SUSv3, but some scripts run during
89 # the NetBSD build use them.
91 # ksh93 fails this test; it uses an incompatible syntax involving the
92 # keywords 'function' and 'typeset'.
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.'
103 # Does the shell support ${var%suffix}, ${var#prefix}, and their variants?
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.
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}".'
119 # Does the shell support IFS?
121 # zsh in normal mode (as opposed to "emulate sh" mode) fails this test.
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.'
133 # Does the shell support ${1+"$@"}?
135 # Some versions of zsh fail this test, even in "emulate sh" mode.
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+"$@"}.'
147 # Does the shell support $(...) command substitution?
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.'
158 # Does the shell support $(...) command substitution with
159 # unbalanced parentheses?
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.
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 ")".'
175 # Does the shell support getopts or getopt?
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.'
187 # If shelltest is true, exit now, reporting whether or not the shell is good.
189 if $shelltest; then
190 if test -n "$errmsg"; then
191 echo >&2 "$0: $errmsg"
192 exit 1
193 else
194 exit 0
199 # If the shell was bad, try to exec a better shell, or report an error.
201 # Loops are broken by passing an extra "--no-re-exec" flag to the new
202 # instance of this script.
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).
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
222 HOST_SH="$othershell"
223 export HOST_SH
224 exec $othershell "$0" --no-re-exec "$@" # avoid ${1+"$@"}
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
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.
236 cat <<EOF
237 $0: $errmsg
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).
243 Please re-run this script under a suitable shell. For example:
245 /path/to/suitable/shell $0 ...
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:
251 HOST_SH=/path/to/suitable/shell
252 export HOST_SH
253 \${HOST_SH} $0 ...
255 exit 1
259 # }}} End shell feature tests.
262 progname=${0##*/}
263 toppid=$$
264 results=/dev/null
265 tab=' '
266 nl='
268 trap "exit 1" 1 2 3 15
270 bomb()
272 cat >&2 <<ERRORMESSAGE
274 ERROR: $@
275 *** BUILD ABORTED ***
276 ERRORMESSAGE
277 kill ${toppid} # in case we were invoked from a subshell
278 exit 1
281 # Quote args to make them safe in the shell.
282 # Usage: quotedlist="$(shell_quote args...)"
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"
290 shell_quote()
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
298 qarg="''"
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"
316 # Arg is not the empty string, and does not contain
317 # any unsafe characters. Leave it unchanged for
318 # readability.
319 qarg="${arg}"
321 esac
322 result="${result}${result:+ }${qarg}"
323 done
324 printf "%s\n" "$result"
327 statusmsg()
329 ${runcmd} echo "===> $@" | tee -a "${results}"
332 statusmsg2()
334 local msg
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}$*"
355 warning()
357 statusmsg "Warning: $@"
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()
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
375 done
376 IFS="${oldIFS}"
377 echo "${result}"
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()
384 # Even if ${HOST_SH} is already defined, we still do the
385 # sanity checks at the end.
387 # Solaris has /usr/xpg4/bin/sh.
389 [ -z "${HOST_SH}" ] && [ x"${uname_s}" = x"SunOS" ] && \
390 [ -x /usr/xpg4/bin/sh ] && HOST_SH="/usr/xpg4/bin/sh"
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.)
402 # If we get the wrong result here, the user can override it by
403 # specifying HOST_SH in the environment.
405 [ -z "${HOST_SH}" ] && HOST_SH="$(
406 (ps -p $$ -o comm | sed -ne "2s/[ ${tab}]*\$//p") 2>/dev/null )"
408 # If nothing above worked, use "sh". We will later find the
409 # first directory in the PATH that has a "sh" program.
411 [ -z "${HOST_SH}" ] && HOST_SH="sh"
413 # If the result so far is not an absolute path, try to prepend
414 # PWD or search the PATH.
416 case "${HOST_SH}" in
417 /*) :
419 */*) HOST_SH="${PWD}/${HOST_SH}"
421 *) HOST_SH="$(find_in_PATH "${HOST_SH}")"
423 esac
425 # If we don't have an absolute path by now, bomb.
427 case "${HOST_SH}" in
428 /*) :
430 *) bomb "HOST_SH=\"${HOST_SH}\" is not an absolute path."
432 esac
434 # If HOST_SH is not executable, bomb.
436 [ -x "${HOST_SH}" ] ||
437 bomb "HOST_SH=\"${HOST_SH}\" is not executable."
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.)
443 "${HOST_SH}" build.sh --shelltest ||
444 bomb "HOST_SH=\"${HOST_SH}\" failed functionality tests."
447 # initdefaults --
448 # Set defaults before parsing command line options.
450 initdefaults()
452 makeenv=
453 makewrapper=
454 makewrappermachine=
455 runcmd=
456 operations=
457 removedirs=
459 [ -d usr.bin/make ] || cd "$(dirname $0)"
460 [ -d usr.bin/make ] ||
461 bomb "build.sh must be run from the top source level"
462 [ -f share/mk/bsd.own.mk ] ||
463 bomb "src/share/mk is missing; please re-fetch the source tree"
465 # Set various environment variables to known defaults,
466 # to minimize (cross-)build problems observed "in the field".
468 # LC_ALL=C must be set before we try to parse the output from
469 # any command. Other variables are set (or unset) here, before
470 # we parse command line arguments.
472 # These variables can be overridden via "-V var=value" if
473 # you know what you are doing.
475 unsetmakeenv INFODIR
476 unsetmakeenv LESSCHARSET
477 unsetmakeenv MAKEFLAGS
478 unsetmakeenv TERMINFO
479 setmakeenv LC_ALL C
481 # Find information about the build platform. This should be
482 # kept in sync with _HOST_OSNAME, _HOST_OSREL, and _HOST_ARCH
483 # variables in share/mk/bsd.sys.mk.
485 # Note that "uname -p" is not part of POSIX, but we want uname_p
486 # to be set to the host MACHINE_ARCH, if possible. On systems
487 # where "uname -p" fails, prints "unknown", or prints a string
488 # that does not look like an identifier, fall back to using the
489 # output from "uname -m" instead.
491 uname_s=$(uname -s 2>/dev/null)
492 uname_r=$(uname -r 2>/dev/null)
493 uname_m=$(uname -m 2>/dev/null)
494 uname_p=$(uname -p 2>/dev/null || echo "unknown")
495 case "${uname_p}" in
496 ''|unknown|*[^-_A-Za-z0-9]*) uname_p="${uname_m}" ;;
497 esac
499 id_u=$(id -u 2>/dev/null || /usr/xpg4/bin/id -u 2>/dev/null)
501 # If $PWD is a valid name of the current directory, POSIX mandates
502 # that pwd return it by default which causes problems in the
503 # presence of symlinks. Unsetting PWD is simpler than changing
504 # every occurrence of pwd to use -P.
506 # XXX Except that doesn't work on Solaris. Or many Linuces.
508 unset PWD
509 TOP=$(/bin/pwd -P 2>/dev/null || /bin/pwd 2>/dev/null)
511 # The user can set HOST_SH in the environment, or we try to
512 # guess an appropriate value. Then we set several other
513 # variables from HOST_SH.
515 set_HOST_SH
516 setmakeenv HOST_SH "${HOST_SH}"
517 setmakeenv BSHELL "${HOST_SH}"
518 setmakeenv CONFIG_SHELL "${HOST_SH}"
520 # Set defaults.
522 toolprefix=nb
524 # Some systems have a small ARG_MAX. -X prevents make(1) from
525 # exporting variables in the environment redundantly.
527 case "${uname_s}" in
528 Darwin | FreeBSD | CYGWIN*)
529 MAKEFLAGS="-X ${MAKEFLAGS}"
531 esac
533 # do_{operation}=true if given operation is requested.
535 do_expertmode=false
536 do_rebuildmake=false
537 do_removedirs=false
538 do_tools=false
539 do_cleandir=false
540 do_obj=false
541 do_build=false
542 do_distribution=false
543 do_release=false
544 do_kernel=false
545 do_releasekernel=false
546 do_kernels=false
547 do_modules=false
548 do_installmodules=false
549 do_install=false
550 do_sets=false
551 do_sourcesets=false
552 do_syspkgs=false
553 do_iso_image=false
554 do_iso_image_source=false
555 do_live_image=false
556 do_install_image=false
557 do_disk_image=false
558 do_show_params=false
559 do_rump=false
561 # done_{operation}=true if given operation has been done.
563 done_rebuildmake=false
565 # Create scratch directory
567 tmpdir="${TMPDIR-/tmp}/nbbuild$$"
568 mkdir "${tmpdir}" || bomb "Cannot mkdir: ${tmpdir}"
569 trap "cd /; rm -r -f \"${tmpdir}\"" 0
570 results="${tmpdir}/build.sh.results"
572 # Set source directories
574 setmakeenv NETBSDSRCDIR "${TOP}"
576 # Make sure KERNOBJDIR is an absolute path if defined
578 case "${KERNOBJDIR}" in
579 ''|/*) ;;
580 *) KERNOBJDIR="${TOP}/${KERNOBJDIR}"
581 setmakeenv KERNOBJDIR "${KERNOBJDIR}"
583 esac
585 # Find the version of NetBSD
587 DISTRIBVER="$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh)"
589 # Set the BUILDSEED to NetBSD-"N"
591 setmakeenv BUILDSEED "MINIX-$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh -m)"
593 # Set MKARZERO to "yes"
595 setmakeenv MKARZERO "yes"
599 # valid_MACHINE_ARCH -- A multi-line string, listing all valid
600 # MACHINE/MACHINE_ARCH pairs.
602 # Each line contains a MACHINE and MACHINE_ARCH value, an optional ALIAS
603 # which may be used to refer to the MACHINE/MACHINE_ARCH pair, and an
604 # optional DEFAULT or NO_DEFAULT keyword.
606 # When a MACHINE corresponds to multiple possible values of
607 # MACHINE_ARCH, then this table should list all allowed combinations.
608 # If the MACHINE is associated with a default MACHINE_ARCH (to be
609 # used when the user specifies the MACHINE but fails to specify the
610 # MACHINE_ARCH), then one of the lines should have the "DEFAULT"
611 # keyword. If there is no default MACHINE_ARCH for a particular
612 # MACHINE, then there should be a line with the "NO_DEFAULT" keyword,
613 # and with a blank MACHINE_ARCH.
615 valid_MACHINE_ARCH='
616 MACHINE=acorn26 MACHINE_ARCH=arm
617 MACHINE=acorn32 MACHINE_ARCH=arm
618 MACHINE=algor MACHINE_ARCH=mips64el ALIAS=algor64
619 MACHINE=algor MACHINE_ARCH=mipsel DEFAULT
620 MACHINE=alpha MACHINE_ARCH=alpha
621 MACHINE=amd64 MACHINE_ARCH=x86_64
622 MACHINE=amiga MACHINE_ARCH=m68k
623 MACHINE=amigappc MACHINE_ARCH=powerpc
624 MACHINE=arc MACHINE_ARCH=mips64el ALIAS=arc64
625 MACHINE=arc MACHINE_ARCH=mipsel DEFAULT
626 MACHINE=atari MACHINE_ARCH=m68k
627 MACHINE=bebox MACHINE_ARCH=powerpc
628 MACHINE=cats MACHINE_ARCH=arm ALIAS=ocats
629 MACHINE=cats MACHINE_ARCH=earmv4 ALIAS=ecats DEFAULT
630 MACHINE=cesfic MACHINE_ARCH=m68k
631 MACHINE=cobalt MACHINE_ARCH=mips64el ALIAS=cobalt64
632 MACHINE=cobalt MACHINE_ARCH=mipsel DEFAULT
633 MACHINE=dreamcast MACHINE_ARCH=sh3el
634 MACHINE=emips MACHINE_ARCH=mipseb
635 MACHINE=epoc32 MACHINE_ARCH=arm
636 MACHINE=evbarm MACHINE_ARCH=arm ALIAS=evboarm-el
637 MACHINE=evbarm MACHINE_ARCH=armeb ALIAS=evboarm-eb
638 MACHINE=evbarm MACHINE_ARCH=earm ALIAS=evbearm-el DEFAULT
639 MACHINE=evbarm MACHINE_ARCH=earmeb ALIAS=evbearm-eb
640 MACHINE=evbarm MACHINE_ARCH=earmhf ALIAS=evbearmhf-el
641 MACHINE=evbarm MACHINE_ARCH=earmhfeb ALIAS=evbearmhf-eb
642 MACHINE=evbarm MACHINE_ARCH=earmv4 ALIAS=evbearmv4-el
643 MACHINE=evbarm MACHINE_ARCH=earmv4eb ALIAS=evbearmv4-eb
644 MACHINE=evbarm MACHINE_ARCH=earmv5 ALIAS=evbearmv5-el
645 MACHINE=evbarm MACHINE_ARCH=earmv5eb ALIAS=evbearmv5-eb
646 MACHINE=evbarm MACHINE_ARCH=earmv6 ALIAS=evbearmv6-el
647 MACHINE=evbarm MACHINE_ARCH=earmv6hf ALIAS=evbearmv6hf-el
648 MACHINE=evbarm MACHINE_ARCH=earmv6eb ALIAS=evbearmv6-eb
649 MACHINE=evbarm MACHINE_ARCH=earmv6hfeb ALIAS=evbearmv6hf-eb
650 MACHINE=evbarm MACHINE_ARCH=earmv7 ALIAS=evbearmv7-el
651 MACHINE=evbarm MACHINE_ARCH=earmv7eb ALIAS=evbearmv7-eb
652 MACHINE=evbarm MACHINE_ARCH=earmv7hf ALIAS=evbearmv7hf-el
653 MACHINE=evbarm MACHINE_ARCH=earmv7hfeb ALIAS=evbearmv7hf-eb
654 MACHINE=evbarm64 MACHINE_ARCH=aarch64 ALIAS=evbarm64-el DEFAULT
655 MACHINE=evbarm64 MACHINE_ARCH=aarch64eb ALIAS=evbarm64-eb
656 MACHINE=evbcf MACHINE_ARCH=coldfire
657 MACHINE=evbmips MACHINE_ARCH= NO_DEFAULT
658 MACHINE=evbmips MACHINE_ARCH=mips64eb ALIAS=evbmips64-eb
659 MACHINE=evbmips MACHINE_ARCH=mips64el ALIAS=evbmips64-el
660 MACHINE=evbmips MACHINE_ARCH=mipseb ALIAS=evbmips-eb
661 MACHINE=evbmips MACHINE_ARCH=mipsel ALIAS=evbmips-el
662 MACHINE=evbppc MACHINE_ARCH=powerpc DEFAULT
663 MACHINE=evbppc MACHINE_ARCH=powerpc64 ALIAS=evbppc64
664 MACHINE=evbsh3 MACHINE_ARCH= NO_DEFAULT
665 MACHINE=evbsh3 MACHINE_ARCH=sh3eb ALIAS=evbsh3-eb
666 MACHINE=evbsh3 MACHINE_ARCH=sh3el ALIAS=evbsh3-el
667 MACHINE=ews4800mips MACHINE_ARCH=mipseb
668 MACHINE=hp300 MACHINE_ARCH=m68k
669 MACHINE=hppa MACHINE_ARCH=hppa
670 MACHINE=hpcarm MACHINE_ARCH=arm ALIAS=hpcoarm
671 MACHINE=hpcarm MACHINE_ARCH=earmv4 ALIAS=hpcearm DEFAULT
672 MACHINE=hpcmips MACHINE_ARCH=mipsel
673 MACHINE=hpcsh MACHINE_ARCH=sh3el
674 MACHINE=i386 MACHINE_ARCH=i386
675 MACHINE=ia64 MACHINE_ARCH=ia64
676 MACHINE=ibmnws MACHINE_ARCH=powerpc
677 MACHINE=iyonix MACHINE_ARCH=arm ALIAS=oiyonix
678 MACHINE=iyonix MACHINE_ARCH=earm ALIAS=eiyonix DEFAULT
679 MACHINE=landisk MACHINE_ARCH=sh3el
680 MACHINE=luna68k MACHINE_ARCH=m68k
681 MACHINE=mac68k MACHINE_ARCH=m68k
682 MACHINE=macppc MACHINE_ARCH=powerpc DEFAULT
683 MACHINE=macppc MACHINE_ARCH=powerpc64 ALIAS=macppc64
684 MACHINE=mipsco MACHINE_ARCH=mipseb
685 MACHINE=mmeye MACHINE_ARCH=sh3eb
686 MACHINE=mvme68k MACHINE_ARCH=m68k
687 MACHINE=mvmeppc MACHINE_ARCH=powerpc
688 MACHINE=netwinder MACHINE_ARCH=arm ALIAS=onetwinder
689 MACHINE=netwinder MACHINE_ARCH=earmv4 ALIAS=enetwinder DEFAULT
690 MACHINE=news68k MACHINE_ARCH=m68k
691 MACHINE=newsmips MACHINE_ARCH=mipseb
692 MACHINE=next68k MACHINE_ARCH=m68k
693 MACHINE=ofppc MACHINE_ARCH=powerpc DEFAULT
694 MACHINE=ofppc MACHINE_ARCH=powerpc64 ALIAS=ofppc64
695 MACHINE=or1k MACHINE_ARCH=or1k
696 MACHINE=playstation2 MACHINE_ARCH=mipsel
697 MACHINE=pmax MACHINE_ARCH=mips64el ALIAS=pmax64
698 MACHINE=pmax MACHINE_ARCH=mipsel DEFAULT
699 MACHINE=prep MACHINE_ARCH=powerpc
700 MACHINE=riscv MACHINE_ARCH=riscv64 ALIAS=riscv64 DEFAULT
701 MACHINE=riscv MACHINE_ARCH=riscv32 ALIAS=riscv32
702 MACHINE=rs6000 MACHINE_ARCH=powerpc
703 MACHINE=sandpoint MACHINE_ARCH=powerpc
704 MACHINE=sbmips MACHINE_ARCH= NO_DEFAULT
705 MACHINE=sbmips MACHINE_ARCH=mips64eb ALIAS=sbmips64-eb
706 MACHINE=sbmips MACHINE_ARCH=mips64el ALIAS=sbmips64-el
707 MACHINE=sbmips MACHINE_ARCH=mipseb ALIAS=sbmips-eb
708 MACHINE=sbmips MACHINE_ARCH=mipsel ALIAS=sbmips-el
709 MACHINE=sgimips MACHINE_ARCH=mips64eb ALIAS=sgimips64
710 MACHINE=sgimips MACHINE_ARCH=mipseb DEFAULT
711 MACHINE=shark MACHINE_ARCH=arm ALIAS=oshark
712 MACHINE=shark MACHINE_ARCH=earmv4 ALIAS=eshark DEFAULT
713 MACHINE=sparc MACHINE_ARCH=sparc
714 MACHINE=sparc64 MACHINE_ARCH=sparc64
715 MACHINE=sun2 MACHINE_ARCH=m68000
716 MACHINE=sun3 MACHINE_ARCH=m68k
717 MACHINE=vax MACHINE_ARCH=vax
718 MACHINE=x68k MACHINE_ARCH=m68k
719 MACHINE=zaurus MACHINE_ARCH=arm ALIAS=ozaurus
720 MACHINE=zaurus MACHINE_ARCH=earm ALIAS=ezaurus DEFAULT
723 # getarch -- find the default MACHINE_ARCH for a MACHINE,
724 # or convert an alias to a MACHINE/MACHINE_ARCH pair.
726 # Saves the original value of MACHINE in makewrappermachine before
727 # alias processing.
729 # Sets MACHINE and MACHINE_ARCH if the input MACHINE value is
730 # recognised as an alias, or recognised as a machine that has a default
731 # MACHINE_ARCH (or that has only one possible MACHINE_ARCH).
733 # Leaves MACHINE and MACHINE_ARCH unchanged if MACHINE is recognised
734 # as being associated with multiple MACHINE_ARCH values with no default.
736 # Bombs if MACHINE is not recognised.
738 getarch()
740 local IFS
741 local found=""
742 local line
744 IFS="${nl}"
745 makewrappermachine="${MACHINE}"
746 for line in ${valid_MACHINE_ARCH}; do
747 line="${line%%#*}" # ignore comments
748 line="$( IFS=" ${tab}" ; echo $line )" # normalise white space
749 case "${line} " in
750 " ")
751 # skip blank lines or comment lines
752 continue
754 *" ALIAS=${MACHINE} "*)
755 # Found a line with a matching ALIAS=<alias>.
756 found="$line"
757 break
759 "MACHINE=${MACHINE} "*" NO_DEFAULT"*)
760 # Found an explicit "NO_DEFAULT" for this MACHINE.
761 found="$line"
762 break
764 "MACHINE=${MACHINE} "*" DEFAULT"*)
765 # Found an explicit "DEFAULT" for this MACHINE.
766 found="$line"
767 break
769 "MACHINE=${MACHINE} "*)
770 # Found a line for this MACHINE. If it's the
771 # first such line, then tentatively accept it.
772 # If it's not the first matching line, then
773 # remember that there was more than one match.
774 case "$found" in
775 '') found="$line" ;;
776 *) found="MULTIPLE_MATCHES" ;;
777 esac
779 esac
780 done
782 case "$found" in
783 *NO_DEFAULT*|*MULTIPLE_MATCHES*)
784 # MACHINE is OK, but MACHINE_ARCH is still unknown
785 return
787 "MACHINE="*" MACHINE_ARCH="*)
788 # Obey the MACHINE= and MACHINE_ARCH= parts of the line.
789 IFS=" "
790 for frag in ${found}; do
791 case "$frag" in
792 MACHINE=*|MACHINE_ARCH=*)
793 eval "$frag"
795 esac
796 done
799 bomb "Unknown target MACHINE: ${MACHINE}"
801 esac
804 # validatearch -- check that the MACHINE/MACHINE_ARCH pair is supported.
806 # Bombs if the pair is not supported.
808 validatearch()
810 local IFS
811 local line
812 local foundpair=false foundmachine=false foundarch=false
814 case "${MACHINE_ARCH}" in
816 bomb "No MACHINE_ARCH provided"
818 esac
820 IFS="${nl}"
821 for line in ${valid_MACHINE_ARCH}; do
822 line="${line%%#*}" # ignore comments
823 line="$( IFS=" ${tab}" ; echo $line )" # normalise white space
824 case "${line} " in
825 " ")
826 # skip blank lines or comment lines
827 continue
829 "MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} "*)
830 foundpair=true
832 "MACHINE=${MACHINE} "*)
833 foundmachine=true
835 *"MACHINE_ARCH=${MACHINE_ARCH} "*)
836 foundarch=true
838 esac
839 done
841 case "${foundpair}:${foundmachine}:${foundarch}" in
842 true:*)
843 : OK
845 *:false:*)
846 bomb "Unknown target MACHINE: ${MACHINE}"
848 *:*:false)
849 bomb "Unknown target MACHINE_ARCH: ${MACHINE_ARCH}"
852 bomb "MACHINE_ARCH '${MACHINE_ARCH}' does not support MACHINE '${MACHINE}'"
854 esac
857 # listarch -- list valid MACHINE/MACHINE_ARCH/ALIAS values,
858 # optionally restricted to those where the MACHINE and/or MACHINE_ARCH
859 # match specifed glob patterns.
861 listarch()
863 local machglob="$1" archglob="$2"
864 local IFS
865 local wildcard="*"
866 local line xline frag
867 local line_matches_machine line_matches_arch
868 local found=false
870 # Empty machglob or archglob should match anything
871 : "${machglob:=${wildcard}}"
872 : "${archglob:=${wildcard}}"
874 IFS="${nl}"
875 for line in ${valid_MACHINE_ARCH}; do
876 line="${line%%#*}" # ignore comments
877 xline="$( IFS=" ${tab}" ; echo $line )" # normalise white space
878 [ -z "${xline}" ] && continue # skip blank or comment lines
880 line_matches_machine=false
881 line_matches_arch=false
883 IFS=" "
884 for frag in ${xline}; do
885 case "${frag}" in
886 MACHINE=${machglob})
887 line_matches_machine=true ;;
888 ALIAS=${machglob})
889 line_matches_machine=true ;;
890 MACHINE_ARCH=${archglob})
891 line_matches_arch=true ;;
892 esac
893 done
895 if $line_matches_machine && $line_matches_arch; then
896 found=true
897 echo "$line"
899 done
900 if ! $found; then
901 echo >&2 "No match for" \
902 "MACHINE=${machglob} MACHINE_ARCH=${archglob}"
903 return 1
905 return 0
908 # nobomb_getmakevar --
909 # Given the name of a make variable in $1, print make's idea of the
910 # value of that variable, or return 1 if there's an error.
912 nobomb_getmakevar()
914 [ -x "${make}" ] || return 1
915 "${make}" -m ${TOP}/share/mk -s -B -f- _x_ <<EOF || return 1
916 _x_:
917 echo \${$1}
918 # LSC FIXME: We are cross compiling, so overwrite default and build tools
919 USETOOLS:=yes
920 .include <bsd.prog.mk>
921 .include <bsd.kernobj.mk>
925 # bomb_getmakevar --
926 # Given the name of a make variable in $1, print make's idea of the
927 # value of that variable, or bomb if there's an error.
929 bomb_getmakevar()
931 [ -x "${make}" ] || bomb "bomb_getmakevar $1: ${make} is not executable"
932 nobomb_getmakevar "$1" || bomb "bomb_getmakevar $1: ${make} failed"
935 # getmakevar --
936 # Given the name of a make variable in $1, print make's idea of the
937 # value of that variable, or print a literal '$' followed by the
938 # variable name if ${make} is not executable. This is intended for use in
939 # messages that need to be readable even if $make hasn't been built,
940 # such as when build.sh is run with the "-n" option.
942 getmakevar()
944 if [ -x "${make}" ]; then
945 bomb_getmakevar "$1"
946 else
947 echo "\$$1"
951 setmakeenv()
953 eval "$1='$2'; export $1"
954 makeenv="${makeenv} $1"
957 unsetmakeenv()
959 eval "unset $1"
960 makeenv="${makeenv} $1"
963 # Given a variable name in $1, modify the variable in place as follows:
964 # For each space-separated word in the variable, call resolvepath.
965 resolvepaths()
967 local var="$1"
968 local val
969 eval val=\"\${${var}}\"
970 local newval=''
971 local word
972 for word in ${val}; do
973 resolvepath word
974 newval="${newval}${newval:+ }${word}"
975 done
976 eval ${var}=\"\${newval}\"
979 # Given a variable name in $1, modify the variable in place as follows:
980 # Convert possibly-relative path to absolute path by prepending
981 # ${TOP} if necessary. Also delete trailing "/", if any.
982 resolvepath()
984 local var="$1"
985 local val
986 eval val=\"\${${var}}\"
987 case "${val}" in
991 val="${val%/}"
994 val="${TOP}/${val%/}"
996 esac
997 eval ${var}=\"\${val}\"
1000 usage()
1002 if [ -n "$*" ]; then
1003 echo ""
1004 echo "${progname}: $*"
1006 cat <<_usage_
1008 Usage: ${progname} [-EhnorUuxy] [-a arch] [-B buildid] [-C cdextras]
1009 [-D dest] [-j njob] [-M obj] [-m mach] [-N noisy]
1010 [-O obj] [-R release] [-S seed] [-T tools]
1011 [-V var=[value]] [-w wrapper] [-X x11src] [-Y extsrcsrc]
1012 [-Z var]
1013 operation [...]
1015 Build operations (all imply "obj" and "tools"):
1016 build Run "make build".
1017 distribution Run "make distribution" (includes DESTDIR/etc/ files).
1018 release Run "make release" (includes kernels & distrib media).
1020 Other operations:
1021 help Show this message and exit.
1022 makewrapper Create ${toolprefix}make-\${MACHINE} wrapper and ${toolprefix}make.
1023 Always performed.
1024 cleandir Run "make cleandir". [Default unless -u is used]
1025 obj Run "make obj". [Default unless -o is used]
1026 tools Build and install tools.
1027 install=idir Run "make installworld" to \`idir' to install all sets
1028 except \`etc'. Useful after "distribution" or "release"
1029 kernel=conf Build kernel with config file \`conf'
1030 kernel.gdb=conf Build kernel (including netbsd.gdb) with config
1031 file \`conf'
1032 releasekernel=conf Install kernel built by kernel=conf to RELEASEDIR.
1033 kernels Build all kernels
1034 installmodules=idir Run "make installmodules" to \`idir' to install all
1035 kernel modules.
1036 modules Build kernel modules.
1037 rumptest Do a linktest for rump (for developers).
1038 sets Create binary sets in
1039 RELEASEDIR/RELEASEMACHINEDIR/binary/sets.
1040 DESTDIR should be populated beforehand.
1041 sourcesets Create source sets in RELEASEDIR/source/sets.
1042 syspkgs Create syspkgs in
1043 RELEASEDIR/RELEASEMACHINEDIR/binary/syspkgs.
1044 iso-image Create CD-ROM image in RELEASEDIR/images.
1045 iso-image-source Create CD-ROM image with source in RELEASEDIR/images.
1046 live-image Create bootable live image in
1047 RELEASEDIR/RELEASEMACHINEDIR/installation/liveimage.
1048 install-image Create bootable installation image in
1049 RELEASEDIR/RELEASEMACHINEDIR/installation/installimage.
1050 disk-image=target Create bootable disk image in
1051 RELEASEDIR/RELEASEMACHINEDIR/binary/gzimg/target.img.gz.
1052 params Display various make(1) parameters.
1053 list-arch Display a list of valid MACHINE/MACHINE_ARCH values,
1054 and exit. The list may be narrowed by passing glob
1055 patterns or exact values in MACHINE or MACHINE_ARCH.
1057 Options:
1058 -a arch Set MACHINE_ARCH to arch. [Default: deduced from MACHINE]
1059 -B buildid Set BUILDID to buildid.
1060 -C cdextras Append cdextras to CDEXTRA variable for inclusion on CD-ROM.
1061 -D dest Set DESTDIR to dest. [Default: destdir.MACHINE]
1062 -E Set "expert" mode; disables various safety checks.
1063 Should not be used without expert knowledge of the build system.
1064 -h Print this help message.
1065 -j njob Run up to njob jobs in parallel; see make(1) -j.
1066 -M obj Set obj root directory to obj; sets MAKEOBJDIRPREFIX.
1067 Unsets MAKEOBJDIR.
1068 -m mach Set MACHINE to mach. Some mach values are actually
1069 aliases that set MACHINE/MACHINE_ARCH pairs.
1070 [Default: deduced from the host system if the host
1071 OS is NetBSD]
1072 -N noisy Set the noisyness (MAKEVERBOSE) level of the build:
1073 0 Minimal output ("quiet")
1074 1 Describe what is occurring
1075 2 Describe what is occurring and echo the actual command
1076 3 Ignore the effect of the "@" prefix in make commands
1077 4 Trace shell commands using the shell's -x flag
1078 [Default: 2]
1079 -n Show commands that would be executed, but do not execute them.
1080 -O obj Set obj root directory to obj; sets a MAKEOBJDIR pattern.
1081 Unsets MAKEOBJDIRPREFIX.
1082 -o Set MKOBJDIRS=no; do not create objdirs at start of build.
1083 -R release Set RELEASEDIR to release. [Default: releasedir]
1084 -r Remove contents of TOOLDIR and DESTDIR before building.
1085 -S seed Set BUILDSEED to seed. [Default: NetBSD-majorversion]
1086 -T tools Set TOOLDIR to tools. If unset, and TOOLDIR is not set in
1087 the environment, ${toolprefix}make will be (re)built
1088 unconditionally.
1089 -U Set MKUNPRIVED=yes; build without requiring root privileges,
1090 install from an UNPRIVED build with proper file permissions.
1091 -u Set MKUPDATE=yes; do not run "make cleandir" first.
1092 Without this, everything is rebuilt, including the tools.
1093 -V var=[value] Set variable \`var' to \`value'.
1094 -w wrapper Create ${toolprefix}make script as wrapper.
1095 [Default: \${TOOLDIR}/bin/${toolprefix}make-\${MACHINE}]
1096 -X x11src Set X11SRCDIR to x11src. [Default: /usr/xsrc]
1097 -x Set MKX11=yes; build X11 from X11SRCDIR
1098 -Y extsrcsrc Set EXTSRCSRCDIR to extsrcsrc. [Default: /usr/extsrc]
1099 -y Set MKEXTSRC=yes; build extsrc from EXTSRCSRCDIR
1100 -Z var Unset ("zap") variable \`var'.
1102 _usage_
1103 exit 1
1106 parseoptions()
1108 opts='a:B:C:D:Ehj:M:m:N:nO:oR:rS:T:UuV:w:X:xY:yZ:'
1109 opt_a=false
1110 opt_m=false
1112 if type getopts >/dev/null 2>&1; then
1113 # Use POSIX getopts.
1115 getoptcmd='getopts ${opts} opt && opt=-${opt}'
1116 optargcmd=':'
1117 optremcmd='shift $((${OPTIND} -1))'
1118 else
1119 type getopt >/dev/null 2>&1 ||
1120 bomb "Shell does not support getopts or getopt"
1122 # Use old-style getopt(1) (doesn't handle whitespace in args).
1124 args="$(getopt ${opts} $*)"
1125 [ $? = 0 ] || usage
1126 set -- ${args}
1128 getoptcmd='[ $# -gt 0 ] && opt="$1" && shift'
1129 optargcmd='OPTARG="$1"; shift'
1130 optremcmd=':'
1133 # Parse command line options.
1135 while eval ${getoptcmd}; do
1136 case ${opt} in
1139 eval ${optargcmd}
1140 MACHINE_ARCH=${OPTARG}
1141 opt_a=true
1145 eval ${optargcmd}
1146 BUILDID=${OPTARG}
1150 eval ${optargcmd}; resolvepaths OPTARG
1151 CDEXTRA="${CDEXTRA}${CDEXTRA:+ }${OPTARG}"
1155 eval ${optargcmd}; resolvepath OPTARG
1156 setmakeenv DESTDIR "${OPTARG}"
1160 do_expertmode=true
1164 eval ${optargcmd}
1165 parallel="-j ${OPTARG}"
1169 eval ${optargcmd}; resolvepath OPTARG
1170 case "${OPTARG}" in
1171 \$*) usage "-M argument must not begin with '\$'"
1173 *\$*) # can use resolvepath, but can't set TOP_objdir
1174 resolvepath OPTARG
1176 *) resolvepath OPTARG
1177 TOP_objdir="${OPTARG}${TOP}"
1179 esac
1180 unsetmakeenv MAKEOBJDIR
1181 setmakeenv MAKEOBJDIRPREFIX "${OPTARG}"
1184 # -m overrides MACHINE_ARCH unless "-a" is specified
1186 eval ${optargcmd}
1187 MACHINE="${OPTARG}"
1188 opt_m=true
1192 eval ${optargcmd}
1193 case "${OPTARG}" in
1194 0|1|2|3|4)
1195 setmakeenv MAKEVERBOSE "${OPTARG}"
1198 usage "'${OPTARG}' is not a valid value for -N"
1200 esac
1204 runcmd=echo
1208 eval ${optargcmd}
1209 case "${OPTARG}" in
1210 *\$*) usage "-O argument must not contain '\$'"
1212 *) resolvepath OPTARG
1213 TOP_objdir="${OPTARG}"
1215 esac
1216 unsetmakeenv MAKEOBJDIRPREFIX
1217 setmakeenv MAKEOBJDIR "\${.CURDIR:C,^$TOP,$OPTARG,}"
1221 MKOBJDIRS=no
1225 eval ${optargcmd}; resolvepath OPTARG
1226 setmakeenv RELEASEDIR "${OPTARG}"
1230 do_removedirs=true
1231 do_rebuildmake=true
1235 eval ${optargcmd}
1236 setmakeenv BUILDSEED "${OPTARG}"
1240 eval ${optargcmd}; resolvepath OPTARG
1241 TOOLDIR="${OPTARG}"
1242 export TOOLDIR
1246 setmakeenv MKUNPRIVED yes
1250 setmakeenv MKUPDATE yes
1254 eval ${optargcmd}
1255 case "${OPTARG}" in
1256 # XXX: consider restricting which variables can be changed?
1257 [a-zA-Z_][a-zA-Z_0-9]*=*)
1258 setmakeenv "${OPTARG%%=*}" "${OPTARG#*=}"
1261 usage "-V argument must be of the form 'var=[value]'"
1263 esac
1267 eval ${optargcmd}; resolvepath OPTARG
1268 makewrapper="${OPTARG}"
1272 eval ${optargcmd}; resolvepath OPTARG
1273 setmakeenv X11SRCDIR "${OPTARG}"
1277 setmakeenv MKX11 yes
1281 eval ${optargcmd}; resolvepath OPTARG
1282 setmakeenv EXTSRCSRCDIR "${OPTARG}"
1286 setmakeenv MKEXTSRC yes
1290 eval ${optargcmd}
1291 # XXX: consider restricting which variables can be unset?
1292 unsetmakeenv "${OPTARG}"
1296 break
1299 -'?'|-h)
1300 usage
1303 esac
1304 done
1306 # Validate operations.
1308 eval ${optremcmd}
1309 while [ $# -gt 0 ]; do
1310 op=$1; shift
1311 operations="${operations} ${op}"
1313 case "${op}" in
1315 help)
1316 usage
1319 list-arch)
1320 listarch "${MACHINE}" "${MACHINE_ARCH}"
1321 exit $?
1324 show-params)
1325 op=show_params # used as part of a variable name
1328 kernel=*|releasekernel=*|kernel.gdb=*)
1329 arg=${op#*=}
1330 op=${op%%=*}
1331 [ -n "${arg}" ] ||
1332 bomb "Must supply a kernel name with \`${op}=...'"
1335 disk-image=*)
1336 arg=${op#*=}
1337 op=disk_image
1338 [ -n "${arg}" ] ||
1339 bomb "Must supply a target name with \`${op}=...'"
1343 install=*|installmodules=*)
1344 arg=${op#*=}
1345 op=${op%%=*}
1346 [ -n "${arg}" ] ||
1347 bomb "Must supply a directory with \`install=...'"
1350 build|\
1351 cleandir|\
1352 distribution|\
1353 install-image|\
1354 iso-image-source|\
1355 iso-image|\
1356 kernels|\
1357 live-image|\
1358 makewrapper|\
1359 modules|\
1360 obj|\
1361 params|\
1362 release|\
1363 rump|\
1364 rumptest|\
1365 sets|\
1366 sourcesets|\
1367 syspkgs|\
1368 tools)
1372 usage "Unknown operation \`${op}'"
1375 esac
1376 # ${op} may contain chars that are not allowed in variable
1377 # names. Replace them with '_' before setting do_${op}.
1378 op="$( echo "$op" | tr -s '.-' '__')"
1379 eval do_${op}=true
1380 done
1381 [ -n "${operations}" ] || usage "Missing operation to perform."
1383 # Set up MACHINE*. On a NetBSD host, these are allowed to be unset.
1385 if [ -z "${MACHINE}" ]; then
1386 [ "${uname_s}" = "Minix" ] ||
1387 bomb "MACHINE must be set, or -m must be used, for cross builds."
1388 MACHINE=${uname_m}
1390 if $opt_m && ! $opt_a; then
1391 # Settings implied by the command line -m option
1392 # override MACHINE_ARCH from the environment (if any).
1393 getarch
1395 [ -n "${MACHINE_ARCH}" ] || getarch
1396 validatearch
1398 # Set up default make(1) environment.
1400 makeenv="${makeenv} TOOLDIR MACHINE MACHINE_ARCH MAKEFLAGS"
1401 [ -z "${BUILDID}" ] || makeenv="${makeenv} BUILDID"
1402 [ -z "${BUILDINFO}" ] || makeenv="${makeenv} BUILDINFO"
1403 MAKEFLAGS="-de -m ${TOP}/share/mk ${MAKEFLAGS}"
1404 MAKEFLAGS="${MAKEFLAGS} MKOBJDIRS=${MKOBJDIRS-yes}"
1405 export MAKEFLAGS MACHINE MACHINE_ARCH
1406 setmakeenv USETOOLS "yes"
1407 setmakeenv MAKEWRAPPERMACHINE "${makewrappermachine:-${MACHINE}}"
1410 # sanitycheck --
1411 # Sanity check after parsing command line options, before rebuildmake.
1413 sanitycheck()
1415 # Install as non-root is a bad idea.
1417 if ${do_install} && [ "$id_u" -ne 0 ] ; then
1418 if ${do_expertmode}; then
1419 warning "Will install as an unprivileged user."
1420 else
1421 bomb "-E must be set for install as an unprivileged user."
1425 # If the PATH contains any non-absolute components (including,
1426 # but not limited to, "." or ""), then complain. As an exception,
1427 # allow "" or "." as the last component of the PATH. This is fatal
1428 # if expert mode is not in effect.
1430 local path="${PATH}"
1431 path="${path%:}" # delete trailing ":"
1432 path="${path%:.}" # delete trailing ":."
1433 case ":${path}:/" in
1434 *:[!/]*)
1435 if ${do_expertmode}; then
1436 warning "PATH contains non-absolute components"
1437 else
1438 bomb "PATH environment variable must not" \
1439 "contain non-absolute components"
1442 esac
1445 # print_tooldir_make --
1446 # Try to find and print a path to an existing
1447 # ${TOOLDIR}/bin/${toolprefix}make, for use by rebuildmake() before a
1448 # new version of ${toolprefix}make has been built.
1450 # * If TOOLDIR was set in the environment or on the command line, use
1451 # that value.
1452 # * Otherwise try to guess what TOOLDIR would be if not overridden by
1453 # /etc/mk.conf, and check whether the resulting directory contains
1454 # a copy of ${toolprefix}make (this should work for everybody who
1455 # doesn't override TOOLDIR via /etc/mk.conf);
1456 # * Failing that, search for ${toolprefix}make, nbmake, bmake, or make,
1457 # in the PATH (this might accidentally find a version of make that
1458 # does not understand the syntax used by NetBSD make, and that will
1459 # lead to failure in the next step);
1460 # * If a copy of make was found above, try to use it with
1461 # nobomb_getmakevar to find the correct value for TOOLDIR, and believe the
1462 # result only if it's a directory that already exists;
1463 # * If a value of TOOLDIR was found above, and if
1464 # ${TOOLDIR}/bin/${toolprefix}make exists, print that value.
1466 print_tooldir_make()
1468 local possible_TOP_OBJ
1469 local possible_TOOLDIR
1470 local possible_make
1471 local tooldir_make
1473 if [ -n "${TOOLDIR}" ]; then
1474 echo "${TOOLDIR}/bin/${toolprefix}make"
1475 return 0
1478 # Set host_ostype to something like "NetBSD-4.5.6-i386". This
1479 # is intended to match the HOST_OSTYPE variable in <bsd.own.mk>.
1481 local host_ostype="${uname_s}-$(
1482 echo "${uname_r}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
1483 )-$(
1484 echo "${uname_p}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
1487 # Look in a few potential locations for
1488 # ${possible_TOOLDIR}/bin/${toolprefix}make.
1489 # If we find it, then set possible_make.
1491 # In the usual case (without interference from environment
1492 # variables or /etc/mk.conf), <bsd.own.mk> should set TOOLDIR to
1493 # "${_SRC_TOP_OBJ_}/tooldir.${host_ostype}".
1495 # In practice it's difficult to figure out the correct value
1496 # for _SRC_TOP_OBJ_. In the easiest case, when the -M or -O
1497 # options were passed to build.sh, then ${TOP_objdir} will be
1498 # the correct value. We also try a few other possibilities, but
1499 # we do not replicate all the logic of <bsd.obj.mk>.
1501 for possible_TOP_OBJ in \
1502 "${TOP_objdir}" \
1503 "${MAKEOBJDIRPREFIX:+${MAKEOBJDIRPREFIX}${TOP}}" \
1504 "${TOP}" \
1505 "${TOP}/obj" \
1506 "${TOP}/obj.${MACHINE}"
1508 [ -n "${possible_TOP_OBJ}" ] || continue
1509 possible_TOOLDIR="${possible_TOP_OBJ}/tooldir.${host_ostype}"
1510 possible_make="${possible_TOOLDIR}/bin/${toolprefix}make"
1511 if [ -x "${possible_make}" ]; then
1512 break
1513 else
1514 unset possible_make
1516 done
1518 # If the above didn't work, search the PATH for a suitable
1519 # ${toolprefix}make, nbmake, bmake, or make.
1521 : ${possible_make:=$(find_in_PATH ${toolprefix}make '')}
1522 : ${possible_make:=$(find_in_PATH nbmake '')}
1523 : ${possible_make:=$(find_in_PATH bmake '')}
1524 : ${possible_make:=$(find_in_PATH make '')}
1526 # At this point, we don't care whether possible_make is in the
1527 # correct TOOLDIR or not; we simply want it to be usable by
1528 # getmakevar to help us find the correct TOOLDIR.
1530 # Use ${possible_make} with nobomb_getmakevar to try to find
1531 # the value of TOOLDIR. Believe the result only if it's
1532 # a directory that already exists and contains bin/${toolprefix}make.
1534 if [ -x "${possible_make}" ]; then
1535 possible_TOOLDIR="$(
1536 make="${possible_make}" \
1537 nobomb_getmakevar TOOLDIR 2>/dev/null
1539 if [ $? = 0 ] && [ -n "${possible_TOOLDIR}" ] \
1540 && [ -d "${possible_TOOLDIR}" ];
1541 then
1542 tooldir_make="${possible_TOOLDIR}/bin/${toolprefix}make"
1543 if [ -x "${tooldir_make}" ]; then
1544 echo "${tooldir_make}"
1545 return 0
1549 return 1
1552 # rebuildmake --
1553 # Rebuild nbmake in a temporary directory if necessary. Sets $make
1554 # to a path to the nbmake executable. Sets done_rebuildmake=true
1555 # if nbmake was rebuilt.
1557 # There is a cyclic dependency between building nbmake and choosing
1558 # TOOLDIR: TOOLDIR may be affected by settings in /etc/mk.conf, so we
1559 # would like to use getmakevar to get the value of TOOLDIR; but we can't
1560 # use getmakevar before we have an up to date version of nbmake; we
1561 # might already have an up to date version of nbmake in TOOLDIR, but we
1562 # don't yet know where TOOLDIR is.
1564 # The default value of TOOLDIR also depends on the location of the top
1565 # level object directory, so $(getmakevar TOOLDIR) invoked before or
1566 # after making the top level object directory may produce different
1567 # results.
1569 # Strictly speaking, we should do the following:
1571 # 1. build a new version of nbmake in a temporary directory;
1572 # 2. use the temporary nbmake to create the top level obj directory;
1573 # 3. use $(getmakevar TOOLDIR) with the temporary nbmake to
1574 # get the correct value of TOOLDIR;
1575 # 4. move the temporary nbmake to ${TOOLDIR}/bin/nbmake.
1577 # However, people don't like building nbmake unnecessarily if their
1578 # TOOLDIR has not changed since an earlier build. We try to avoid
1579 # rebuilding a temporary version of nbmake by taking some shortcuts to
1580 # guess a value for TOOLDIR, looking for an existing version of nbmake
1581 # in that TOOLDIR, and checking whether that nbmake is newer than the
1582 # sources used to build it.
1584 rebuildmake()
1586 make="$(print_tooldir_make)"
1587 if [ -n "${make}" ] && [ -x "${make}" ]; then
1588 for f in usr.bin/make/*.[ch] usr.bin/make/lst.lib/*.[ch]; do
1589 if [ "${f}" -nt "${make}" ]; then
1590 statusmsg "${make} outdated" \
1591 "(older than ${f}), needs building."
1592 do_rebuildmake=true
1593 break
1595 done
1596 else
1597 statusmsg "No \$TOOLDIR/bin/${toolprefix}make, needs building."
1598 do_rebuildmake=true
1601 # Build bootstrap ${toolprefix}make if needed.
1602 if ${do_rebuildmake}; then
1603 statusmsg "Bootstrapping ${toolprefix}make"
1604 ${runcmd} cd "${tmpdir}"
1605 ${runcmd} env CC="${HOST_CC-cc}" CPPFLAGS="${HOST_CPPFLAGS}" \
1606 CFLAGS="${HOST_CFLAGS--O}" LDFLAGS="${HOST_LDFLAGS}" \
1607 ${HOST_SH} "${TOP}/tools/make/configure" ||
1608 ( cp ${tmpdir}/config.log ${tmpdir}-config.log
1609 bomb "Configure of ${toolprefix}make failed, see ${tmpdir}-config.log for details" )
1610 ${runcmd} ${HOST_SH} buildmake.sh ||
1611 bomb "Build of ${toolprefix}make failed"
1612 make="${tmpdir}/${toolprefix}make"
1613 ${runcmd} cd "${TOP}"
1614 ${runcmd} rm -f usr.bin/make/*.o usr.bin/make/lst.lib/*.o
1615 done_rebuildmake=true
1619 # validatemakeparams --
1620 # Perform some late sanity checks, after rebuildmake,
1621 # but before createmakewrapper or any real work.
1623 # Creates the top-level obj directory, because that
1624 # is needed by some of the sanity checks.
1626 # Prints status messages reporting the values of several variables.
1628 validatemakeparams()
1630 # MAKECONF (which defaults to /etc/mk.conf in share/mk/bsd.own.mk)
1631 # can affect many things, so mention it in an early status message.
1633 MAKECONF=$(getmakevar MAKECONF)
1634 if [ -e "${MAKECONF}" ]; then
1635 statusmsg2 "MAKECONF file:" "${MAKECONF}"
1636 else
1637 statusmsg2 "MAKECONF file:" "${MAKECONF} (File not found)"
1640 # Normalise MKOBJDIRS, MKUNPRIVED, and MKUPDATE.
1641 # These may be set as build.sh options or in "mk.conf".
1642 # Don't export them as they're only used for tests in build.sh.
1644 MKOBJDIRS=$(getmakevar MKOBJDIRS)
1645 MKUNPRIVED=$(getmakevar MKUNPRIVED)
1646 MKUPDATE=$(getmakevar MKUPDATE)
1648 # Non-root should always use either the -U or -E flag.
1650 if ! ${do_expertmode} && \
1651 [ "$id_u" -ne 0 ] && \
1652 [ "${MKUNPRIVED}" = "no" ] ; then
1653 bomb "-U or -E must be set for build as an unprivileged user."
1656 if [ "${runcmd}" = "echo" ]; then
1657 TOOLCHAIN_MISSING=no
1658 EXTERNAL_TOOLCHAIN=""
1659 else
1660 TOOLCHAIN_MISSING=$(bomb_getmakevar TOOLCHAIN_MISSING)
1661 EXTERNAL_TOOLCHAIN=$(bomb_getmakevar EXTERNAL_TOOLCHAIN)
1663 if [ "${TOOLCHAIN_MISSING}" = "yes" ] && \
1664 [ -z "${EXTERNAL_TOOLCHAIN}" ]; then
1665 ${runcmd} echo "ERROR: build.sh (in-tree cross-toolchain) is not yet available for"
1666 ${runcmd} echo " MACHINE: ${MACHINE}"
1667 ${runcmd} echo " MACHINE_ARCH: ${MACHINE_ARCH}"
1668 ${runcmd} echo ""
1669 ${runcmd} echo "All builds for this platform should be done via a traditional make"
1670 ${runcmd} echo "If you wish to use an external cross-toolchain, set"
1671 ${runcmd} echo " EXTERNAL_TOOLCHAIN=<path to toolchain root>"
1672 ${runcmd} echo "in either the environment or mk.conf and rerun"
1673 ${runcmd} echo " ${progname} $*"
1674 exit 1
1677 if [ "${MKOBJDIRS}" != "no" ]; then
1678 # Create the top-level object directory.
1680 # "make obj NOSUBDIR=" can handle most cases, but it
1681 # can't handle the case where MAKEOBJDIRPREFIX is set
1682 # while the corresponding directory does not exist
1683 # (rules in <bsd.obj.mk> would abort the build). We
1684 # therefore have to handle the MAKEOBJDIRPREFIX case
1685 # without invoking "make obj". The MAKEOBJDIR case
1686 # could be handled either way, but we choose to handle
1687 # it similarly to MAKEOBJDIRPREFIX.
1689 if [ -n "${TOP_obj}" ]; then
1690 # It must have been set by the "-M" or "-O"
1691 # command line options, so there's no need to
1692 # use getmakevar
1694 elif [ -n "$MAKEOBJDIRPREFIX" ]; then
1695 TOP_obj="$(getmakevar MAKEOBJDIRPREFIX)${TOP}"
1696 elif [ -n "$MAKEOBJDIR" ]; then
1697 TOP_obj="$(getmakevar MAKEOBJDIR)"
1699 if [ -n "$TOP_obj" ]; then
1700 ${runcmd} mkdir -p "${TOP_obj}" ||
1701 bomb "Can't create top level object directory" \
1702 "${TOP_obj}"
1703 else
1704 ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
1705 bomb "Can't create top level object directory" \
1706 "using make obj"
1709 # make obj in tools to ensure that the objdir for "tools"
1710 # is available.
1712 ${runcmd} cd tools
1713 ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
1714 bomb "Failed to make obj in tools"
1715 ${runcmd} cd "${TOP}"
1718 # Find TOOLDIR, DESTDIR, and RELEASEDIR, according to getmakevar,
1719 # and bomb if they have changed from the values we had from the
1720 # command line or environment.
1722 # This must be done after creating the top-level object directory.
1724 for var in TOOLDIR DESTDIR RELEASEDIR
1726 eval oldval=\"\$${var}\"
1727 newval="$(getmakevar $var)"
1728 if ! $do_expertmode; then
1729 : ${_SRC_TOP_OBJ_:=$(getmakevar _SRC_TOP_OBJ_)}
1730 case "$var" in
1731 DESTDIR)
1732 : ${newval:=${_SRC_TOP_OBJ_}/destdir.${MACHINE}}
1733 makeenv="${makeenv} DESTDIR"
1735 RELEASEDIR)
1736 : ${newval:=${_SRC_TOP_OBJ_}/releasedir}
1737 makeenv="${makeenv} RELEASEDIR"
1739 esac
1741 if [ -n "$oldval" ] && [ "$oldval" != "$newval" ]; then
1742 bomb "Value of ${var} has changed" \
1743 "(was \"${oldval}\", now \"${newval}\")"
1745 eval ${var}=\"\${newval}\"
1746 eval export ${var}
1747 statusmsg2 "${var} path:" "${newval}"
1748 done
1750 # RELEASEMACHINEDIR is just a subdir name, e.g. "i386".
1751 RELEASEMACHINEDIR=$(getmakevar RELEASEMACHINEDIR)
1753 # Check validity of TOOLDIR and DESTDIR.
1755 if [ -z "${TOOLDIR}" ] || [ "${TOOLDIR}" = "/" ]; then
1756 bomb "TOOLDIR '${TOOLDIR}' invalid"
1758 removedirs="${TOOLDIR}"
1760 if [ -z "${DESTDIR}" ] || [ "${DESTDIR}" = "/" ]; then
1761 if ${do_distribution} || ${do_release} || \
1762 ( [ "${uname_s}" != "NetBSD" ] && [ "${uname_s}" != "Minix" ] ) || \
1763 [ "${uname_m}" != "${MACHINE}" ]; then
1764 bomb "DESTDIR must != / for cross builds, or ${progname} 'distribution' or 'release'."
1766 if ! ${do_expertmode}; then
1767 bomb "DESTDIR must != / for non -E (expert) builds"
1769 statusmsg "WARNING: Building to /, in expert mode."
1770 statusmsg " This may cause your system to break! Reasons include:"
1771 statusmsg " - your kernel is not up to date"
1772 statusmsg " - the libraries or toolchain have changed"
1773 statusmsg " YOU HAVE BEEN WARNED!"
1774 else
1775 removedirs="${removedirs} ${DESTDIR}"
1777 if ${do_releasekernel} && [ -z "${RELEASEDIR}" ]; then
1778 bomb "Must set RELEASEDIR with \`releasekernel=...'"
1781 # If a previous build.sh run used -U (and therefore created a
1782 # METALOG file), then most subsequent build.sh runs must also
1783 # use -U. If DESTDIR is about to be removed, then don't perform
1784 # this check.
1786 case "${do_removedirs} ${removedirs} " in
1787 true*" ${DESTDIR} "*)
1788 # DESTDIR is about to be removed
1791 if [ -e "${DESTDIR}/METALOG" ] && \
1792 [ "${MKUNPRIVED}" = "no" ] ; then
1793 if $do_expertmode; then
1794 warning "A previous build.sh run specified -U."
1795 else
1796 bomb "A previous build.sh run specified -U; you must specify it again now."
1800 esac
1802 # live-image and install-image targets require binary sets
1803 # (actually DESTDIR/etc/mtree/set.* files) built with MKUNPRIVED.
1804 # If release operation is specified with live-image or install-image,
1805 # the release op should be performed with -U for later image ops.
1807 if ${do_release} && ( ${do_live_image} || ${do_install_image} ) && \
1808 [ "${MKUNPRIVED}" = "no" ] ; then
1809 bomb "-U must be specified on building release to create images later."
1814 createmakewrapper()
1816 # Remove the target directories.
1818 if ${do_removedirs}; then
1819 for f in ${removedirs}; do
1820 statusmsg "Removing ${f}"
1821 ${runcmd} rm -r -f "${f}"
1822 done
1825 # Recreate $TOOLDIR.
1827 ${runcmd} mkdir -p "${TOOLDIR}/bin" ||
1828 bomb "mkdir of '${TOOLDIR}/bin' failed"
1830 # If we did not previously rebuild ${toolprefix}make, then
1831 # check whether $make is still valid and the same as the output
1832 # from print_tooldir_make. If not, then rebuild make now. A
1833 # possible reason for this being necessary is that the actual
1834 # value of TOOLDIR might be different from the value guessed
1835 # before the top level obj dir was created.
1837 if ! ${done_rebuildmake} && \
1838 ( [ ! -x "$make" ] || [ "$make" != "$(print_tooldir_make)" ] )
1839 then
1840 rebuildmake
1843 # Install ${toolprefix}make if it was built.
1845 if ${done_rebuildmake}; then
1846 ${runcmd} rm -f "${TOOLDIR}/bin/${toolprefix}make"
1847 ${runcmd} cp "${make}" "${TOOLDIR}/bin/${toolprefix}make" ||
1848 bomb "Failed to install \$TOOLDIR/bin/${toolprefix}make"
1849 make="${TOOLDIR}/bin/${toolprefix}make"
1850 statusmsg "Created ${make}"
1853 # Build a ${toolprefix}make wrapper script, usable by hand as
1854 # well as by build.sh.
1856 if [ -z "${makewrapper}" ]; then
1857 makewrapper="${TOOLDIR}/bin/${toolprefix}make-${makewrappermachine:-${MACHINE}}"
1858 [ -z "${BUILDID}" ] || makewrapper="${makewrapper}-${BUILDID}"
1861 ${runcmd} rm -f "${makewrapper}"
1862 if [ "${runcmd}" = "echo" ]; then
1863 echo 'cat <<EOF >'${makewrapper}
1864 makewrapout=
1865 else
1866 makewrapout=">>\${makewrapper}"
1869 case "${KSH_VERSION:-${SH_VERSION}}" in
1870 *PD\ KSH*|*MIRBSD\ KSH*)
1871 set +o braceexpand
1873 esac
1875 eval cat <<EOF ${makewrapout}
1876 #! ${HOST_SH}
1877 # Set proper variables to allow easy "make" building of a NetBSD subtree.
1878 # Generated from: \$NetBSD: build.sh,v 1.308 2015/06/27 06:00:28 matt Exp $
1879 # with these arguments: ${_args}
1884 sorted_vars="$(for var in ${makeenv}; do echo "${var}" ; done \
1885 | sort -u )"
1886 for var in ${sorted_vars}; do
1887 eval val=\"\${${var}}\"
1888 eval is_set=\"\${${var}+set}\"
1889 if [ -z "${is_set}" ]; then
1890 echo "unset ${var}"
1891 else
1892 qval="$(shell_quote "${val}")"
1893 echo "${var}=${qval}; export ${var}"
1895 done
1897 eval cat <<EOF
1898 MAKEWRAPPERMACHINE=${makewrappermachine:-${MACHINE}}; export MAKEWRAPPERMACHINE
1899 USETOOLS=yes; export USETOOLS
1900 # LSC We are cross compiling, so do not install to root!
1901 MKINSTALLBOOT=no; export MKINSTALLBOOT
1903 } | eval sort -u "${makewrapout}"
1904 eval cat <<EOF "${makewrapout}"
1906 exec "\${TOOLDIR}/bin/${toolprefix}make" \${1+"\$@"}
1908 [ "${runcmd}" = "echo" ] && echo EOF
1909 ${runcmd} chmod +x "${makewrapper}"
1910 statusmsg2 "Updated makewrapper:" "${makewrapper}"
1913 make_in_dir()
1915 dir="$1"
1916 op="$2"
1917 ${runcmd} cd "${dir}" ||
1918 bomb "Failed to cd to \"${dir}\""
1919 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
1920 bomb "Failed to make ${op} in \"${dir}\""
1921 ${runcmd} cd "${TOP}" ||
1922 bomb "Failed to cd back to \"${TOP}\""
1925 buildtools()
1927 if [ "${MKOBJDIRS}" != "no" ]; then
1928 ${runcmd} "${makewrapper}" ${parallel} obj-tools ||
1929 bomb "Failed to make obj-tools"
1931 if [ "${MKUPDATE}" = "no" ]; then
1932 make_in_dir tools cleandir
1934 make_in_dir tools build_install
1935 statusmsg "Tools built to ${TOOLDIR}"
1938 getkernelconf()
1940 kernelconf="$1"
1941 if [ "${MKOBJDIRS}" != "no" ]; then
1942 # The correct value of KERNOBJDIR might
1943 # depend on a prior "make obj" in
1944 # ${KERNSRCDIR}/${KERNARCHDIR}/compile.
1946 KERNSRCDIR="$(getmakevar KERNSRCDIR)"
1947 KERNARCHDIR="$(getmakevar KERNARCHDIR)"
1948 make_in_dir "${KERNSRCDIR}/${KERNARCHDIR}/compile" obj
1950 KERNCONFDIR="$(getmakevar KERNCONFDIR)"
1951 KERNOBJDIR="$(getmakevar KERNOBJDIR)"
1952 case "${kernelconf}" in
1953 */*)
1954 kernelconfpath="${kernelconf}"
1955 kernelconfname="${kernelconf##*/}"
1958 kernelconfpath="${KERNCONFDIR}/${kernelconf}"
1959 kernelconfname="${kernelconf}"
1961 esac
1962 kernelbuildpath="${KERNOBJDIR}/${kernelconfname}"
1965 diskimage()
1967 ARG="$(echo $1 | tr '[:lower:]' '[:upper:]')"
1968 [ -f "${DESTDIR}/etc/mtree/set.base" ] ||
1969 bomb "The release binaries must be built first"
1970 kerneldir="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel"
1971 kernel="${kerneldir}/netbsd-${ARG}.gz"
1972 [ -f "${kernel}" ] ||
1973 bomb "The kernel ${kernel} must be built first"
1974 make_in_dir "${NETBSDSRCDIR}/etc" "smp_${1}"
1977 buildkernel()
1979 if ! ${do_tools} && ! ${buildkernelwarned:-false}; then
1980 # Building tools every time we build a kernel is clearly
1981 # unnecessary. We could try to figure out whether rebuilding
1982 # the tools is necessary this time, but it doesn't seem worth
1983 # the trouble. Instead, we say it's the user's responsibility
1984 # to rebuild the tools if necessary.
1986 statusmsg "Building kernel without building new tools"
1987 buildkernelwarned=true
1989 getkernelconf $1
1990 statusmsg2 "Building kernel:" "${kernelconf}"
1991 statusmsg2 "Build directory:" "${kernelbuildpath}"
1992 ${runcmd} mkdir -p "${kernelbuildpath}" ||
1993 bomb "Cannot mkdir: ${kernelbuildpath}"
1994 if [ "${MKUPDATE}" = "no" ]; then
1995 make_in_dir "${kernelbuildpath}" cleandir
1997 [ -x "${TOOLDIR}/bin/${toolprefix}config" ] \
1998 || bomb "${TOOLDIR}/bin/${toolprefix}config does not exist. You need to \"$0 tools\" first."
1999 CONFIGOPTS=$(getmakevar CONFIGOPTS)
2000 ${runcmd} "${TOOLDIR}/bin/${toolprefix}config" ${CONFIGOPTS} \
2001 -b "${kernelbuildpath}" -s "${TOP}/sys" ${configopts} \
2002 "${kernelconfpath}" ||
2003 bomb "${toolprefix}config failed for ${kernelconf}"
2004 make_in_dir "${kernelbuildpath}" depend
2005 make_in_dir "${kernelbuildpath}" all
2007 if [ "${runcmd}" != "echo" ]; then
2008 statusmsg "Kernels built from ${kernelconf}:"
2009 kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
2010 for kern in ${kernlist:-netbsd}; do
2011 [ -f "${kernelbuildpath}/${kern}" ] && \
2012 echo " ${kernelbuildpath}/${kern}"
2013 done | tee -a "${results}"
2017 releasekernel()
2019 getkernelconf $1
2020 kernelreldir="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel"
2021 ${runcmd} mkdir -p "${kernelreldir}"
2022 kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
2023 for kern in ${kernlist:-netbsd}; do
2024 builtkern="${kernelbuildpath}/${kern}"
2025 [ -f "${builtkern}" ] || continue
2026 releasekern="${kernelreldir}/${kern}-${kernelconfname}.gz"
2027 statusmsg2 "Kernel copy:" "${releasekern}"
2028 if [ "${runcmd}" = "echo" ]; then
2029 echo "gzip -c -9 < ${builtkern} > ${releasekern}"
2030 else
2031 gzip -c -9 < "${builtkern}" > "${releasekern}"
2033 done
2036 buildkernels()
2038 allkernels=$( runcmd= make_in_dir etc '-V ${ALL_KERNELS}' )
2039 for k in $allkernels; do
2040 buildkernel "${k}"
2041 done
2044 buildmodules()
2046 setmakeenv MKBINUTILS no
2047 if ! ${do_tools} && ! ${buildmoduleswarned:-false}; then
2048 # Building tools every time we build modules is clearly
2049 # unnecessary as well as a kernel.
2051 statusmsg "Building modules without building new tools"
2052 buildmoduleswarned=true
2055 statusmsg "Building kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}"
2056 if [ "${MKOBJDIRS}" != "no" ]; then
2057 make_in_dir sys/modules obj
2059 if [ "${MKUPDATE}" = "no" ]; then
2060 make_in_dir sys/modules cleandir
2062 make_in_dir sys/modules dependall
2063 make_in_dir sys/modules install
2065 statusmsg "Successful build of kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}"
2068 installmodules()
2070 dir="$1"
2071 ${runcmd} "${makewrapper}" INSTALLMODULESDIR="${dir}" installmodules ||
2072 bomb "Failed to make installmodules to ${dir}"
2073 statusmsg "Successful installmodules to ${dir}"
2076 installworld()
2078 dir="$1"
2079 ${runcmd} "${makewrapper}" INSTALLWORLDDIR="${dir}" installworld ||
2080 bomb "Failed to make installworld to ${dir}"
2081 statusmsg "Successful installworld to ${dir}"
2084 # Run rump build&link tests.
2086 # To make this feasible for running without having to install includes and
2087 # libraries into destdir (i.e. quick), we only run ld. This is possible
2088 # since the rump kernel is a closed namespace apart from calls to rumpuser.
2089 # Therefore, if ld complains only about rumpuser symbols, rump kernel
2090 # linking was successful.
2092 # We test that rump links with a number of component configurations.
2093 # These attempt to mimic what is encountered in the full build.
2094 # See list below. The list should probably be either autogenerated
2095 # or managed elsewhere; keep it here until a better idea arises.
2097 # Above all, note that THIS IS NOT A SUBSTITUTE FOR A FULL BUILD.
2100 RUMP_LIBSETS='
2101 -lrump,
2102 -lrumpvfs -lrump,
2103 -lrumpvfs -lrumpdev -lrump,
2104 -lrumpnet -lrump,
2105 -lrumpkern_tty -lrumpvfs -lrump,
2106 -lrumpfs_tmpfs -lrumpvfs -lrump,
2107 -lrumpfs_ffs -lrumpfs_msdos -lrumpvfs -lrumpdev_disk -lrumpdev -lrump,
2108 -lrumpnet_virtif -lrumpnet_netinet -lrumpnet_net -lrumpnet -lrump,
2109 -lrumpnet_sockin -lrumpfs_smbfs -lrumpdev_netsmb
2110 -lrumpkern_crypto -lrumpdev -lrumpnet -lrumpvfs -lrump,
2111 -lrumpnet_sockin -lrumpfs_nfs -lrumpnet -lrumpvfs -lrump,
2112 -lrumpdev_cgd -lrumpdev_raidframe -lrumpdev_disk -lrumpdev_rnd
2113 -lrumpdev_dm -lrumpdev -lrumpvfs -lrumpkern_crypto -lrump'
2114 dorump()
2116 local doclean=""
2117 local doobjs=""
2119 # we cannot link libs without building csu, and that leads to lossage
2120 [ "${1}" != "rumptest" ] && bomb 'build.sh rump not yet functional. ' \
2121 'did you mean "rumptest"?'
2123 export RUMPKERN_ONLY=1
2124 # create obj and distrib dirs
2125 if [ "${MKOBJDIRS}" != "no" ]; then
2126 make_in_dir "${NETBSDSRCDIR}/etc/mtree" obj
2127 make_in_dir "${NETBSDSRCDIR}/sys/rump" obj
2129 ${runcmd} "${makewrapper}" ${parallel} do-distrib-dirs \
2130 || bomb 'could not create distrib-dirs'
2132 [ "${MKUPDATE}" = "no" ] && doclean="cleandir"
2133 targlist="${doclean} ${doobjs} dependall install"
2134 # optimize: for test we build only static libs (3x test speedup)
2135 if [ "${1}" = "rumptest" ] ; then
2136 setmakeenv NOPIC 1
2137 setmakeenv NOPROFILE 1
2139 for cmd in ${targlist} ; do
2140 make_in_dir "${NETBSDSRCDIR}/sys/rump" ${cmd}
2141 done
2143 # if we just wanted to build & install rump, we're done
2144 [ "${1}" != "rumptest" ] && return
2146 ${runcmd} cd "${NETBSDSRCDIR}/sys/rump/librump/rumpkern" \
2147 || bomb "cd to rumpkern failed"
2148 md_quirks=`${runcmd} "${makewrapper}" -V '${_SYMQUIRK}'`
2149 # one little, two little, three little backslashes ...
2150 md_quirks="$(echo ${md_quirks} | sed 's,\\,\\\\,g'";s/'//g" )"
2151 ${runcmd} cd "${TOP}" || bomb "cd to ${TOP} failed"
2152 tool_ld=`${runcmd} "${makewrapper}" -V '${LD}'`
2154 local oIFS="${IFS}"
2155 IFS=","
2156 for set in ${RUMP_LIBSETS} ; do
2157 IFS="${oIFS}"
2158 ${runcmd} ${tool_ld} -nostdlib -L${DESTDIR}/usr/lib \
2159 -static --whole-archive ${set} 2>&1 -o /tmp/rumptest.$$ | \
2160 awk -v quirks="${md_quirks}" '
2161 /undefined reference/ &&
2162 !/more undefined references.*follow/{
2163 if (match($NF,
2164 "`(rumpuser_|rumpcomp_|__" quirks ")") == 0)
2165 fails[NR] = $0
2167 /cannot find -l/{fails[NR] = $0}
2168 /cannot open output file/{fails[NR] = $0}
2169 END{
2170 for (x in fails)
2171 print fails[x]
2172 exit x!=0
2174 [ $? -ne 0 ] && bomb "Testlink of rump failed: ${set}"
2175 done
2176 statusmsg "Rump build&link tests successful"
2179 main()
2181 initdefaults
2182 _args=$@
2183 parseoptions "$@"
2185 sanitycheck
2187 build_start=$(date)
2188 statusmsg2 "${progname} command:" "$0 $*"
2189 statusmsg2 "${progname} started:" "${build_start}"
2190 statusmsg2 "MINIX version:" "${DISTRIBVER}"
2191 statusmsg2 "MACHINE:" "${MACHINE}"
2192 statusmsg2 "MACHINE_ARCH:" "${MACHINE_ARCH}"
2193 statusmsg2 "Build platform:" "${uname_s} ${uname_r} ${uname_m}"
2194 statusmsg2 "HOST_SH:" "${HOST_SH}"
2195 if [ -n "${BUILDID}" ]; then
2196 statusmsg2 "BUILDID:" "${BUILDID}"
2198 if [ -n "${BUILDINFO}" ]; then
2199 printf "%b\n" "${BUILDINFO}" | \
2200 while read -r line ; do
2201 [ -s "${line}" ] && continue
2202 statusmsg2 "BUILDINFO:" "${line}"
2203 done
2206 rebuildmake
2207 validatemakeparams
2208 createmakewrapper
2210 # Perform the operations.
2212 for op in ${operations}; do
2213 case "${op}" in
2215 makewrapper)
2216 # no-op
2219 tools)
2220 buildtools
2223 sets)
2224 statusmsg "Building sets from pre-populated ${DESTDIR}"
2225 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
2226 bomb "Failed to make ${op}"
2227 setdir=${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets
2228 statusmsg "Built sets to ${setdir}"
2231 cleandir|obj|build|distribution|release|sourcesets|syspkgs|show-params)
2232 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
2233 bomb "Failed to make ${op}"
2234 statusmsg "Successful make ${op}"
2237 iso-image|iso-image-source)
2238 ${runcmd} "${makewrapper}" ${parallel} \
2239 CDEXTRA="$CDEXTRA" ${op} ||
2240 bomb "Failed to make ${op}"
2241 statusmsg "Successful make ${op}"
2244 live-image|install-image)
2245 # install-image and live-image require mtree spec files
2246 # built with UNPRIVED. Assume UNPRIVED build has been
2247 # performed if METALOG file is created in DESTDIR.
2248 if [ ! -e "${DESTDIR}/METALOG" ] ; then
2249 bomb "The release binaries must have been built with -U to create images."
2251 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
2252 bomb "Failed to make ${op}"
2253 statusmsg "Successful make ${op}"
2255 kernel=*)
2256 arg=${op#*=}
2257 buildkernel "${arg}"
2259 kernel.gdb=*)
2260 arg=${op#*=}
2261 configopts="-D DEBUG=-g"
2262 buildkernel "${arg}"
2264 releasekernel=*)
2265 arg=${op#*=}
2266 releasekernel "${arg}"
2269 kernels)
2270 buildkernels
2273 disk-image=*)
2274 arg=${op#*=}
2275 diskimage "${arg}"
2278 modules)
2279 buildmodules
2282 installmodules=*)
2283 arg=${op#*=}
2284 if [ "${arg}" = "/" ] && \
2285 ( ( [ "${uname_s}" != "NetBSD" ] && [ "${uname_s}" != "Minix" ] ) || \
2286 [ "${uname_m}" != "${MACHINE}" ] ); then
2287 bomb "'${op}' must != / for cross builds."
2289 installmodules "${arg}"
2292 install=*)
2293 arg=${op#*=}
2294 if [ "${arg}" = "/" ] && \
2295 ( ( [ "${uname_s}" != "NetBSD" ] && [ "${uname_s}" != "Minix" ] ) || \
2296 [ "${uname_m}" != "${MACHINE}" ] ); then
2297 bomb "'${op}' must != / for cross builds."
2299 installworld "${arg}"
2302 rump|rumptest)
2303 dorump "${op}"
2307 bomb "Unknown operation \`${op}'"
2310 esac
2311 done
2313 statusmsg2 "${progname} ended:" "$(date)"
2314 if [ -s "${results}" ]; then
2315 echo "===> Summary of results:"
2316 sed -e 's/^===>//;s/^/ /' "${results}"
2317 echo "===> ."
2321 main "$@"