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