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