build.sh revision 1.301 1 #! /usr/bin/env sh
2 # $NetBSD: build.sh,v 1.301 2014/11/10 09:59:33 apb 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 "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"
464
465 # Set various environment variables to known defaults,
466 # to minimize (cross-)build problems observed "in the field".
467 #
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.
471 #
472 # These variables can be overridden via "-V var=value" if
473 # you know what you are doing.
474 #
475 unsetmakeenv INFODIR
476 unsetmakeenv LESSCHARSET
477 unsetmakeenv MAKEFLAGS
478 unsetmakeenv TERMINFO
479 setmakeenv LC_ALL C
480
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.
484 #
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.
490 #
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
498
499 id_u=$(id -u 2>/dev/null || /usr/xpg4/bin/id -u 2>/dev/null)
500
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.
505 #
506 # XXX Except that doesn't work on Solaris. Or many Linuces.
507 #
508 unset PWD
509 TOP=$(/bin/pwd -P 2>/dev/null || /bin/pwd 2>/dev/null)
510
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.
514 #
515 set_HOST_SH
516 setmakeenv HOST_SH "${HOST_SH}"
517 setmakeenv BSHELL "${HOST_SH}"
518 setmakeenv CONFIG_SHELL "${HOST_SH}"
519
520 # Set defaults.
521 #
522 toolprefix=nb
523
524 # Some systems have a small ARG_MAX. -X prevents make(1) from
525 # exporting variables in the environment redundantly.
526 #
527 case "${uname_s}" in
528 Darwin | FreeBSD | CYGWIN*)
529 MAKEFLAGS="-X ${MAKEFLAGS}"
530 ;;
531 esac
532
533 # do_{operation}=true if given operation is requested.
534 #
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_params=false
559 do_rump=false
560
561 # done_{operation}=true if given operation has been done.
562 #
563 done_rebuildmake=false
564
565 # Create scratch directory
566 #
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"
571
572 # Set source directories
573 #
574 setmakeenv NETBSDSRCDIR "${TOP}"
575
576 # Make sure KERNOBJDIR is an absolute path if defined
577 #
578 case "${KERNOBJDIR}" in
579 ''|/*) ;;
580 *) KERNOBJDIR="${TOP}/${KERNOBJDIR}"
581 setmakeenv KERNOBJDIR "${KERNOBJDIR}"
582 ;;
583 esac
584
585 # Find the version of NetBSD
586 #
587 DISTRIBVER="$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh)"
588
589 # Set the BUILDSEED to NetBSD-"N"
590 #
591 setmakeenv BUILDSEED "NetBSD-$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh -m)"
592
593 # Set MKARZERO to "yes"
594 #
595 setmakeenv MKARZERO "yes"
596
597 }
598
599 # valid_MACHINE_ARCH -- A multi-line string, listing all valid
600 # MACHINE/MACHINE_ARCH pairs.
601 #
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.
605 #
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.
614 #
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
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
721 '
722
723 # getarch -- find the default MACHINE_ARCH for a MACHINE,
724 # or convert an alias to a MACHINE/MACHINE_ARCH pair.
725 #
726 # Saves the original value of MACHINE in makewrappermachine before
727 # alias processing.
728 #
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).
732 #
733 # Leaves MACHINE and MACHINE_ARCH unchanged if MACHINE is recognised
734 # as being associated with multiple MACHINE_ARCH values with no default.
735 #
736 # Bombs if MACHINE is not recognised.
737 #
738 getarch()
739 {
740 local IFS
741 local found=""
742 local line
743
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
753 ;;
754 *" ALIAS=${MACHINE} "*)
755 # Found a line with a matching ALIAS=<alias>.
756 found="$line"
757 break
758 ;;
759 "MACHINE=${MACHINE} "*" NO_DEFAULT"*)
760 # Found an explicit "NO_DEFAULT" for this MACHINE.
761 found="$line"
762 break
763 ;;
764 "MACHINE=${MACHINE} "*" DEFAULT"*)
765 # Found an explicit "DEFAULT" for this MACHINE.
766 found="$line"
767 break
768 ;;
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
778 ;;
779 esac
780 done
781
782 case "$found" in
783 *NO_DEFAULT*|*MULTIPLE_MATCHES*)
784 # MACHINE is OK, but MACHINE_ARCH is still unknown
785 return
786 ;;
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"
794 ;;
795 esac
796 done
797 ;;
798 *)
799 bomb "Unknown target MACHINE: ${MACHINE}"
800 ;;
801 esac
802 }
803
804 # validatearch -- check that the MACHINE/MACHINE_ARCH pair is supported.
805 #
806 # Bombs if the pair is not supported.
807 #
808 validatearch()
809 {
810 local IFS
811 local line
812 local foundpair=false foundmachine=false foundarch=false
813
814 case "${MACHINE_ARCH}" in
815 "")
816 bomb "No MACHINE_ARCH provided"
817 ;;
818 esac
819
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
828 ;;
829 "MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} "*)
830 foundpair=true
831 ;;
832 "MACHINE=${MACHINE} "*)
833 foundmachine=true
834 ;;
835 *"MACHINE_ARCH=${MACHINE_ARCH} "*)
836 foundarch=true
837 ;;
838 esac
839 done
840
841 case "${foundpair}:${foundmachine}:${foundarch}" in
842 true:*)
843 : OK
844 ;;
845 *:false:*)
846 bomb "Unknown target MACHINE: ${MACHINE}"
847 ;;
848 *:*:false)
849 bomb "Unknown target MACHINE_ARCH: ${MACHINE_ARCH}"
850 ;;
851 *)
852 bomb "MACHINE_ARCH '${MACHINE_ARCH}' does not support MACHINE '${MACHINE}'"
853 ;;
854 esac
855 }
856
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.
860 #
861 listarch()
862 {
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
869
870 # Empty machglob or archglob should match anything
871 : "${machglob:=${wildcard}}"
872 : "${archglob:=${wildcard}}"
873
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
879
880 line_matches_machine=false
881 line_matches_arch=false
882
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
894
895 if $line_matches_machine && $line_matches_arch; then
896 found=true
897 echo "$line"
898 fi
899 done
900 if ! $found; then
901 echo >&2 "No match for" \
902 "MACHINE=${machglob} MACHINE_ARCH=${archglob}"
903 return 1
904 fi
905 return 0
906 }
907
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.
911 #
912 nobomb_getmakevar()
913 {
914 [ -x "${make}" ] || return 1
915 "${make}" -m ${TOP}/share/mk -s -B -f- _x_ <<EOF || return 1
916 _x_:
917 echo \${$1}
918 .include <bsd.prog.mk>
919 .include <bsd.kernobj.mk>
920 EOF
921 }
922
923 # bomb_getmakevar --
924 # Given the name of a make variable in $1, print make's idea of the
925 # value of that variable, or bomb if there's an error.
926 #
927 bomb_getmakevar()
928 {
929 [ -x "${make}" ] || bomb "bomb_getmakevar $1: ${make} is not executable"
930 nobomb_getmakevar "$1" || bomb "bomb_getmakevar $1: ${make} failed"
931 }
932
933 # getmakevar --
934 # Given the name of a make variable in $1, print make's idea of the
935 # value of that variable, or print a literal '$' followed by the
936 # variable name if ${make} is not executable. This is intended for use in
937 # messages that need to be readable even if $make hasn't been built,
938 # such as when build.sh is run with the "-n" option.
939 #
940 getmakevar()
941 {
942 if [ -x "${make}" ]; then
943 bomb_getmakevar "$1"
944 else
945 echo "\$$1"
946 fi
947 }
948
949 setmakeenv()
950 {
951 eval "$1='$2'; export $1"
952 makeenv="${makeenv} $1"
953 }
954
955 unsetmakeenv()
956 {
957 eval "unset $1"
958 makeenv="${makeenv} $1"
959 }
960
961 # Given a variable name in $1, modify the variable in place as follows:
962 # For each space-separated word in the variable, call resolvepath.
963 resolvepaths()
964 {
965 local var="$1"
966 local val
967 eval val=\"\${${var}}\"
968 local newval=''
969 local word
970 for word in ${val}; do
971 resolvepath word
972 newval="${newval}${newval:+ }${word}"
973 done
974 eval ${var}=\"\${newval}\"
975 }
976
977 # Given a variable name in $1, modify the variable in place as follows:
978 # Convert possibly-relative path to absolute path by prepending
979 # ${TOP} if necessary. Also delete trailing "/", if any.
980 resolvepath()
981 {
982 local var="$1"
983 local val
984 eval val=\"\${${var}}\"
985 case "${val}" in
986 /)
987 ;;
988 /*)
989 val="${val%/}"
990 ;;
991 *)
992 val="${TOP}/${val%/}"
993 ;;
994 esac
995 eval ${var}=\"\${val}\"
996 }
997
998 usage()
999 {
1000 if [ -n "$*" ]; then
1001 echo ""
1002 echo "${progname}: $*"
1003 fi
1004 cat <<_usage_
1005
1006 Usage: ${progname} [-EhnorUuxy] [-a arch] [-B buildid] [-C cdextras]
1007 [-D dest] [-j njob] [-M obj] [-m mach] [-N noisy]
1008 [-O obj] [-R release] [-S seed] [-T tools]
1009 [-V var=[value]] [-w wrapper] [-X x11src] [-Y extsrcsrc]
1010 [-Z var]
1011 operation [...]
1012
1013 Build operations (all imply "obj" and "tools"):
1014 build Run "make build".
1015 distribution Run "make distribution" (includes DESTDIR/etc/ files).
1016 release Run "make release" (includes kernels & distrib media).
1017
1018 Other operations:
1019 help Show this message and exit.
1020 makewrapper Create ${toolprefix}make-\${MACHINE} wrapper and ${toolprefix}make.
1021 Always performed.
1022 cleandir Run "make cleandir". [Default unless -u is used]
1023 obj Run "make obj". [Default unless -o is used]
1024 tools Build and install tools.
1025 install=idir Run "make installworld" to \`idir' to install all sets
1026 except \`etc'. Useful after "distribution" or "release"
1027 kernel=conf Build kernel with config file \`conf'
1028 kernel.gdb=conf Build kernel (including netbsd.gdb) with config
1029 file \`conf'
1030 releasekernel=conf Install kernel built by kernel=conf to RELEASEDIR.
1031 kernels Build all kernels
1032 installmodules=idir Run "make installmodules" to \`idir' to install all
1033 kernel modules.
1034 modules Build kernel modules.
1035 rumptest Do a linktest for rump (for developers).
1036 sets Create binary sets in
1037 RELEASEDIR/RELEASEMACHINEDIR/binary/sets.
1038 DESTDIR should be populated beforehand.
1039 sourcesets Create source sets in RELEASEDIR/source/sets.
1040 syspkgs Create syspkgs in
1041 RELEASEDIR/RELEASEMACHINEDIR/binary/syspkgs.
1042 iso-image Create CD-ROM image in RELEASEDIR/images.
1043 iso-image-source Create CD-ROM image with source in RELEASEDIR/images.
1044 live-image Create bootable live image in
1045 RELEASEDIR/RELEASEMACHINEDIR/installation/liveimage.
1046 install-image Create bootable installation image in
1047 RELEASEDIR/RELEASEMACHINEDIR/installation/installimage.
1048 disk-image=target Creae bootable disk image in
1049 RELEASEDIR/RELEASEMACHINEDIR/binary/gzimg/target.img.gz.
1050 params Display various make(1) parameters.
1051 list-arch Display a list of valid MACHINE/MACHINE_ARCH values,
1052 and exit. The list may be narrowed by passing glob
1053 patterns or exact values in MACHINE or MACHINE_ARCH.
1054
1055 Options:
1056 -a arch Set MACHINE_ARCH to arch. [Default: deduced from MACHINE]
1057 -B buildid Set BUILDID to buildid.
1058 -C cdextras Append cdextras to CDEXTRA variable for inclusion on CD-ROM.
1059 -D dest Set DESTDIR to dest. [Default: destdir.MACHINE]
1060 -E Set "expert" mode; disables various safety checks.
1061 Should not be used without expert knowledge of the build system.
1062 -h Print this help message.
1063 -j njob Run up to njob jobs in parallel; see make(1) -j.
1064 -M obj Set obj root directory to obj; sets MAKEOBJDIRPREFIX.
1065 Unsets MAKEOBJDIR.
1066 -m mach Set MACHINE to mach. Some mach values are actually
1067 aliases that set MACHINE/MACHINE_ARCH pairs.
1068 [Default: deduced from the host system if the host
1069 OS is NetBSD]
1070 -N noisy Set the noisyness (MAKEVERBOSE) level of the build:
1071 0 Minimal output ("quiet")
1072 1 Describe what is occurring
1073 2 Describe what is occurring and echo the actual command
1074 3 Ignore the effect of the "@" prefix in make commands
1075 4 Trace shell commands using the shell's -x flag
1076 [Default: 2]
1077 -n Show commands that would be executed, but do not execute them.
1078 -O obj Set obj root directory to obj; sets a MAKEOBJDIR pattern.
1079 Unsets MAKEOBJDIRPREFIX.
1080 -o Set MKOBJDIRS=no; do not create objdirs at start of build.
1081 -R release Set RELEASEDIR to release. [Default: releasedir]
1082 -r Remove contents of TOOLDIR and DESTDIR before building.
1083 -S seed Set BUILDSEED to seed. [Default: NetBSD-majorversion]
1084 -T tools Set TOOLDIR to tools. If unset, and TOOLDIR is not set in
1085 the environment, ${toolprefix}make will be (re)built
1086 unconditionally.
1087 -U Set MKUNPRIVED=yes; build without requiring root privileges,
1088 install from an UNPRIVED build with proper file permissions.
1089 -u Set MKUPDATE=yes; do not run "make cleandir" first.
1090 Without this, everything is rebuilt, including the tools.
1091 -V var=[value] Set variable \`var' to \`value'.
1092 -w wrapper Create ${toolprefix}make script as wrapper.
1093 [Default: \${TOOLDIR}/bin/${toolprefix}make-\${MACHINE}]
1094 -X x11src Set X11SRCDIR to x11src. [Default: /usr/xsrc]
1095 -x Set MKX11=yes; build X11 from X11SRCDIR
1096 -Y extsrcsrc Set EXTSRCSRCDIR to extsrcsrc. [Default: /usr/extsrc]
1097 -y Set MKEXTSRC=yes; build extsrc from EXTSRCSRCDIR
1098 -Z var Unset ("zap") variable \`var'.
1099
1100 _usage_
1101 exit 1
1102 }
1103
1104 parseoptions()
1105 {
1106 opts='a:B:C:D:Ehj:M:m:N:nO:oR:rS:T:UuV:w:X:xY:yZ:'
1107 opt_a=false
1108 opt_m=false
1109
1110 if type getopts >/dev/null 2>&1; then
1111 # Use POSIX getopts.
1112 #
1113 getoptcmd='getopts ${opts} opt && opt=-${opt}'
1114 optargcmd=':'
1115 optremcmd='shift $((${OPTIND} -1))'
1116 else
1117 type getopt >/dev/null 2>&1 ||
1118 bomb "Shell does not support getopts or getopt"
1119
1120 # Use old-style getopt(1) (doesn't handle whitespace in args).
1121 #
1122 args="$(getopt ${opts} $*)"
1123 [ $? = 0 ] || usage
1124 set -- ${args}
1125
1126 getoptcmd='[ $# -gt 0 ] && opt="$1" && shift'
1127 optargcmd='OPTARG="$1"; shift'
1128 optremcmd=':'
1129 fi
1130
1131 # Parse command line options.
1132 #
1133 while eval ${getoptcmd}; do
1134 case ${opt} in
1135
1136 -a)
1137 eval ${optargcmd}
1138 MACHINE_ARCH=${OPTARG}
1139 opt_a=true
1140 ;;
1141
1142 -B)
1143 eval ${optargcmd}
1144 BUILDID=${OPTARG}
1145 ;;
1146
1147 -C)
1148 eval ${optargcmd}; resolvepaths OPTARG
1149 CDEXTRA="${CDEXTRA}${CDEXTRA:+ }${OPTARG}"
1150 ;;
1151
1152 -D)
1153 eval ${optargcmd}; resolvepath OPTARG
1154 setmakeenv DESTDIR "${OPTARG}"
1155 ;;
1156
1157 -E)
1158 do_expertmode=true
1159 ;;
1160
1161 -j)
1162 eval ${optargcmd}
1163 parallel="-j ${OPTARG}"
1164 ;;
1165
1166 -M)
1167 eval ${optargcmd}; resolvepath OPTARG
1168 case "${OPTARG}" in
1169 \$*) usage "-M argument must not begin with '\$'"
1170 ;;
1171 *\$*) # can use resolvepath, but can't set TOP_objdir
1172 resolvepath OPTARG
1173 ;;
1174 *) resolvepath OPTARG
1175 TOP_objdir="${OPTARG}${TOP}"
1176 ;;
1177 esac
1178 unsetmakeenv MAKEOBJDIR
1179 setmakeenv MAKEOBJDIRPREFIX "${OPTARG}"
1180 ;;
1181
1182 # -m overrides MACHINE_ARCH unless "-a" is specified
1183 -m)
1184 eval ${optargcmd}
1185 MACHINE="${OPTARG}"
1186 opt_m=true
1187 ;;
1188
1189 -N)
1190 eval ${optargcmd}
1191 case "${OPTARG}" in
1192 0|1|2|3|4)
1193 setmakeenv MAKEVERBOSE "${OPTARG}"
1194 ;;
1195 *)
1196 usage "'${OPTARG}' is not a valid value for -N"
1197 ;;
1198 esac
1199 ;;
1200
1201 -n)
1202 runcmd=echo
1203 ;;
1204
1205 -O)
1206 eval ${optargcmd}
1207 case "${OPTARG}" in
1208 *\$*) usage "-O argument must not contain '\$'"
1209 ;;
1210 *) resolvepath OPTARG
1211 TOP_objdir="${OPTARG}"
1212 ;;
1213 esac
1214 unsetmakeenv MAKEOBJDIRPREFIX
1215 setmakeenv MAKEOBJDIR "\${.CURDIR:C,^$TOP,$OPTARG,}"
1216 ;;
1217
1218 -o)
1219 MKOBJDIRS=no
1220 ;;
1221
1222 -R)
1223 eval ${optargcmd}; resolvepath OPTARG
1224 setmakeenv RELEASEDIR "${OPTARG}"
1225 ;;
1226
1227 -r)
1228 do_removedirs=true
1229 do_rebuildmake=true
1230 ;;
1231
1232 -S)
1233 eval ${optargcmd}
1234 setmakeenv BUILDSEED "${OPTARG}"
1235 ;;
1236
1237 -T)
1238 eval ${optargcmd}; resolvepath OPTARG
1239 TOOLDIR="${OPTARG}"
1240 export TOOLDIR
1241 ;;
1242
1243 -U)
1244 setmakeenv MKUNPRIVED yes
1245 ;;
1246
1247 -u)
1248 setmakeenv MKUPDATE yes
1249 ;;
1250
1251 -V)
1252 eval ${optargcmd}
1253 case "${OPTARG}" in
1254 # XXX: consider restricting which variables can be changed?
1255 [a-zA-Z_][a-zA-Z_0-9]*=*)
1256 setmakeenv "${OPTARG%%=*}" "${OPTARG#*=}"
1257 ;;
1258 *)
1259 usage "-V argument must be of the form 'var=[value]'"
1260 ;;
1261 esac
1262 ;;
1263
1264 -w)
1265 eval ${optargcmd}; resolvepath OPTARG
1266 makewrapper="${OPTARG}"
1267 ;;
1268
1269 -X)
1270 eval ${optargcmd}; resolvepath OPTARG
1271 setmakeenv X11SRCDIR "${OPTARG}"
1272 ;;
1273
1274 -x)
1275 setmakeenv MKX11 yes
1276 ;;
1277
1278 -Y)
1279 eval ${optargcmd}; resolvepath OPTARG
1280 setmakeenv EXTSRCSRCDIR "${OPTARG}"
1281 ;;
1282
1283 -y)
1284 setmakeenv MKEXTSRC yes
1285 ;;
1286
1287 -Z)
1288 eval ${optargcmd}
1289 # XXX: consider restricting which variables can be unset?
1290 unsetmakeenv "${OPTARG}"
1291 ;;
1292
1293 --)
1294 break
1295 ;;
1296
1297 -'?'|-h)
1298 usage
1299 ;;
1300
1301 esac
1302 done
1303
1304 # Validate operations.
1305 #
1306 eval ${optremcmd}
1307 while [ $# -gt 0 ]; do
1308 op=$1; shift
1309 operations="${operations} ${op}"
1310
1311 case "${op}" in
1312
1313 help)
1314 usage
1315 ;;
1316
1317 list-arch)
1318 listarch "${MACHINE}" "${MACHINE_ARCH}"
1319 exit $?
1320 ;;
1321
1322 kernel=*|releasekernel=*|kernel.gdb=*)
1323 arg=${op#*=}
1324 op=${op%%=*}
1325 [ -n "${arg}" ] ||
1326 bomb "Must supply a kernel name with \`${op}=...'"
1327 ;;
1328
1329 disk-image=*)
1330 arg=${op#*=}
1331 op=disk_image
1332 [ -n "${arg}" ] ||
1333 bomb "Must supply a target name with \`${op}=...'"
1334
1335 ;;
1336
1337 install=*|installmodules=*)
1338 arg=${op#*=}
1339 op=${op%%=*}
1340 [ -n "${arg}" ] ||
1341 bomb "Must supply a directory with \`install=...'"
1342 ;;
1343
1344 build|\
1345 cleandir|\
1346 distribution|\
1347 install-image|\
1348 iso-image-source|\
1349 iso-image|\
1350 kernels|\
1351 live-image|\
1352 makewrapper|\
1353 modules|\
1354 obj|\
1355 params|\
1356 release|\
1357 rump|\
1358 rumptest|\
1359 sets|\
1360 sourcesets|\
1361 syspkgs|\
1362 tools)
1363 ;;
1364
1365 *)
1366 usage "Unknown operation \`${op}'"
1367 ;;
1368
1369 esac
1370 # ${op} may contain chars that are not allowed in variable
1371 # names. Replace them with '_' before setting do_${op}.
1372 op="$( echo "$op" | tr -s '.-' '__')"
1373 eval do_${op}=true
1374 done
1375 [ -n "${operations}" ] || usage "Missing operation to perform."
1376
1377 # Set up MACHINE*. On a NetBSD host, these are allowed to be unset.
1378 #
1379 if [ -z "${MACHINE}" ]; then
1380 [ "${uname_s}" = "NetBSD" ] ||
1381 bomb "MACHINE must be set, or -m must be used, for cross builds."
1382 MACHINE=${uname_m}
1383 fi
1384 if $opt_m && ! $opt_a; then
1385 # Settings implied by the command line -m option
1386 # override MACHINE_ARCH from the environment (if any).
1387 getarch
1388 fi
1389 [ -n "${MACHINE_ARCH}" ] || getarch
1390 validatearch
1391
1392 # Set up default make(1) environment.
1393 #
1394 makeenv="${makeenv} TOOLDIR MACHINE MACHINE_ARCH MAKEFLAGS"
1395 [ -z "${BUILDID}" ] || makeenv="${makeenv} BUILDID"
1396 [ -z "${BUILDINFO}" ] || makeenv="${makeenv} BUILDINFO"
1397 MAKEFLAGS="-de -m ${TOP}/share/mk ${MAKEFLAGS}"
1398 MAKEFLAGS="${MAKEFLAGS} MKOBJDIRS=${MKOBJDIRS-yes}"
1399 export MAKEFLAGS MACHINE MACHINE_ARCH
1400 setmakeenv USETOOLS "yes"
1401 setmakeenv MAKEWRAPPERMACHINE "${makewrappermachine:-${MACHINE}}"
1402 }
1403
1404 # sanitycheck --
1405 # Sanity check after parsing command line options, before rebuildmake.
1406 #
1407 sanitycheck()
1408 {
1409 # Install as non-root is a bad idea.
1410 #
1411 if ${do_install} && [ "$id_u" -ne 0 ] ; then
1412 if ${do_expertmode}; then
1413 warning "Will install as an unprivileged user."
1414 else
1415 bomb "-E must be set for install as an unprivileged user."
1416 fi
1417 fi
1418
1419 # If the PATH contains any non-absolute components (including,
1420 # but not limited to, "." or ""), then complain. As an exception,
1421 # allow "" or "." as the last component of the PATH. This is fatal
1422 # if expert mode is not in effect.
1423 #
1424 local path="${PATH}"
1425 path="${path%:}" # delete trailing ":"
1426 path="${path%:.}" # delete trailing ":."
1427 case ":${path}:/" in
1428 *:[!/]*)
1429 if ${do_expertmode}; then
1430 warning "PATH contains non-absolute components"
1431 else
1432 bomb "PATH environment variable must not" \
1433 "contain non-absolute components"
1434 fi
1435 ;;
1436 esac
1437 }
1438
1439 # print_tooldir_make --
1440 # Try to find and print a path to an existing
1441 # ${TOOLDIR}/bin/${toolprefix}make, for use by rebuildmake() before a
1442 # new version of ${toolprefix}make has been built.
1443 #
1444 # * If TOOLDIR was set in the environment or on the command line, use
1445 # that value.
1446 # * Otherwise try to guess what TOOLDIR would be if not overridden by
1447 # /etc/mk.conf, and check whether the resulting directory contains
1448 # a copy of ${toolprefix}make (this should work for everybody who
1449 # doesn't override TOOLDIR via /etc/mk.conf);
1450 # * Failing that, search for ${toolprefix}make, nbmake, bmake, or make,
1451 # in the PATH (this might accidentally find a version of make that
1452 # does not understand the syntax used by NetBSD make, and that will
1453 # lead to failure in the next step);
1454 # * If a copy of make was found above, try to use it with
1455 # nobomb_getmakevar to find the correct value for TOOLDIR, and believe the
1456 # result only if it's a directory that already exists;
1457 # * If a value of TOOLDIR was found above, and if
1458 # ${TOOLDIR}/bin/${toolprefix}make exists, print that value.
1459 #
1460 print_tooldir_make()
1461 {
1462 local possible_TOP_OBJ
1463 local possible_TOOLDIR
1464 local possible_make
1465 local tooldir_make
1466
1467 if [ -n "${TOOLDIR}" ]; then
1468 echo "${TOOLDIR}/bin/${toolprefix}make"
1469 return 0
1470 fi
1471
1472 # Set host_ostype to something like "NetBSD-4.5.6-i386". This
1473 # is intended to match the HOST_OSTYPE variable in <bsd.own.mk>.
1474 #
1475 local host_ostype="${uname_s}-$(
1476 echo "${uname_r}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
1477 )-$(
1478 echo "${uname_p}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
1479 )"
1480
1481 # Look in a few potential locations for
1482 # ${possible_TOOLDIR}/bin/${toolprefix}make.
1483 # If we find it, then set possible_make.
1484 #
1485 # In the usual case (without interference from environment
1486 # variables or /etc/mk.conf), <bsd.own.mk> should set TOOLDIR to
1487 # "${_SRC_TOP_OBJ_}/tooldir.${host_ostype}".
1488 #
1489 # In practice it's difficult to figure out the correct value
1490 # for _SRC_TOP_OBJ_. In the easiest case, when the -M or -O
1491 # options were passed to build.sh, then ${TOP_objdir} will be
1492 # the correct value. We also try a few other possibilities, but
1493 # we do not replicate all the logic of <bsd.obj.mk>.
1494 #
1495 for possible_TOP_OBJ in \
1496 "${TOP_objdir}" \
1497 "${MAKEOBJDIRPREFIX:+${MAKEOBJDIRPREFIX}${TOP}}" \
1498 "${TOP}" \
1499 "${TOP}/obj" \
1500 "${TOP}/obj.${MACHINE}"
1501 do
1502 [ -n "${possible_TOP_OBJ}" ] || continue
1503 possible_TOOLDIR="${possible_TOP_OBJ}/tooldir.${host_ostype}"
1504 possible_make="${possible_TOOLDIR}/bin/${toolprefix}make"
1505 if [ -x "${possible_make}" ]; then
1506 break
1507 else
1508 unset possible_make
1509 fi
1510 done
1511
1512 # If the above didn't work, search the PATH for a suitable
1513 # ${toolprefix}make, nbmake, bmake, or make.
1514 #
1515 : ${possible_make:=$(find_in_PATH ${toolprefix}make '')}
1516 : ${possible_make:=$(find_in_PATH nbmake '')}
1517 : ${possible_make:=$(find_in_PATH bmake '')}
1518 : ${possible_make:=$(find_in_PATH make '')}
1519
1520 # At this point, we don't care whether possible_make is in the
1521 # correct TOOLDIR or not; we simply want it to be usable by
1522 # getmakevar to help us find the correct TOOLDIR.
1523 #
1524 # Use ${possible_make} with nobomb_getmakevar to try to find
1525 # the value of TOOLDIR. Believe the result only if it's
1526 # a directory that already exists and contains bin/${toolprefix}make.
1527 #
1528 if [ -x "${possible_make}" ]; then
1529 possible_TOOLDIR="$(
1530 make="${possible_make}" \
1531 nobomb_getmakevar TOOLDIR 2>/dev/null
1532 )"
1533 if [ $? = 0 ] && [ -n "${possible_TOOLDIR}" ] \
1534 && [ -d "${possible_TOOLDIR}" ];
1535 then
1536 tooldir_make="${possible_TOOLDIR}/bin/${toolprefix}make"
1537 if [ -x "${tooldir_make}" ]; then
1538 echo "${tooldir_make}"
1539 return 0
1540 fi
1541 fi
1542 fi
1543 return 1
1544 }
1545
1546 # rebuildmake --
1547 # Rebuild nbmake in a temporary directory if necessary. Sets $make
1548 # to a path to the nbmake executable. Sets done_rebuildmake=true
1549 # if nbmake was rebuilt.
1550 #
1551 # There is a cyclic dependency between building nbmake and choosing
1552 # TOOLDIR: TOOLDIR may be affected by settings in /etc/mk.conf, so we
1553 # would like to use getmakevar to get the value of TOOLDIR; but we can't
1554 # use getmakevar before we have an up to date version of nbmake; we
1555 # might already have an up to date version of nbmake in TOOLDIR, but we
1556 # don't yet know where TOOLDIR is.
1557 #
1558 # The default value of TOOLDIR also depends on the location of the top
1559 # level object directory, so $(getmakevar TOOLDIR) invoked before or
1560 # after making the top level object directory may produce different
1561 # results.
1562 #
1563 # Strictly speaking, we should do the following:
1564 #
1565 # 1. build a new version of nbmake in a temporary directory;
1566 # 2. use the temporary nbmake to create the top level obj directory;
1567 # 3. use $(getmakevar TOOLDIR) with the temporary nbmake to
1568 # get the correct value of TOOLDIR;
1569 # 4. move the temporary nbmake to ${TOOLDIR}/bin/nbmake.
1570 #
1571 # However, people don't like building nbmake unnecessarily if their
1572 # TOOLDIR has not changed since an earlier build. We try to avoid
1573 # rebuilding a temporary version of nbmake by taking some shortcuts to
1574 # guess a value for TOOLDIR, looking for an existing version of nbmake
1575 # in that TOOLDIR, and checking whether that nbmake is newer than the
1576 # sources used to build it.
1577 #
1578 rebuildmake()
1579 {
1580 make="$(print_tooldir_make)"
1581 if [ -n "${make}" ] && [ -x "${make}" ]; then
1582 for f in usr.bin/make/*.[ch] usr.bin/make/lst.lib/*.[ch]; do
1583 if [ "${f}" -nt "${make}" ]; then
1584 statusmsg "${make} outdated" \
1585 "(older than ${f}), needs building."
1586 do_rebuildmake=true
1587 break
1588 fi
1589 done
1590 else
1591 statusmsg "No \$TOOLDIR/bin/${toolprefix}make, needs building."
1592 do_rebuildmake=true
1593 fi
1594
1595 # Build bootstrap ${toolprefix}make if needed.
1596 if ${do_rebuildmake}; then
1597 statusmsg "Bootstrapping ${toolprefix}make"
1598 ${runcmd} cd "${tmpdir}"
1599 ${runcmd} env CC="${HOST_CC-cc}" CPPFLAGS="${HOST_CPPFLAGS}" \
1600 CFLAGS="${HOST_CFLAGS--O}" LDFLAGS="${HOST_LDFLAGS}" \
1601 ${HOST_SH} "${TOP}/tools/make/configure" ||
1602 ( cp ${tmpdir}/config.log ${tmpdir}-config.log
1603 bomb "Configure of ${toolprefix}make failed, see ${tmpdir}-config.log for details" )
1604 ${runcmd} ${HOST_SH} buildmake.sh ||
1605 bomb "Build of ${toolprefix}make failed"
1606 make="${tmpdir}/${toolprefix}make"
1607 ${runcmd} cd "${TOP}"
1608 ${runcmd} rm -f usr.bin/make/*.o usr.bin/make/lst.lib/*.o
1609 done_rebuildmake=true
1610 fi
1611 }
1612
1613 # validatemakeparams --
1614 # Perform some late sanity checks, after rebuildmake,
1615 # but before createmakewrapper or any real work.
1616 #
1617 # Creates the top-level obj directory, because that
1618 # is needed by some of the sanity checks.
1619 #
1620 # Prints status messages reporting the values of several variables.
1621 #
1622 validatemakeparams()
1623 {
1624 # MAKECONF (which defaults to /etc/mk.conf in share/mk/bsd.own.mk)
1625 # can affect many things, so mention it in an early status message.
1626 #
1627 MAKECONF=$(getmakevar MAKECONF)
1628 if [ -e "${MAKECONF}" ]; then
1629 statusmsg2 "MAKECONF file:" "${MAKECONF}"
1630 else
1631 statusmsg2 "MAKECONF file:" "${MAKECONF} (File not found)"
1632 fi
1633
1634 # Normalise MKOBJDIRS, MKUNPRIVED, and MKUPDATE.
1635 # These may be set as build.sh options or in "mk.conf".
1636 # Don't export them as they're only used for tests in build.sh.
1637 #
1638 MKOBJDIRS=$(getmakevar MKOBJDIRS)
1639 MKUNPRIVED=$(getmakevar MKUNPRIVED)
1640 MKUPDATE=$(getmakevar MKUPDATE)
1641
1642 # Non-root should always use either the -U or -E flag.
1643 #
1644 if ! ${do_expertmode} && \
1645 [ "$id_u" -ne 0 ] && \
1646 [ "${MKUNPRIVED}" = "no" ] ; then
1647 bomb "-U or -E must be set for build as an unprivileged user."
1648 fi
1649
1650 if [ "${runcmd}" = "echo" ]; then
1651 TOOLCHAIN_MISSING=no
1652 EXTERNAL_TOOLCHAIN=""
1653 else
1654 TOOLCHAIN_MISSING=$(bomb_getmakevar TOOLCHAIN_MISSING)
1655 EXTERNAL_TOOLCHAIN=$(bomb_getmakevar EXTERNAL_TOOLCHAIN)
1656 fi
1657 if [ "${TOOLCHAIN_MISSING}" = "yes" ] && \
1658 [ -z "${EXTERNAL_TOOLCHAIN}" ]; then
1659 ${runcmd} echo "ERROR: build.sh (in-tree cross-toolchain) is not yet available for"
1660 ${runcmd} echo " MACHINE: ${MACHINE}"
1661 ${runcmd} echo " MACHINE_ARCH: ${MACHINE_ARCH}"
1662 ${runcmd} echo ""
1663 ${runcmd} echo "All builds for this platform should be done via a traditional make"
1664 ${runcmd} echo "If you wish to use an external cross-toolchain, set"
1665 ${runcmd} echo " EXTERNAL_TOOLCHAIN=<path to toolchain root>"
1666 ${runcmd} echo "in either the environment or mk.conf and rerun"
1667 ${runcmd} echo " ${progname} $*"
1668 exit 1
1669 fi
1670
1671 if [ "${MKOBJDIRS}" != "no" ]; then
1672 # Create the top-level object directory.
1673 #
1674 # "make obj NOSUBDIR=" can handle most cases, but it
1675 # can't handle the case where MAKEOBJDIRPREFIX is set
1676 # while the corresponding directory does not exist
1677 # (rules in <bsd.obj.mk> would abort the build). We
1678 # therefore have to handle the MAKEOBJDIRPREFIX case
1679 # without invoking "make obj". The MAKEOBJDIR case
1680 # could be handled either way, but we choose to handle
1681 # it similarly to MAKEOBJDIRPREFIX.
1682 #
1683 if [ -n "${TOP_obj}" ]; then
1684 # It must have been set by the "-M" or "-O"
1685 # command line options, so there's no need to
1686 # use getmakevar
1687 :
1688 elif [ -n "$MAKEOBJDIRPREFIX" ]; then
1689 TOP_obj="$(getmakevar MAKEOBJDIRPREFIX)${TOP}"
1690 elif [ -n "$MAKEOBJDIR" ]; then
1691 TOP_obj="$(getmakevar MAKEOBJDIR)"
1692 fi
1693 if [ -n "$TOP_obj" ]; then
1694 ${runcmd} mkdir -p "${TOP_obj}" ||
1695 bomb "Can't create top level object directory" \
1696 "${TOP_obj}"
1697 else
1698 ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
1699 bomb "Can't create top level object directory" \
1700 "using make obj"
1701 fi
1702
1703 # make obj in tools to ensure that the objdir for "tools"
1704 # is available.
1705 #
1706 ${runcmd} cd tools
1707 ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
1708 bomb "Failed to make obj in tools"
1709 ${runcmd} cd "${TOP}"
1710 fi
1711
1712 # Find TOOLDIR, DESTDIR, and RELEASEDIR, according to getmakevar,
1713 # and bomb if they have changed from the values we had from the
1714 # command line or environment.
1715 #
1716 # This must be done after creating the top-level object directory.
1717 #
1718 for var in TOOLDIR DESTDIR RELEASEDIR
1719 do
1720 eval oldval=\"\$${var}\"
1721 newval="$(getmakevar $var)"
1722 if ! $do_expertmode; then
1723 : ${_SRC_TOP_OBJ_:=$(getmakevar _SRC_TOP_OBJ_)}
1724 case "$var" in
1725 DESTDIR)
1726 : ${newval:=${_SRC_TOP_OBJ_}/destdir.${MACHINE}}
1727 makeenv="${makeenv} DESTDIR"
1728 ;;
1729 RELEASEDIR)
1730 : ${newval:=${_SRC_TOP_OBJ_}/releasedir}
1731 makeenv="${makeenv} RELEASEDIR"
1732 ;;
1733 esac
1734 fi
1735 if [ -n "$oldval" ] && [ "$oldval" != "$newval" ]; then
1736 bomb "Value of ${var} has changed" \
1737 "(was \"${oldval}\", now \"${newval}\")"
1738 fi
1739 eval ${var}=\"\${newval}\"
1740 eval export ${var}
1741 statusmsg2 "${var} path:" "${newval}"
1742 done
1743
1744 # RELEASEMACHINEDIR is just a subdir name, e.g. "i386".
1745 RELEASEMACHINEDIR=$(getmakevar RELEASEMACHINEDIR)
1746
1747 # Check validity of TOOLDIR and DESTDIR.
1748 #
1749 if [ -z "${TOOLDIR}" ] || [ "${TOOLDIR}" = "/" ]; then
1750 bomb "TOOLDIR '${TOOLDIR}' invalid"
1751 fi
1752 removedirs="${TOOLDIR}"
1753
1754 if [ -z "${DESTDIR}" ] || [ "${DESTDIR}" = "/" ]; then
1755 if ${do_distribution} || ${do_release} || \
1756 [ "${uname_s}" != "NetBSD" ] || \
1757 [ "${uname_m}" != "${MACHINE}" ]; then
1758 bomb "DESTDIR must != / for cross builds, or ${progname} 'distribution' or 'release'."
1759 fi
1760 if ! ${do_expertmode}; then
1761 bomb "DESTDIR must != / for non -E (expert) builds"
1762 fi
1763 statusmsg "WARNING: Building to /, in expert mode."
1764 statusmsg " This may cause your system to break! Reasons include:"
1765 statusmsg " - your kernel is not up to date"
1766 statusmsg " - the libraries or toolchain have changed"
1767 statusmsg " YOU HAVE BEEN WARNED!"
1768 else
1769 removedirs="${removedirs} ${DESTDIR}"
1770 fi
1771 if ${do_releasekernel} && [ -z "${RELEASEDIR}" ]; then
1772 bomb "Must set RELEASEDIR with \`releasekernel=...'"
1773 fi
1774
1775 # If a previous build.sh run used -U (and therefore created a
1776 # METALOG file), then most subsequent build.sh runs must also
1777 # use -U. If DESTDIR is about to be removed, then don't perform
1778 # this check.
1779 #
1780 case "${do_removedirs} ${removedirs} " in
1781 true*" ${DESTDIR} "*)
1782 # DESTDIR is about to be removed
1783 ;;
1784 *)
1785 if [ -e "${DESTDIR}/METALOG" ] && \
1786 [ "${MKUNPRIVED}" = "no" ] ; then
1787 if $do_expertmode; then
1788 warning "A previous build.sh run specified -U."
1789 else
1790 bomb "A previous build.sh run specified -U; you must specify it again now."
1791 fi
1792 fi
1793 ;;
1794 esac
1795
1796 # live-image and install-image targets require binary sets
1797 # (actually DESTDIR/etc/mtree/set.* files) built with MKUNPRIVED.
1798 # If release operation is specified with live-image or install-image,
1799 # the release op should be performed with -U for later image ops.
1800 #
1801 if ${do_release} && ( ${do_live_image} || ${do_install_image} ) && \
1802 [ "${MKUNPRIVED}" = "no" ] ; then
1803 bomb "-U must be specified on building release to create images later."
1804 fi
1805 }
1806
1807
1808 createmakewrapper()
1809 {
1810 # Remove the target directories.
1811 #
1812 if ${do_removedirs}; then
1813 for f in ${removedirs}; do
1814 statusmsg "Removing ${f}"
1815 ${runcmd} rm -r -f "${f}"
1816 done
1817 fi
1818
1819 # Recreate $TOOLDIR.
1820 #
1821 ${runcmd} mkdir -p "${TOOLDIR}/bin" ||
1822 bomb "mkdir of '${TOOLDIR}/bin' failed"
1823
1824 # If we did not previously rebuild ${toolprefix}make, then
1825 # check whether $make is still valid and the same as the output
1826 # from print_tooldir_make. If not, then rebuild make now. A
1827 # possible reason for this being necessary is that the actual
1828 # value of TOOLDIR might be different from the value guessed
1829 # before the top level obj dir was created.
1830 #
1831 if ! ${done_rebuildmake} && \
1832 ( [ ! -x "$make" ] || [ "$make" != "$(print_tooldir_make)" ] )
1833 then
1834 rebuildmake
1835 fi
1836
1837 # Install ${toolprefix}make if it was built.
1838 #
1839 if ${done_rebuildmake}; then
1840 ${runcmd} rm -f "${TOOLDIR}/bin/${toolprefix}make"
1841 ${runcmd} cp "${make}" "${TOOLDIR}/bin/${toolprefix}make" ||
1842 bomb "Failed to install \$TOOLDIR/bin/${toolprefix}make"
1843 make="${TOOLDIR}/bin/${toolprefix}make"
1844 statusmsg "Created ${make}"
1845 fi
1846
1847 # Build a ${toolprefix}make wrapper script, usable by hand as
1848 # well as by build.sh.
1849 #
1850 if [ -z "${makewrapper}" ]; then
1851 makewrapper="${TOOLDIR}/bin/${toolprefix}make-${makewrappermachine:-${MACHINE}}"
1852 [ -z "${BUILDID}" ] || makewrapper="${makewrapper}-${BUILDID}"
1853 fi
1854
1855 ${runcmd} rm -f "${makewrapper}"
1856 if [ "${runcmd}" = "echo" ]; then
1857 echo 'cat <<EOF >'${makewrapper}
1858 makewrapout=
1859 else
1860 makewrapout=">>\${makewrapper}"
1861 fi
1862
1863 case "${KSH_VERSION:-${SH_VERSION}}" in
1864 *PD\ KSH*|*MIRBSD\ KSH*)
1865 set +o braceexpand
1866 ;;
1867 esac
1868
1869 eval cat <<EOF ${makewrapout}
1870 #! ${HOST_SH}
1871 # Set proper variables to allow easy "make" building of a NetBSD subtree.
1872 # Generated from: \$NetBSD: build.sh,v 1.301 2014/11/10 09:59:33 apb Exp $
1873 # with these arguments: ${_args}
1874 #
1875
1876 EOF
1877 {
1878 sorted_vars="$(for var in ${makeenv}; do echo "${var}" ; done \
1879 | sort -u )"
1880 for var in ${sorted_vars}; do
1881 eval val=\"\${${var}}\"
1882 eval is_set=\"\${${var}+set}\"
1883 if [ -z "${is_set}" ]; then
1884 echo "unset ${var}"
1885 else
1886 qval="$(shell_quote "${val}")"
1887 echo "${var}=${qval}; export ${var}"
1888 fi
1889 done
1890
1891 cat <<EOF
1892
1893 exec "\${TOOLDIR}/bin/${toolprefix}make" \${1+"\$@"}
1894 EOF
1895 } | eval cat "${makewrapout}"
1896 [ "${runcmd}" = "echo" ] && echo EOF
1897 ${runcmd} chmod +x "${makewrapper}"
1898 statusmsg2 "Updated makewrapper:" "${makewrapper}"
1899 }
1900
1901 make_in_dir()
1902 {
1903 dir="$1"
1904 op="$2"
1905 ${runcmd} cd "${dir}" ||
1906 bomb "Failed to cd to \"${dir}\""
1907 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
1908 bomb "Failed to make ${op} in \"${dir}\""
1909 ${runcmd} cd "${TOP}" ||
1910 bomb "Failed to cd back to \"${TOP}\""
1911 }
1912
1913 buildtools()
1914 {
1915 if [ "${MKOBJDIRS}" != "no" ]; then
1916 ${runcmd} "${makewrapper}" ${parallel} obj-tools ||
1917 bomb "Failed to make obj-tools"
1918 fi
1919 if [ "${MKUPDATE}" = "no" ]; then
1920 make_in_dir tools cleandir
1921 fi
1922 make_in_dir tools build_install
1923 statusmsg "Tools built to ${TOOLDIR}"
1924 }
1925
1926 getkernelconf()
1927 {
1928 kernelconf="$1"
1929 if [ "${MKOBJDIRS}" != "no" ]; then
1930 # The correct value of KERNOBJDIR might
1931 # depend on a prior "make obj" in
1932 # ${KERNSRCDIR}/${KERNARCHDIR}/compile.
1933 #
1934 KERNSRCDIR="$(getmakevar KERNSRCDIR)"
1935 KERNARCHDIR="$(getmakevar KERNARCHDIR)"
1936 make_in_dir "${KERNSRCDIR}/${KERNARCHDIR}/compile" obj
1937 fi
1938 KERNCONFDIR="$(getmakevar KERNCONFDIR)"
1939 KERNOBJDIR="$(getmakevar KERNOBJDIR)"
1940 case "${kernelconf}" in
1941 */*)
1942 kernelconfpath="${kernelconf}"
1943 kernelconfname="${kernelconf##*/}"
1944 ;;
1945 *)
1946 kernelconfpath="${KERNCONFDIR}/${kernelconf}"
1947 kernelconfname="${kernelconf}"
1948 ;;
1949 esac
1950 kernelbuildpath="${KERNOBJDIR}/${kernelconfname}"
1951 }
1952
1953 diskimage()
1954 {
1955 ARG="$(echo $1 | tr '[:lower:]' '[:upper:]')"
1956 [ -f "${DESTDIR}/etc/mtree/set.base" ] ||
1957 bomb "The release binaries must be built first"
1958 kerneldir="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel"
1959 kernel="${kerneldir}/netbsd-${ARG}.gz"
1960 [ -f "${kernel}" ] ||
1961 bomb "The kernel ${kernel} must be built first"
1962 make_in_dir "${NETBSDSRCDIR}/etc" "smp_${1}"
1963 }
1964
1965 buildkernel()
1966 {
1967 if ! ${do_tools} && ! ${buildkernelwarned:-false}; then
1968 # Building tools every time we build a kernel is clearly
1969 # unnecessary. We could try to figure out whether rebuilding
1970 # the tools is necessary this time, but it doesn't seem worth
1971 # the trouble. Instead, we say it's the user's responsibility
1972 # to rebuild the tools if necessary.
1973 #
1974 statusmsg "Building kernel without building new tools"
1975 buildkernelwarned=true
1976 fi
1977 getkernelconf $1
1978 statusmsg2 "Building kernel:" "${kernelconf}"
1979 statusmsg2 "Build directory:" "${kernelbuildpath}"
1980 ${runcmd} mkdir -p "${kernelbuildpath}" ||
1981 bomb "Cannot mkdir: ${kernelbuildpath}"
1982 if [ "${MKUPDATE}" = "no" ]; then
1983 make_in_dir "${kernelbuildpath}" cleandir
1984 fi
1985 [ -x "${TOOLDIR}/bin/${toolprefix}config" ] \
1986 || bomb "${TOOLDIR}/bin/${toolprefix}config does not exist. You need to \"$0 tools\" first."
1987 ${runcmd} "${TOOLDIR}/bin/${toolprefix}config" -b "${kernelbuildpath}" \
1988 ${ksymopts} -s "${TOP}/sys" "${kernelconfpath}" ||
1989 bomb "${toolprefix}config failed for ${kernelconf}"
1990 make_in_dir "${kernelbuildpath}" depend
1991 make_in_dir "${kernelbuildpath}" all
1992
1993 if [ "${runcmd}" != "echo" ]; then
1994 statusmsg "Kernels built from ${kernelconf}:"
1995 kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
1996 for kern in ${kernlist:-netbsd}; do
1997 [ -f "${kernelbuildpath}/${kern}" ] && \
1998 echo " ${kernelbuildpath}/${kern}"
1999 done | tee -a "${results}"
2000 fi
2001 }
2002
2003 releasekernel()
2004 {
2005 getkernelconf $1
2006 kernelreldir="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel"
2007 ${runcmd} mkdir -p "${kernelreldir}"
2008 kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
2009 for kern in ${kernlist:-netbsd}; do
2010 builtkern="${kernelbuildpath}/${kern}"
2011 [ -f "${builtkern}" ] || continue
2012 releasekern="${kernelreldir}/${kern}-${kernelconfname}.gz"
2013 statusmsg2 "Kernel copy:" "${releasekern}"
2014 if [ "${runcmd}" = "echo" ]; then
2015 echo "gzip -c -9 < ${builtkern} > ${releasekern}"
2016 else
2017 gzip -c -9 < "${builtkern}" > "${releasekern}"
2018 fi
2019 done
2020 }
2021
2022 buildkernels()
2023 {
2024 allkernels=$( make_in_dir etc '-V ${ALL_KERNELS}' )
2025 for k in $allkernels; do
2026 buildkernel "${k}"
2027 done
2028 }
2029
2030 buildmodules()
2031 {
2032 setmakeenv MKBINUTILS no
2033 if ! ${do_tools} && ! ${buildmoduleswarned:-false}; then
2034 # Building tools every time we build modules is clearly
2035 # unnecessary as well as a kernel.
2036 #
2037 statusmsg "Building modules without building new tools"
2038 buildmoduleswarned=true
2039 fi
2040
2041 statusmsg "Building kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}"
2042 if [ "${MKOBJDIRS}" != "no" ]; then
2043 make_in_dir sys/modules obj
2044 fi
2045 if [ "${MKUPDATE}" = "no" ]; then
2046 make_in_dir sys/modules cleandir
2047 fi
2048 make_in_dir sys/modules dependall
2049 make_in_dir sys/modules install
2050
2051 statusmsg "Successful build of kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}"
2052 }
2053
2054 installmodules()
2055 {
2056 dir="$1"
2057 ${runcmd} "${makewrapper}" INSTALLMODULESDIR="${dir}" installmodules ||
2058 bomb "Failed to make installmodules to ${dir}"
2059 statusmsg "Successful installmodules to ${dir}"
2060 }
2061
2062 installworld()
2063 {
2064 dir="$1"
2065 ${runcmd} "${makewrapper}" INSTALLWORLDDIR="${dir}" installworld ||
2066 bomb "Failed to make installworld to ${dir}"
2067 statusmsg "Successful installworld to ${dir}"
2068 }
2069
2070 # Run rump build&link tests.
2071 #
2072 # To make this feasible for running without having to install includes and
2073 # libraries into destdir (i.e. quick), we only run ld. This is possible
2074 # since the rump kernel is a closed namespace apart from calls to rumpuser.
2075 # Therefore, if ld complains only about rumpuser symbols, rump kernel
2076 # linking was successful.
2077 #
2078 # We test that rump links with a number of component configurations.
2079 # These attempt to mimic what is encountered in the full build.
2080 # See list below. The list should probably be either autogenerated
2081 # or managed elsewhere; keep it here until a better idea arises.
2082 #
2083 # Above all, note that THIS IS NOT A SUBSTITUTE FOR A FULL BUILD.
2084 #
2085
2086 RUMP_LIBSETS='
2087 -lrump,
2088 -lrumpvfs -lrump,
2089 -lrumpvfs -lrumpdev -lrump,
2090 -lrumpnet -lrump,
2091 -lrumpkern_tty -lrumpvfs -lrump,
2092 -lrumpfs_tmpfs -lrumpvfs -lrump,
2093 -lrumpfs_ffs -lrumpfs_msdos -lrumpvfs -lrumpdev_disk -lrumpdev -lrump,
2094 -lrumpnet_virtif -lrumpnet_netinet -lrumpnet_net -lrumpnet -lrump,
2095 -lrumpnet_sockin -lrumpfs_smbfs -lrumpdev_netsmb
2096 -lrumpkern_crypto -lrumpdev -lrumpnet -lrumpvfs -lrump,
2097 -lrumpnet_sockin -lrumpfs_nfs -lrumpnet -lrumpvfs -lrump,
2098 -lrumpdev_cgd -lrumpdev_raidframe -lrumpdev_disk -lrumpdev_rnd
2099 -lrumpdev_dm -lrumpdev -lrumpvfs -lrumpkern_crypto -lrump'
2100 dorump()
2101 {
2102 local doclean=""
2103 local doobjs=""
2104
2105 # we cannot link libs without building csu, and that leads to lossage
2106 [ "${1}" != "rumptest" ] && bomb 'build.sh rump not yet functional. ' \
2107 'did you mean "rumptest"?'
2108
2109 export RUMPKERN_ONLY=1
2110 # create obj and distrib dirs
2111 if [ "${MKOBJDIRS}" != "no" ]; then
2112 make_in_dir "${NETBSDSRCDIR}/etc/mtree" obj
2113 make_in_dir "${NETBSDSRCDIR}/sys/rump" obj
2114 fi
2115 ${runcmd} "${makewrapper}" ${parallel} do-distrib-dirs \
2116 || bomb 'could not create distrib-dirs'
2117
2118 [ "${MKUPDATE}" = "no" ] && doclean="cleandir"
2119 targlist="${doclean} ${doobjs} dependall install"
2120 # optimize: for test we build only static libs (3x test speedup)
2121 if [ "${1}" = "rumptest" ] ; then
2122 setmakeenv NOPIC 1
2123 setmakeenv NOPROFILE 1
2124 fi
2125 for cmd in ${targlist} ; do
2126 make_in_dir "${NETBSDSRCDIR}/sys/rump" ${cmd}
2127 done
2128
2129 # if we just wanted to build & install rump, we're done
2130 [ "${1}" != "rumptest" ] && return
2131
2132 ${runcmd} cd "${NETBSDSRCDIR}/sys/rump/librump/rumpkern" \
2133 || bomb "cd to rumpkern failed"
2134 md_quirks=`${runcmd} "${makewrapper}" -V '${_SYMQUIRK}'`
2135 # one little, two little, three little backslashes ...
2136 md_quirks="$(echo ${md_quirks} | sed 's,\\,\\\\,g'";s/'//g" )"
2137 ${runcmd} cd "${TOP}" || bomb "cd to ${TOP} failed"
2138 tool_ld=`${runcmd} "${makewrapper}" -V '${LD}'`
2139
2140 local oIFS="${IFS}"
2141 IFS=","
2142 for set in ${RUMP_LIBSETS} ; do
2143 IFS="${oIFS}"
2144 ${runcmd} ${tool_ld} -nostdlib -L${DESTDIR}/usr/lib \
2145 -static --whole-archive ${set} 2>&1 -o /tmp/rumptest.$$ | \
2146 awk -v quirks="${md_quirks}" '
2147 /undefined reference/ &&
2148 !/more undefined references.*follow/{
2149 if (match($NF,
2150 "`(rumpuser_|rumpcomp_|__" quirks ")") == 0)
2151 fails[NR] = $0
2152 }
2153 /cannot find -l/{fails[NR] = $0}
2154 /cannot open output file/{fails[NR] = $0}
2155 END{
2156 for (x in fails)
2157 print fails[x]
2158 exit x!=0
2159 }'
2160 [ $? -ne 0 ] && bomb "Testlink of rump failed: ${set}"
2161 done
2162 statusmsg "Rump build&link tests successful"
2163 }
2164
2165 main()
2166 {
2167 initdefaults
2168 _args=$@
2169 parseoptions "$@"
2170
2171 sanitycheck
2172
2173 build_start=$(date)
2174 statusmsg2 "${progname} command:" "$0 $*"
2175 statusmsg2 "${progname} started:" "${build_start}"
2176 statusmsg2 "NetBSD version:" "${DISTRIBVER}"
2177 statusmsg2 "MACHINE:" "${MACHINE}"
2178 statusmsg2 "MACHINE_ARCH:" "${MACHINE_ARCH}"
2179 statusmsg2 "Build platform:" "${uname_s} ${uname_r} ${uname_m}"
2180 statusmsg2 "HOST_SH:" "${HOST_SH}"
2181 if [ -n "${BUILDID}" ]; then
2182 statusmsg2 "BUILDID:" "${BUILDID}"
2183 fi
2184 if [ -n "${BUILDINFO}" ]; then
2185 printf "%b\n" "${BUILDINFO}" | \
2186 while read -r line ; do
2187 [ -s "${line}" ] && continue
2188 statusmsg2 "BUILDINFO:" "${line}"
2189 done
2190 fi
2191
2192 rebuildmake
2193 validatemakeparams
2194 createmakewrapper
2195
2196 # Perform the operations.
2197 #
2198 for op in ${operations}; do
2199 case "${op}" in
2200
2201 makewrapper)
2202 # no-op
2203 ;;
2204
2205 tools)
2206 buildtools
2207 ;;
2208
2209 sets)
2210 statusmsg "Building sets from pre-populated ${DESTDIR}"
2211 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
2212 bomb "Failed to make ${op}"
2213 setdir=${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets
2214 statusmsg "Built sets to ${setdir}"
2215 ;;
2216
2217 cleandir|obj|build|distribution|release|sourcesets|syspkgs|params)
2218 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
2219 bomb "Failed to make ${op}"
2220 statusmsg "Successful make ${op}"
2221 ;;
2222
2223 iso-image|iso-image-source)
2224 ${runcmd} "${makewrapper}" ${parallel} \
2225 CDEXTRA="$CDEXTRA" ${op} ||
2226 bomb "Failed to make ${op}"
2227 statusmsg "Successful make ${op}"
2228 ;;
2229
2230 live-image|install-image)
2231 # install-image and live-image require mtree spec files
2232 # built with UNPRIVED. Assume UNPRIVED build has been
2233 # performed if METALOG file is created in DESTDIR.
2234 if [ ! -e "${DESTDIR}/METALOG" ] ; then
2235 bomb "The release binaries must have been built with -U to create images."
2236 fi
2237 ${runcmd} "${makewrapper}" ${parallel} ${op} ||
2238 bomb "Failed to make ${op}"
2239 statusmsg "Successful make ${op}"
2240 ;;
2241 kernel=*)
2242 arg=${op#*=}
2243 buildkernel "${arg}"
2244 ;;
2245 kernel.gdb=*)
2246 arg=${op#*=}
2247 ksymopts="-D DEBUG=-g"
2248 buildkernel "${arg}"
2249 ;;
2250 releasekernel=*)
2251 arg=${op#*=}
2252 releasekernel "${arg}"
2253 ;;
2254
2255 kernels)
2256 buildkernels
2257 ;;
2258
2259 disk-image=*)
2260 arg=${op#*=}
2261 diskimage "${arg}"
2262 ;;
2263
2264 modules)
2265 buildmodules
2266 ;;
2267
2268 installmodules=*)
2269 arg=${op#*=}
2270 if [ "${arg}" = "/" ] && \
2271 ( [ "${uname_s}" != "NetBSD" ] || \
2272 [ "${uname_m}" != "${MACHINE}" ] ); then
2273 bomb "'${op}' must != / for cross builds."
2274 fi
2275 installmodules "${arg}"
2276 ;;
2277
2278 install=*)
2279 arg=${op#*=}
2280 if [ "${arg}" = "/" ] && \
2281 ( [ "${uname_s}" != "NetBSD" ] || \
2282 [ "${uname_m}" != "${MACHINE}" ] ); then
2283 bomb "'${op}' must != / for cross builds."
2284 fi
2285 installworld "${arg}"
2286 ;;
2287
2288 rump|rumptest)
2289 dorump "${op}"
2290 ;;
2291
2292 *)
2293 bomb "Unknown operation \`${op}'"
2294 ;;
2295
2296 esac
2297 done
2298
2299 statusmsg2 "${progname} ended:" "$(date)"
2300 if [ -s "${results}" ]; then
2301 echo "===> Summary of results:"
2302 sed -e 's/^===>//;s/^/ /' "${results}"
2303 echo "===> ."
2304 fi
2305 }
2306
2307 main "$@"
2308