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