[BACK]Return to build.sh CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src

Annotation of src/build.sh, Revision 1.287

1.67      thorpej     1: #! /usr/bin/env sh
1.287   ! apb         2: #      $NetBSD: build.sh,v 1.286 2014/08/03 01:03:41 riz Exp $
1.84      lukem       3: #
1.248     apb         4: # Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
1.84      lukem       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: #
1.1       tv         31: #
1.249     apb        32: # Top level build wrapper, to build or cross-build NetBSD.
1.1       tv         33: #
1.249     apb        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: #
1.251     mbalmer   187: # If shelltest is true, exit now, reporting whether or not the shell is good.
1.249     apb       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.
1.67      thorpej   260: #
1.1       tv        261:
1.84      lukem     262: progname=${0##*/}
                    263: toppid=$$
1.98      lukem     264: results=/dev/null
1.200     apb       265: tab='  '
1.258     apb       266: nl='
                    267: '
1.82      lukem     268: trap "exit 1" 1 2 3 15
1.84      lukem     269:
1.79      lukem     270: bomb()
                    271: {
1.82      lukem     272:        cat >&2 <<ERRORMESSAGE
                    273:
                    274: ERROR: $@
                    275: *** BUILD ABORTED ***
                    276: ERRORMESSAGE
1.98      lukem     277:        kill ${toppid}          # in case we were invoked from a subshell
1.1       tv        278:        exit 1
                    279: }
1.78      lukem     280:
1.285     apb       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: shell_quote()
                    290: {
                    291:        local result=''
                    292:        local arg
                    293:        for arg in "$@" ; do
                    294:                # Append a space if necessary
                    295:                result="${result}${result:+ }"
                    296:                # Convert each embedded ' to '\'',
                    297:                # then insert ' at the beginning of the first line,
                    298:                # and append ' at the end of the last line.
                    299:                result="${result}$(printf "%s\n" "$arg" | \
                    300:                        sed -e "s/'/'\\\\''/g" -e "1s/^/'/" -e "\$s/\$/'/")"
                    301:        done
                    302:        printf "%s\n" "$result"
                    303: }
1.84      lukem     304:
1.98      lukem     305: statusmsg()
                    306: {
                    307:        ${runcmd} echo "===> $@" | tee -a "${results}"
                    308: }
                    309:
1.238     pgoyette  310: statusmsg2()
                    311: {
1.240     pgoyette  312:        local msg
                    313:
1.238     pgoyette  314:        msg="${1}"
                    315:        shift
1.239     pgoyette  316:        case "${msg}" in
1.238     pgoyette  317:        ????????????????*)      ;;
                    318:        ??????????*)            msg="${msg}      ";;
                    319:        ?????*)                 msg="${msg}           ";;
                    320:        *)                      msg="${msg}                ";;
                    321:        esac
1.239     pgoyette  322:        case "${msg}" in
1.238     pgoyette  323:        ?????????????????????*) ;;
                    324:        ????????????????????)   msg="${msg} ";;
                    325:        ???????????????????)    msg="${msg}  ";;
                    326:        ??????????????????)     msg="${msg}   ";;
                    327:        ?????????????????)      msg="${msg}    ";;
                    328:        ????????????????)       msg="${msg}     ";;
                    329:        esac
1.240     pgoyette  330:        statusmsg "${msg}$*"
1.238     pgoyette  331: }
                    332:
1.163     apb       333: warning()
                    334: {
                    335:        statusmsg "Warning: $@"
                    336: }
                    337:
1.168     apb       338: # Find a program in the PATH, and print the result.  If not found,
                    339: # print a default.  If $2 is defined (even if it is an empty string),
                    340: # then that is the default; otherwise, $1 is used as the default.
1.153     apb       341: find_in_PATH()
                    342: {
                    343:        local prog="$1"
1.168     apb       344:        local result="${2-"$1"}"
1.153     apb       345:        local oldIFS="${IFS}"
                    346:        local dir
                    347:        IFS=":"
                    348:        for dir in ${PATH}; do
                    349:                if [ -x "${dir}/${prog}" ]; then
1.168     apb       350:                        result="${dir}/${prog}"
1.153     apb       351:                        break
                    352:                fi
                    353:        done
                    354:        IFS="${oldIFS}"
1.168     apb       355:        echo "${result}"
1.153     apb       356: }
                    357:
                    358: # Try to find a working POSIX shell, and set HOST_SH to refer to it.
                    359: # Assumes that uname_s, uname_m, and PWD have been set.
                    360: set_HOST_SH()
                    361: {
                    362:        # Even if ${HOST_SH} is already defined, we still do the
                    363:        # sanity checks at the end.
                    364:
                    365:        # Solaris has /usr/xpg4/bin/sh.
                    366:        #
                    367:        [ -z "${HOST_SH}" ] && [ x"${uname_s}" = x"SunOS" ] && \
                    368:                [ -x /usr/xpg4/bin/sh ] && HOST_SH="/usr/xpg4/bin/sh"
                    369:
                    370:        # Try to get the name of the shell that's running this script,
                    371:        # by parsing the output from "ps".  We assume that, if the host
                    372:        # system's ps command supports -o comm at all, it will do so
                    373:        # in the usual way: a one-line header followed by a one-line
                    374:        # result, possibly including trailing white space.  And if the
                    375:        # host system's ps command doesn't support -o comm, we assume
                    376:        # that we'll get an error message on stderr and nothing on
                    377:        # stdout.  (We don't try to use ps -o 'comm=' to suppress the
                    378:        # header line, because that is less widely supported.)
                    379:        #
                    380:        # If we get the wrong result here, the user can override it by
                    381:        # specifying HOST_SH in the environment.
                    382:        #
                    383:        [ -z "${HOST_SH}" ] && HOST_SH="$(
1.200     apb       384:                (ps -p $$ -o comm | sed -ne "2s/[ ${tab}]*\$//p") 2>/dev/null )"
1.153     apb       385:
                    386:        # If nothing above worked, use "sh".  We will later find the
                    387:        # first directory in the PATH that has a "sh" program.
                    388:        #
                    389:        [ -z "${HOST_SH}" ] && HOST_SH="sh"
                    390:
                    391:        # If the result so far is not an absolute path, try to prepend
                    392:        # PWD or search the PATH.
                    393:        #
                    394:        case "${HOST_SH}" in
                    395:        /*)     :
                    396:                ;;
                    397:        */*)    HOST_SH="${PWD}/${HOST_SH}"
                    398:                ;;
                    399:        *)      HOST_SH="$(find_in_PATH "${HOST_SH}")"
                    400:                ;;
                    401:        esac
                    402:
                    403:        # If we don't have an absolute path by now, bomb.
                    404:        #
                    405:        case "${HOST_SH}" in
                    406:        /*)     :
                    407:                ;;
                    408:        *)      bomb "HOST_SH=\"${HOST_SH}\" is not an absolute path."
                    409:                ;;
                    410:        esac
                    411:
                    412:        # If HOST_SH is not executable, bomb.
                    413:        #
                    414:        [ -x "${HOST_SH}" ] ||
                    415:            bomb "HOST_SH=\"${HOST_SH}\" is not executable."
1.249     apb       416:
                    417:        # If HOST_SH fails tests, bomb.
                    418:        # ("$0" may be a path that is no longer valid, because we have
                    419:        # performed "cd $(dirname $0)", so don't use $0 here.)
                    420:        #
                    421:        "${HOST_SH}" build.sh --shelltest ||
                    422:            bomb "HOST_SH=\"${HOST_SH}\" failed functionality tests."
1.153     apb       423: }
                    424:
1.248     apb       425: # initdefaults --
                    426: # Set defaults before parsing command line options.
                    427: #
1.84      lukem     428: initdefaults()
                    429: {
1.171     apb       430:        makeenv=
                    431:        makewrapper=
                    432:        makewrappermachine=
                    433:        runcmd=
                    434:        operations=
                    435:        removedirs=
                    436:
1.156     dsl       437:        [ -d usr.bin/make ] || cd "$(dirname $0)"
1.84      lukem     438:        [ -d usr.bin/make ] ||
                    439:            bomb "build.sh must be run from the top source level"
                    440:        [ -f share/mk/bsd.own.mk ] ||
                    441:            bomb "src/share/mk is missing; please re-fetch the source tree"
                    442:
1.248     apb       443:        # Set various environment variables to known defaults,
                    444:        # to minimize (cross-)build problems observed "in the field".
                    445:        #
                    446:        # LC_ALL=C must be set before we try to parse the output from
                    447:        # any command.  Other variables are set (or unset) here, before
                    448:        # we parse command line arguments.
                    449:        #
                    450:        # These variables can be overridden via "-V var=value" if
                    451:        # you know what you are doing.
                    452:        #
                    453:        unsetmakeenv INFODIR
                    454:        unsetmakeenv LESSCHARSET
                    455:        unsetmakeenv MAKEFLAGS
1.261     pooka     456:        unsetmakeenv TERMINFO
1.218     apb       457:        setmakeenv LC_ALL C
                    458:
1.204     apb       459:        # Find information about the build platform.  This should be
                    460:        # kept in sync with _HOST_OSNAME, _HOST_OSREL, and _HOST_ARCH
                    461:        # variables in share/mk/bsd.sys.mk.
                    462:        #
                    463:        # Note that "uname -p" is not part of POSIX, but we want uname_p
                    464:        # to be set to the host MACHINE_ARCH, if possible.  On systems
                    465:        # where "uname -p" fails, prints "unknown", or prints a string
                    466:        # that does not look like an identifier, fall back to using the
                    467:        # output from "uname -m" instead.
1.165     apb       468:        #
1.84      lukem     469:        uname_s=$(uname -s 2>/dev/null)
1.165     apb       470:        uname_r=$(uname -r 2>/dev/null)
1.84      lukem     471:        uname_m=$(uname -m 2>/dev/null)
1.204     apb       472:        uname_p=$(uname -p 2>/dev/null || echo "unknown")
                    473:        case "${uname_p}" in
1.205     apb       474:        ''|unknown|*[^-_A-Za-z0-9]*) uname_p="${uname_m}" ;;
1.204     apb       475:        esac
1.84      lukem     476:
1.202     sketch    477:        id_u=$(id -u 2>/dev/null || /usr/xpg4/bin/id -u 2>/dev/null)
                    478:
1.84      lukem     479:        # If $PWD is a valid name of the current directory, POSIX mandates
                    480:        # that pwd return it by default which causes problems in the
                    481:        # presence of symlinks.  Unsetting PWD is simpler than changing
                    482:        # every occurrence of pwd to use -P.
                    483:        #
1.147     dogcow    484:        # XXX Except that doesn't work on Solaris. Or many Linuces.
1.98      lukem     485:        #
1.84      lukem     486:        unset PWD
1.147     dogcow    487:        TOP=$(/bin/pwd -P 2>/dev/null || /bin/pwd 2>/dev/null)
1.84      lukem     488:
1.153     apb       489:        # The user can set HOST_SH in the environment, or we try to
                    490:        # guess an appropriate value.  Then we set several other
                    491:        # variables from HOST_SH.
                    492:        #
                    493:        set_HOST_SH
                    494:        setmakeenv HOST_SH "${HOST_SH}"
                    495:        setmakeenv BSHELL "${HOST_SH}"
                    496:        setmakeenv CONFIG_SHELL "${HOST_SH}"
                    497:
1.84      lukem     498:        # Set defaults.
1.98      lukem     499:        #
1.84      lukem     500:        toolprefix=nb
1.98      lukem     501:
1.95      thorpej   502:        # Some systems have a small ARG_MAX.  -X prevents make(1) from
                    503:        # exporting variables in the environment redundantly.
1.98      lukem     504:        #
1.95      thorpej   505:        case "${uname_s}" in
1.97      christos  506:        Darwin | FreeBSD | CYGWIN*)
1.248     apb       507:                MAKEFLAGS="-X ${MAKEFLAGS}"
1.95      thorpej   508:                ;;
                    509:        esac
1.98      lukem     510:
1.171     apb       511:        # do_{operation}=true if given operation is requested.
                    512:        #
1.84      lukem     513:        do_expertmode=false
                    514:        do_rebuildmake=false
                    515:        do_removedirs=false
                    516:        do_tools=false
1.195     lukem     517:        do_cleandir=false
1.84      lukem     518:        do_obj=false
                    519:        do_build=false
                    520:        do_distribution=false
                    521:        do_release=false
                    522:        do_kernel=false
1.105     lukem     523:        do_releasekernel=false
1.207     jnemeth   524:        do_modules=false
1.245     jmcneill  525:        do_installmodules=false
1.84      lukem     526:        do_install=false
1.87      lukem     527:        do_sets=false
1.100     lukem     528:        do_sourcesets=false
1.142     apb       529:        do_syspkgs=false
1.146     apb       530:        do_iso_image=false
1.172     jnemeth   531:        do_iso_image_source=false
1.254     tsutsui   532:        do_live_image=false
                    533:        do_install_image=false
1.264     christos  534:        do_disk_image=false
1.107     lukem     535:        do_params=false
1.219     pooka     536:        do_rump=false
1.98      lukem     537:
1.211     apb       538:        # done_{operation}=true if given operation has been done.
                    539:        #
                    540:        done_rebuildmake=false
                    541:
1.98      lukem     542:        # Create scratch directory
                    543:        #
                    544:        tmpdir="${TMPDIR-/tmp}/nbbuild$$"
                    545:        mkdir "${tmpdir}" || bomb "Cannot mkdir: ${tmpdir}"
                    546:        trap "cd /; rm -r -f \"${tmpdir}\"" 0
                    547:        results="${tmpdir}/build.sh.results"
1.116     jmmv      548:
                    549:        # Set source directories
                    550:        #
                    551:        setmakeenv NETBSDSRCDIR "${TOP}"
1.136     lukem     552:
1.233     cegger    553:        # Make sure KERNOBJDIR is an absolute path if defined
                    554:        #
                    555:        case "${KERNOBJDIR}" in
                    556:        ''|/*)  ;;
                    557:        *)      KERNOBJDIR="${TOP}/${KERNOBJDIR}"
                    558:                setmakeenv KERNOBJDIR "${KERNOBJDIR}"
                    559:                ;;
                    560:        esac
                    561:
1.165     apb       562:        # Find the version of NetBSD
                    563:        #
                    564:        DISTRIBVER="$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh)"
                    565:
1.190     perry     566:        # Set the BUILDSEED to NetBSD-"N"
                    567:        #
                    568:        setmakeenv BUILDSEED "NetBSD-$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh -m)"
                    569:
1.206     perry     570:        # Set MKARZERO to "yes"
                    571:        #
                    572:        setmakeenv MKARZERO "yes"
                    573:
1.84      lukem     574: }
1.29      jmc       575:
1.258     apb       576: # valid_MACHINE_ARCH -- A multi-line string, listing all valid
                    577: # MACHINE/MACHINE_ARCH pairs.
                    578: #
                    579: # Each line contains a MACHINE and MACHINE_ARCH value, an optional ALIAS
                    580: # which may be used to refer to the MACHINE/MACHINE_ARCH pair, and an
                    581: # optional DEFAULT or NO_DEFAULT keyword.
                    582: #
                    583: # When a MACHINE corresponds to multiple possible values of
                    584: # MACHINE_ARCH, then this table should list all allowed combinations.
                    585: # If the MACHINE is associated with a default MACHINE_ARCH (to be
                    586: # used when the user specifies the MACHINE but fails to specify the
                    587: # MACHINE_ARCH), then one of the lines should have the "DEFAULT"
                    588: # keyword.  If there is no default MACHINE_ARCH for a particular
                    589: # MACHINE, then there should be a line with the "NO_DEFAULT" keyword,
                    590: # and with a blank MACHINE_ARCH.
                    591: #
                    592: valid_MACHINE_ARCH='
                    593: MACHINE=acorn26                MACHINE_ARCH=arm
                    594: MACHINE=acorn32                MACHINE_ARCH=arm
                    595: MACHINE=algor          MACHINE_ARCH=mips64el   ALIAS=algor64
                    596: MACHINE=algor          MACHINE_ARCH=mipsel     DEFAULT
                    597: MACHINE=alpha          MACHINE_ARCH=alpha
                    598: MACHINE=amd64          MACHINE_ARCH=x86_64
                    599: MACHINE=amiga          MACHINE_ARCH=m68k
                    600: MACHINE=amigappc       MACHINE_ARCH=powerpc
                    601: MACHINE=arc            MACHINE_ARCH=mips64el   ALIAS=arc64
                    602: MACHINE=arc            MACHINE_ARCH=mipsel     DEFAULT
                    603: MACHINE=atari          MACHINE_ARCH=m68k
                    604: MACHINE=bebox          MACHINE_ARCH=powerpc
1.286     riz       605: MACHINE=cats           MACHINE_ARCH=arm        ALIAS=ocats
                    606: MACHINE=cats           MACHINE_ARCH=earmv4     ALIAS=ecats DEFAULT
1.258     apb       607: MACHINE=cesfic         MACHINE_ARCH=m68k
                    608: MACHINE=cobalt         MACHINE_ARCH=mips64el   ALIAS=cobalt64
                    609: MACHINE=cobalt         MACHINE_ARCH=mipsel     DEFAULT
                    610: MACHINE=dreamcast      MACHINE_ARCH=sh3el
                    611: MACHINE=emips          MACHINE_ARCH=mipseb
1.267     kiyohara  612: MACHINE=epoc32         MACHINE_ARCH=arm
1.286     riz       613: MACHINE=evbarm         MACHINE_ARCH=arm        ALIAS=evboarm-el
                    614: MACHINE=evbarm         MACHINE_ARCH=armeb      ALIAS=evboarm-eb
                    615: MACHINE=evbarm         MACHINE_ARCH=earm       ALIAS=evbearm-el DEFAULT
1.258     apb       616: MACHINE=evbarm         MACHINE_ARCH=earmeb     ALIAS=evbearm-eb
1.263     matt      617: MACHINE=evbarm         MACHINE_ARCH=earmhf     ALIAS=evbearmhf-el
                    618: MACHINE=evbarm         MACHINE_ARCH=earmhfeb   ALIAS=evbearmhf-eb
1.272     matt      619: MACHINE=evbarm         MACHINE_ARCH=earmv4     ALIAS=evbearmv4-el
                    620: MACHINE=evbarm         MACHINE_ARCH=earmv4eb   ALIAS=evbearmv4-eb
                    621: MACHINE=evbarm         MACHINE_ARCH=earmv5     ALIAS=evbearmv5-el
                    622: MACHINE=evbarm         MACHINE_ARCH=earmv5eb   ALIAS=evbearmv5-eb
                    623: MACHINE=evbarm         MACHINE_ARCH=earmv6     ALIAS=evbearmv6-el
                    624: MACHINE=evbarm         MACHINE_ARCH=earmv6hf   ALIAS=evbearmv6hf-el
                    625: MACHINE=evbarm         MACHINE_ARCH=earmv6eb   ALIAS=evbearmv6-eb
                    626: MACHINE=evbarm         MACHINE_ARCH=earmv6hfeb ALIAS=evbearmv6hf-eb
                    627: MACHINE=evbarm         MACHINE_ARCH=earmv7     ALIAS=evbearmv7-el
1.271     matt      628: MACHINE=evbarm         MACHINE_ARCH=earmv7eb   ALIAS=evbearmv7-eb
1.272     matt      629: MACHINE=evbarm         MACHINE_ARCH=earmv7hf   ALIAS=evbearmv7hf-el
1.271     matt      630: MACHINE=evbarm         MACHINE_ARCH=earmv7hfeb ALIAS=evbearmv7hf-eb
1.270     matt      631: MACHINE=evbcf          MACHINE_ARCH=coldfire
1.258     apb       632: MACHINE=evbmips                MACHINE_ARCH=           NO_DEFAULT
                    633: MACHINE=evbmips                MACHINE_ARCH=mips64eb   ALIAS=evbmips64-eb
                    634: MACHINE=evbmips                MACHINE_ARCH=mips64el   ALIAS=evbmips64-el
                    635: MACHINE=evbmips                MACHINE_ARCH=mipseb     ALIAS=evbmips-eb
                    636: MACHINE=evbmips                MACHINE_ARCH=mipsel     ALIAS=evbmips-el
                    637: MACHINE=evbppc         MACHINE_ARCH=powerpc    DEFAULT
                    638: MACHINE=evbppc         MACHINE_ARCH=powerpc64  ALIAS=evbppc64
                    639: MACHINE=evbsh3         MACHINE_ARCH=           NO_DEFAULT
                    640: MACHINE=evbsh3         MACHINE_ARCH=sh3eb      ALIAS=evbsh3-eb
                    641: MACHINE=evbsh3         MACHINE_ARCH=sh3el      ALIAS=evbsh3-el
                    642: MACHINE=ews4800mips    MACHINE_ARCH=mipseb
                    643: MACHINE=hp300          MACHINE_ARCH=m68k
1.276     skrll     644: MACHINE=hppa           MACHINE_ARCH=hppa
1.286     riz       645: MACHINE=hpcarm         MACHINE_ARCH=arm        ALIAS=hpcoarm
1.268     matt      646: MACHINE=hpcarm         MACHINE_ARCH=earm       ALIAS=hpcearm
1.286     riz       647: MACHINE=hpcarm         MACHINE_ARCH=earmv4     ALIAS=hpcearmv4 DEFAULT
1.258     apb       648: MACHINE=hpcmips                MACHINE_ARCH=mipsel
                    649: MACHINE=hpcsh          MACHINE_ARCH=sh3el
                    650: MACHINE=i386           MACHINE_ARCH=i386
                    651: MACHINE=ia64           MACHINE_ARCH=ia64
                    652: MACHINE=ibmnws         MACHINE_ARCH=powerpc
1.286     riz       653: MACHINE=iyonix         MACHINE_ARCH=arm        ALIAS=oiyonix
                    654: MACHINE=iyonix         MACHINE_ARCH=earm       ALIAS=eiyonix DEFAULT
1.258     apb       655: MACHINE=landisk                MACHINE_ARCH=sh3el
                    656: MACHINE=luna68k                MACHINE_ARCH=m68k
                    657: MACHINE=mac68k         MACHINE_ARCH=m68k
                    658: MACHINE=macppc         MACHINE_ARCH=powerpc    DEFAULT
                    659: MACHINE=macppc         MACHINE_ARCH=powerpc64  ALIAS=macppc64
                    660: MACHINE=mipsco         MACHINE_ARCH=mipseb
                    661: MACHINE=mmeye          MACHINE_ARCH=sh3eb
                    662: MACHINE=mvme68k                MACHINE_ARCH=m68k
                    663: MACHINE=mvmeppc                MACHINE_ARCH=powerpc
1.286     riz       664: MACHINE=netwinder      MACHINE_ARCH=arm        ALIAS=onetwinder
                    665: MACHINE=netwinder      MACHINE_ARCH=earmv4     ALIAS=enetwinder DEFAULT
1.258     apb       666: MACHINE=news68k                MACHINE_ARCH=m68k
                    667: MACHINE=newsmips       MACHINE_ARCH=mipseb
                    668: MACHINE=next68k                MACHINE_ARCH=m68k
                    669: MACHINE=ofppc          MACHINE_ARCH=powerpc    DEFAULT
                    670: MACHINE=ofppc          MACHINE_ARCH=powerpc64  ALIAS=ofppc64
1.278     martin    671: MACHINE=playstation2   MACHINE_ARCH=mipsel
1.258     apb       672: MACHINE=pmax           MACHINE_ARCH=mips64el   ALIAS=pmax64
                    673: MACHINE=pmax           MACHINE_ARCH=mipsel     DEFAULT
                    674: MACHINE=prep           MACHINE_ARCH=powerpc
                    675: MACHINE=rs6000         MACHINE_ARCH=powerpc
                    676: MACHINE=sandpoint      MACHINE_ARCH=powerpc
                    677: MACHINE=sbmips         MACHINE_ARCH=           NO_DEFAULT
                    678: MACHINE=sbmips         MACHINE_ARCH=mips64eb   ALIAS=sbmips64-eb
                    679: MACHINE=sbmips         MACHINE_ARCH=mips64el   ALIAS=sbmips64-el
                    680: MACHINE=sbmips         MACHINE_ARCH=mipseb     ALIAS=sbmips-eb
                    681: MACHINE=sbmips         MACHINE_ARCH=mipsel     ALIAS=sbmips-el
                    682: MACHINE=sgimips                MACHINE_ARCH=mips64eb   ALIAS=sgimips64
                    683: MACHINE=sgimips                MACHINE_ARCH=mipseb     DEFAULT
1.286     riz       684: MACHINE=shark          MACHINE_ARCH=arm        ALIAS=oshark
                    685: MACHINE=shark          MACHINE_ARCH=earmv4     ALIAS=eshark DEFAULT
1.258     apb       686: MACHINE=sparc          MACHINE_ARCH=sparc
                    687: MACHINE=sparc64                MACHINE_ARCH=sparc64
                    688: MACHINE=sun2           MACHINE_ARCH=m68000
                    689: MACHINE=sun3           MACHINE_ARCH=m68k
                    690: MACHINE=vax            MACHINE_ARCH=vax
                    691: MACHINE=x68k           MACHINE_ARCH=m68k
1.286     riz       692: MACHINE=zaurus         MACHINE_ARCH=arm        ALIAS=ozaurus
                    693: MACHINE=zaurus         MACHINE_ARCH=earm       ALIAS=ezaurus DEFAULT
1.258     apb       694: '
                    695:
                    696: # getarch -- find the default MACHINE_ARCH for a MACHINE,
                    697: # or convert an alias to a MACHINE/MACHINE_ARCH pair.
                    698: #
                    699: # Saves MACHINE in makewrappermachine before possibly modifying MACHINE.
                    700: #
                    701: # Sets MACHINE and MACHINE_ARCH if the input MACHINE value is
                    702: # recognised as an alias, or recognised as a machine that has a default
                    703: # MACHINE_ARCH (or that has only one possible MACHINE_ARCH).
                    704: #
                    705: # Leaves MACHINE and MACHINE_ARCH unchanged if MACHINE is recognised
                    706: # as being associated with multiple MACHINE_ARCH values with no default.
                    707: #
                    708: # Bombs if MACHINE is not recognised.
                    709: #
1.79      lukem     710: getarch()
                    711: {
1.258     apb       712:        local IFS
                    713:        local found=""
                    714:        local line
                    715:
                    716:        IFS="${nl}"
                    717:        makewrappermachine="${MACHINE}"
                    718:        for line in ${valid_MACHINE_ARCH}; do
                    719:                line="${line%%#*}" # ignore comments
                    720:                line="$( IFS=" ${tab}" ; echo $line )" # normalise white space
                    721:                case "${line} " in
1.283     apb       722:                " ")
1.258     apb       723:                        # skip blank lines or comment lines
                    724:                        continue
                    725:                        ;;
                    726:                *" ALIAS=${MACHINE} "*)
                    727:                        # Found a line with a matching ALIAS=<alias>.
                    728:                        found="$line"
                    729:                        break
                    730:                        ;;
                    731:                "MACHINE=${MACHINE} "*" NO_DEFAULT"*)
                    732:                        # Found an explicit "NO_DEFAULT" for this MACHINE.
                    733:                        found="$line"
                    734:                        break
                    735:                        ;;
                    736:                "MACHINE=${MACHINE} "*" DEFAULT"*)
                    737:                        # Found an explicit "DEFAULT" for this MACHINE.
                    738:                        found="$line"
                    739:                        break
                    740:                        ;;
                    741:                "MACHINE=${MACHINE} "*)
                    742:                        # Found a line for this MACHINE.  If it's the
                    743:                        # first such line, then tentatively accept it.
                    744:                        # If it's not the first matching line, then
                    745:                        # remember that there was more than one match.
                    746:                        case "$found" in
                    747:                        '')     found="$line" ;;
                    748:                        *)      found="MULTIPLE_MATCHES" ; break ;;
                    749:                        esac
                    750:                        ;;
                    751:                esac
                    752:        done
1.158     apb       753:
1.258     apb       754:        case "$found" in
                    755:        *NO_DEFAULT*|*MULTIPLE_MATCHES*)
                    756:                # MACHINE is OK, but MACHINE_ARCH is still unknown
                    757:                return
                    758:                ;;
                    759:        "MACHINE="*" MACHINE_ARCH="*)
                    760:                # Obey the MACHINE= and MACHINE_ARCH= parts of the line.
                    761:                IFS=" "
                    762:                for frag in ${found}; do
                    763:                        case "$frag" in
                    764:                        MACHINE=*|MACHINE_ARCH=*)
                    765:                                eval "$frag"
                    766:                                ;;
                    767:                        esac
                    768:                done
1.160     matt      769:                ;;
1.84      lukem     770:        *)
1.98      lukem     771:                bomb "Unknown target MACHINE: ${MACHINE}"
1.84      lukem     772:                ;;
1.1       tv        773:        esac
                    774: }
                    775:
1.258     apb       776: # validatearch -- check that the MACHINE/MACHINE_ARCH pair is supported.
                    777: #
                    778: # Bombs if the pair is not supported.
                    779: #
1.79      lukem     780: validatearch()
                    781: {
1.258     apb       782:        local IFS
                    783:        local line
                    784:        local foundpair=false foundmachine=false foundarch=false
                    785:
1.98      lukem     786:        case "${MACHINE_ARCH}" in
1.101     lukem     787:        "")
                    788:                bomb "No MACHINE_ARCH provided"
                    789:                ;;
1.98      lukem     790:        esac
                    791:
1.258     apb       792:        IFS="${nl}"
                    793:        for line in ${valid_MACHINE_ARCH}; do
                    794:                line="${line%%#*}" # ignore comments
                    795:                line="$( IFS=" ${tab}" ; echo $line )" # normalise white space
                    796:                case "${line} " in
1.283     apb       797:                " ")
1.258     apb       798:                        # skip blank lines or comment lines
                    799:                        continue
                    800:                        ;;
                    801:                "MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} "*)
                    802:                        foundpair=true
                    803:                        ;;
                    804:                "MACHINE=${MACHINE} "*)
                    805:                        foundmachine=true
                    806:                        ;;
                    807:                *"MACHINE_ARCH=${MACHINE_ARCH} "*)
                    808:                        foundarch=true
                    809:                        ;;
                    810:                esac
                    811:        done
1.98      lukem     812:
1.258     apb       813:        case "${foundpair}:${foundmachine}:${foundarch}" in
                    814:        true:*)
                    815:                : OK
1.255     matt      816:                ;;
1.258     apb       817:        *:false:*)
                    818:                bomb "Unknown target MACHINE: ${MACHINE}"
1.98      lukem     819:                ;;
1.258     apb       820:        *:*:false)
                    821:                bomb "Unknown target MACHINE_ARCH: ${MACHINE_ARCH}"
1.148     mrg       822:                ;;
1.98      lukem     823:        *)
1.258     apb       824:                bomb "MACHINE_ARCH '${MACHINE_ARCH}' does not support MACHINE '${MACHINE}'"
1.84      lukem     825:                ;;
1.47      tv        826:        esac
                    827: }
                    828:
1.210     apb       829: # nobomb_getmakevar --
                    830: # Given the name of a make variable in $1, print make's idea of the
                    831: # value of that variable, or return 1 if there's an error.
                    832: #
1.168     apb       833: nobomb_getmakevar()
1.79      lukem     834: {
1.168     apb       835:        [ -x "${make}" ] || return 1
                    836:        "${make}" -m ${TOP}/share/mk -s -B -f- _x_ <<EOF || return 1
1.15      tv        837: _x_:
                    838:        echo \${$1}
                    839: .include <bsd.prog.mk>
1.70      lukem     840: .include <bsd.kernobj.mk>
1.15      tv        841: EOF
                    842: }
                    843:
1.250     apb       844: # bomb_getmakevar --
1.210     apb       845: # Given the name of a make variable in $1, print make's idea of the
                    846: # value of that variable, or bomb if there's an error.
                    847: #
                    848: bomb_getmakevar()
1.168     apb       849: {
1.210     apb       850:        [ -x "${make}" ] || bomb "bomb_getmakevar $1: ${make} is not executable"
                    851:        nobomb_getmakevar "$1" || bomb "bomb_getmakevar $1: ${make} failed"
1.168     apb       852: }
                    853:
1.250     apb       854: # getmakevar --
1.210     apb       855: # Given the name of a make variable in $1, print make's idea of the
                    856: # value of that variable, or print a literal '$' followed by the
                    857: # variable name if ${make} is not executable.  This is intended for use in
                    858: # messages that need to be readable even if $make hasn't been built,
                    859: # such as when build.sh is run with the "-n" option.
                    860: #
1.98      lukem     861: getmakevar()
1.82      lukem     862: {
1.98      lukem     863:        if [ -x "${make}" ]; then
1.210     apb       864:                bomb_getmakevar "$1"
1.82      lukem     865:        else
                    866:                echo "\$$1"
                    867:        fi
                    868: }
                    869:
1.109     lukem     870: setmakeenv()
                    871: {
                    872:        eval "$1='$2'; export $1"
                    873:        makeenv="${makeenv} $1"
                    874: }
                    875:
1.111     lukem     876: unsetmakeenv()
                    877: {
                    878:        eval "unset $1"
                    879:        makeenv="${makeenv} $1"
                    880: }
                    881:
1.208     apb       882: # Given a variable name in $1, modify the variable in place as follows:
                    883: # For each space-separated word in the variable, call resolvepath.
1.189     dyoung    884: resolvepaths()
                    885: {
1.208     apb       886:        local var="$1"
                    887:        local val
                    888:        eval val=\"\${${var}}\"
                    889:        local newval=''
                    890:        local word
                    891:        for word in ${val}; do
                    892:                resolvepath word
                    893:                newval="${newval}${newval:+ }${word}"
1.189     dyoung    894:        done
1.208     apb       895:        eval ${var}=\"\${newval}\"
1.189     dyoung    896: }
                    897:
1.208     apb       898: # Given a variable name in $1, modify the variable in place as follows:
1.131     junyoung  899: # Convert possibly-relative path to absolute path by prepending
                    900: # ${TOP} if necessary.  Also delete trailing "/", if any.
1.79      lukem     901: resolvepath()
                    902: {
1.208     apb       903:        local var="$1"
                    904:        local val
                    905:        eval val=\"\${${var}}\"
                    906:        case "${val}" in
1.131     junyoung  907:        /)
                    908:                ;;
1.84      lukem     909:        /*)
1.208     apb       910:                val="${val%/}"
1.84      lukem     911:                ;;
                    912:        *)
1.208     apb       913:                val="${TOP}/${val%/}"
1.84      lukem     914:                ;;
1.10      tv        915:        esac
1.208     apb       916:        eval ${var}=\"\${val}\"
1.10      tv        917: }
                    918:
1.79      lukem     919: usage()
                    920: {
1.84      lukem     921:        if [ -n "$*" ]; then
                    922:                echo ""
                    923:                echo "${progname}: $*"
                    924:        fi
1.70      lukem     925:        cat <<_usage_
1.83      lukem     926:
1.246     wiz       927: Usage: ${progname} [-EhnorUuxy] [-a arch] [-B buildid] [-C cdextras]
1.195     lukem     928:                 [-D dest] [-j njob] [-M obj] [-m mach] [-N noisy]
                    929:                 [-O obj] [-R release] [-S seed] [-T tools]
1.222     uebayasi  930:                 [-V var=[value]] [-w wrapper] [-X x11src] [-Y extsrcsrc]
                    931:                 [-Z var]
1.195     lukem     932:                 operation [...]
1.84      lukem     933:
1.86      lukem     934:  Build operations (all imply "obj" and "tools"):
1.125     lukem     935:     build               Run "make build".
                    936:     distribution        Run "make distribution" (includes DESTDIR/etc/ files).
                    937:     release             Run "make release" (includes kernels & distrib media).
1.84      lukem     938:
                    939:  Other operations:
1.125     lukem     940:     help                Show this message and exit.
1.98      lukem     941:     makewrapper         Create ${toolprefix}make-\${MACHINE} wrapper and ${toolprefix}make.
1.125     lukem     942:                         Always performed.
1.195     lukem     943:     cleandir            Run "make cleandir".  [Default unless -u is used]
1.125     lukem     944:     obj                 Run "make obj".  [Default unless -o is used]
                    945:     tools               Build and install tools.
                    946:     install=idir        Run "make installworld" to \`idir' to install all sets
1.195     lukem     947:                         except \`etc'.  Useful after "distribution" or "release"
1.105     lukem     948:     kernel=conf         Build kernel with config file \`conf'
1.281     martin    949:     kernel.gdb=conf     Build kernel (including netbsd.gdb) with config
                    950:                        file \`conf'
1.125     lukem     951:     releasekernel=conf  Install kernel built by kernel=conf to RELEASEDIR.
1.245     jmcneill  952:     installmodules=idir Run "make installmodules" to \`idir' to install all
                    953:                         kernel modules.
1.226     mbalmer   954:     modules             Build kernel modules.
1.219     pooka     955:     rumptest            Do a linktest for rump (for developers).
1.186     lukem     956:     sets                Create binary sets in
1.195     lukem     957:                         RELEASEDIR/RELEASEMACHINEDIR/binary/sets.
                    958:                         DESTDIR should be populated beforehand.
1.125     lukem     959:     sourcesets          Create source sets in RELEASEDIR/source/sets.
1.186     lukem     960:     syspkgs             Create syspkgs in
1.195     lukem     961:                         RELEASEDIR/RELEASEMACHINEDIR/binary/syspkgs.
1.172     jnemeth   962:     iso-image           Create CD-ROM image in RELEASEDIR/iso.
                    963:     iso-image-source    Create CD-ROM image with source in RELEASEDIR/iso.
1.253     tsutsui   964:     live-image          Create bootable live image in
                    965:                         RELEASEDIR/RELEASEMACHINEDIR/installation/liveimage.
                    966:     install-image       Create bootable installation image in
                    967:                         RELEASEDIR/RELEASEMACHINEDIR/installation/installimage.
1.264     christos  968:     disk-image=target  Creae bootable disk image in
                    969:                        RELEASEDIR/RELEASEMACHINEDIR/binary/gzimg/target.img.gz.
1.125     lukem     970:     params              Display various make(1) parameters.
1.84      lukem     971:
                    972:  Options:
1.246     wiz       973:     -a arch        Set MACHINE_ARCH to arch.  [Default: deduced from MACHINE]
                    974:     -B buildid     Set BUILDID to buildid.
                    975:     -C cdextras    Append cdextras to CDEXTRA variable for inclusion on CD-ROM.
                    976:     -D dest        Set DESTDIR to dest.  [Default: destdir.MACHINE]
                    977:     -E             Set "expert" mode; disables various safety checks.
                    978:                    Should not be used without expert knowledge of the build system.
                    979:     -h             Print this help message.
                    980:     -j njob        Run up to njob jobs in parallel; see make(1) -j.
                    981:     -M obj         Set obj root directory to obj; sets MAKEOBJDIRPREFIX.
                    982:                    Unsets MAKEOBJDIR.
                    983:     -m mach        Set MACHINE to mach; not required if NetBSD native.
                    984:     -N noisy       Set the noisyness (MAKEVERBOSE) level of the build:
                    985:                        0   Minimal output ("quiet")
                    986:                        1   Describe what is occurring
                    987:                        2   Describe what is occurring and echo the actual command
                    988:                        3   Ignore the effect of the "@" prefix in make commands
                    989:                        4   Trace shell commands using the shell's -x flag
                    990:                    [Default: 2]
                    991:     -n             Show commands that would be executed, but do not execute them.
                    992:     -O obj         Set obj root directory to obj; sets a MAKEOBJDIR pattern.
                    993:                    Unsets MAKEOBJDIRPREFIX.
                    994:     -o             Set MKOBJDIRS=no; do not create objdirs at start of build.
                    995:     -R release     Set RELEASEDIR to release.  [Default: releasedir]
                    996:     -r             Remove contents of TOOLDIR and DESTDIR before building.
                    997:     -S seed        Set BUILDSEED to seed.  [Default: NetBSD-majorversion]
                    998:     -T tools       Set TOOLDIR to tools.  If unset, and TOOLDIR is not set in
                    999:                    the environment, ${toolprefix}make will be (re)built
                   1000:                    unconditionally.
                   1001:     -U             Set MKUNPRIVED=yes; build without requiring root privileges,
                   1002:                    install from an UNPRIVED build with proper file permissions.
                   1003:     -u             Set MKUPDATE=yes; do not run "make cleandir" first.
                   1004:                    Without this, everything is rebuilt, including the tools.
                   1005:     -V var=[value] Set variable \`var' to \`value'.
                   1006:     -w wrapper     Create ${toolprefix}make script as wrapper.
                   1007:                    [Default: \${TOOLDIR}/bin/${toolprefix}make-\${MACHINE}]
                   1008:     -X x11src      Set X11SRCDIR to x11src.  [Default: /usr/xsrc]
                   1009:     -x             Set MKX11=yes; build X11 from X11SRCDIR
                   1010:     -Y extsrcsrc   Set EXTSRCSRCDIR to extsrcsrc.  [Default: /usr/extsrc]
                   1011:     -y             Set MKEXTSRC=yes; build extsrc from EXTSRCSRCDIR
                   1012:     -Z var         Unset ("zap") variable \`var'.
1.83      lukem    1013:
1.70      lukem    1014: _usage_
1.1       tv       1015:        exit 1
                   1016: }
                   1017:
1.84      lukem    1018: parseoptions()
                   1019: {
1.246     wiz      1020:        opts='a:B:C:D:Ehj:M:m:N:nO:oR:rS:T:UuV:w:X:xY:yZ:'
1.84      lukem    1021:        opt_a=no
                   1022:
                   1023:        if type getopts >/dev/null 2>&1; then
                   1024:                # Use POSIX getopts.
1.98      lukem    1025:                #
                   1026:                getoptcmd='getopts ${opts} opt && opt=-${opt}'
1.84      lukem    1027:                optargcmd=':'
1.98      lukem    1028:                optremcmd='shift $((${OPTIND} -1))'
1.84      lukem    1029:        else
                   1030:                type getopt >/dev/null 2>&1 ||
1.249     apb      1031:                    bomb "Shell does not support getopts or getopt"
1.84      lukem    1032:
                   1033:                # Use old-style getopt(1) (doesn't handle whitespace in args).
1.98      lukem    1034:                #
                   1035:                args="$(getopt ${opts} $*)"
1.84      lukem    1036:                [ $? = 0 ] || usage
1.98      lukem    1037:                set -- ${args}
1.84      lukem    1038:
                   1039:                getoptcmd='[ $# -gt 0 ] && opt="$1" && shift'
                   1040:                optargcmd='OPTARG="$1"; shift'
                   1041:                optremcmd=':'
                   1042:        fi
                   1043:
                   1044:        # Parse command line options.
                   1045:        #
1.98      lukem    1046:        while eval ${getoptcmd}; do
                   1047:                case ${opt} in
1.84      lukem    1048:
                   1049:                -a)
1.98      lukem    1050:                        eval ${optargcmd}
                   1051:                        MACHINE_ARCH=${OPTARG}
1.84      lukem    1052:                        opt_a=yes
                   1053:                        ;;
                   1054:
                   1055:                -B)
1.98      lukem    1056:                        eval ${optargcmd}
                   1057:                        BUILDID=${OPTARG}
1.84      lukem    1058:                        ;;
                   1059:
1.174     jnemeth  1060:                -C)
1.208     apb      1061:                        eval ${optargcmd}; resolvepaths OPTARG
1.209     apb      1062:                        CDEXTRA="${CDEXTRA}${CDEXTRA:+ }${OPTARG}"
1.174     jnemeth  1063:                        ;;
                   1064:
1.84      lukem    1065:                -D)
1.208     apb      1066:                        eval ${optargcmd}; resolvepath OPTARG
1.109     lukem    1067:                        setmakeenv DESTDIR "${OPTARG}"
1.84      lukem    1068:                        ;;
                   1069:
                   1070:                -E)
                   1071:                        do_expertmode=true
                   1072:                        ;;
                   1073:
                   1074:                -j)
1.98      lukem    1075:                        eval ${optargcmd}
                   1076:                        parallel="-j ${OPTARG}"
1.84      lukem    1077:                        ;;
                   1078:
                   1079:                -M)
1.208     apb      1080:                        eval ${optargcmd}; resolvepath OPTARG
1.212     apb      1081:                        case "${OPTARG}" in
1.247     apb      1082:                        \$*)    usage "-M argument must not begin with '\$'"
1.212     apb      1083:                                ;;
                   1084:                        *\$*)   # can use resolvepath, but can't set TOP_objdir
                   1085:                                resolvepath OPTARG
                   1086:                                ;;
                   1087:                        *)      resolvepath OPTARG
                   1088:                                TOP_objdir="${OPTARG}${TOP}"
                   1089:                                ;;
                   1090:                        esac
1.111     lukem    1091:                        unsetmakeenv MAKEOBJDIR
1.109     lukem    1092:                        setmakeenv MAKEOBJDIRPREFIX "${OPTARG}"
1.84      lukem    1093:                        ;;
                   1094:
                   1095:                        # -m overrides MACHINE_ARCH unless "-a" is specified
                   1096:                -m)
1.98      lukem    1097:                        eval ${optargcmd}
                   1098:                        MACHINE="${OPTARG}"
                   1099:                        [ "${opt_a}" != "yes" ] && getarch
1.84      lukem    1100:                        ;;
                   1101:
1.119     lukem    1102:                -N)
                   1103:                        eval ${optargcmd}
                   1104:                        case "${OPTARG}" in
1.199     apb      1105:                        0|1|2|3|4)
1.121     lukem    1106:                                setmakeenv MAKEVERBOSE "${OPTARG}"
1.119     lukem    1107:                                ;;
                   1108:                        *)
                   1109:                                usage "'${OPTARG}' is not a valid value for -N"
                   1110:                                ;;
                   1111:                        esac
                   1112:                        ;;
                   1113:
1.84      lukem    1114:                -n)
                   1115:                        runcmd=echo
                   1116:                        ;;
                   1117:
                   1118:                -O)
1.212     apb      1119:                        eval ${optargcmd}
                   1120:                        case "${OPTARG}" in
1.247     apb      1121:                        *\$*)   usage "-O argument must not contain '\$'"
1.212     apb      1122:                                ;;
                   1123:                        *)      resolvepath OPTARG
                   1124:                                TOP_objdir="${OPTARG}"
                   1125:                                ;;
                   1126:                        esac
1.111     lukem    1127:                        unsetmakeenv MAKEOBJDIRPREFIX
1.109     lukem    1128:                        setmakeenv MAKEOBJDIR "\${.CURDIR:C,^$TOP,$OPTARG,}"
1.84      lukem    1129:                        ;;
                   1130:
                   1131:                -o)
                   1132:                        MKOBJDIRS=no
                   1133:                        ;;
                   1134:
                   1135:                -R)
1.208     apb      1136:                        eval ${optargcmd}; resolvepath OPTARG
1.109     lukem    1137:                        setmakeenv RELEASEDIR "${OPTARG}"
1.84      lukem    1138:                        ;;
                   1139:
                   1140:                -r)
                   1141:                        do_removedirs=true
                   1142:                        do_rebuildmake=true
                   1143:                        ;;
                   1144:
1.190     perry    1145:                -S)
                   1146:                        eval ${optargcmd}
                   1147:                        setmakeenv BUILDSEED "${OPTARG}"
                   1148:                        ;;
                   1149:
1.84      lukem    1150:                -T)
1.208     apb      1151:                        eval ${optargcmd}; resolvepath OPTARG
1.98      lukem    1152:                        TOOLDIR="${OPTARG}"
1.84      lukem    1153:                        export TOOLDIR
                   1154:                        ;;
                   1155:
                   1156:                -U)
1.109     lukem    1157:                        setmakeenv MKUNPRIVED yes
1.84      lukem    1158:                        ;;
1.44      lukem    1159:
1.84      lukem    1160:                -u)
1.109     lukem    1161:                        setmakeenv MKUPDATE yes
1.84      lukem    1162:                        ;;
1.15      tv       1163:
1.84      lukem    1164:                -V)
1.98      lukem    1165:                        eval ${optargcmd}
1.84      lukem    1166:                        case "${OPTARG}" in
1.80      lukem    1167:                    # XXX: consider restricting which variables can be changed?
1.84      lukem    1168:                        [a-zA-Z_][a-zA-Z_0-9]*=*)
1.109     lukem    1169:                                setmakeenv "${OPTARG%%=*}" "${OPTARG#*=}"
1.84      lukem    1170:                                ;;
                   1171:                        *)
                   1172:                                usage "-V argument must be of the form 'var=[value]'"
                   1173:                                ;;
                   1174:                        esac
                   1175:                        ;;
                   1176:
                   1177:                -w)
1.208     apb      1178:                        eval ${optargcmd}; resolvepath OPTARG
1.98      lukem    1179:                        makewrapper="${OPTARG}"
1.84      lukem    1180:                        ;;
                   1181:
1.127     lukem    1182:                -X)
1.208     apb      1183:                        eval ${optargcmd}; resolvepath OPTARG
1.127     lukem    1184:                        setmakeenv X11SRCDIR "${OPTARG}"
                   1185:                        ;;
                   1186:
                   1187:                -x)
                   1188:                        setmakeenv MKX11 yes
                   1189:                        ;;
                   1190:
1.222     uebayasi 1191:                -Y)
                   1192:                        eval ${optargcmd}; resolvepath OPTARG
                   1193:                        setmakeenv EXTSRCSRCDIR "${OPTARG}"
                   1194:                        ;;
                   1195:
                   1196:                -y)
                   1197:                        setmakeenv MKEXTSRC yes
                   1198:                        ;;
                   1199:
1.111     lukem    1200:                -Z)
                   1201:                        eval ${optargcmd}
                   1202:                    # XXX: consider restricting which variables can be unset?
                   1203:                        unsetmakeenv "${OPTARG}"
                   1204:                        ;;
                   1205:
1.84      lukem    1206:                --)
                   1207:                        break
                   1208:                        ;;
                   1209:
                   1210:                -'?'|-h)
                   1211:                        usage
                   1212:                        ;;
                   1213:
                   1214:                esac
                   1215:        done
                   1216:
                   1217:        # Validate operations.
                   1218:        #
1.98      lukem    1219:        eval ${optremcmd}
1.84      lukem    1220:        while [ $# -gt 0 ]; do
                   1221:                op=$1; shift
1.98      lukem    1222:                operations="${operations} ${op}"
1.84      lukem    1223:
1.98      lukem    1224:                case "${op}" in
1.84      lukem    1225:
1.87      lukem    1226:                help)
                   1227:                        usage
                   1228:                        ;;
                   1229:
1.195     lukem    1230:                makewrapper|cleandir|obj|tools|build|distribution|release|sets|sourcesets|syspkgs|params)
1.80      lukem    1231:                        ;;
1.84      lukem    1232:
1.146     apb      1233:                iso-image)
                   1234:                        op=iso_image    # used as part of a variable name
                   1235:                        ;;
                   1236:
1.172     jnemeth  1237:                iso-image-source)
                   1238:                        op=iso_image_source   # used as part of a variable name
                   1239:                        ;;
                   1240:
1.253     tsutsui  1241:                live-image)
                   1242:                        op=live_image   # used as part of a variable name
                   1243:                        ;;
                   1244:
                   1245:                install-image)
                   1246:                        op=install_image # used as part of a variable name
                   1247:                        ;;
                   1248:
1.281     martin   1249:                kernel=*|releasekernel=*|kernel.gdb=*)
1.84      lukem    1250:                        arg=${op#*=}
                   1251:                        op=${op%%=*}
1.98      lukem    1252:                        [ -n "${arg}" ] ||
1.105     lukem    1253:                            bomb "Must supply a kernel name with \`${op}=...'"
1.84      lukem    1254:                        ;;
                   1255:
1.264     christos 1256:                disk-image=*)
                   1257:                        arg=${op#*=}
                   1258:                        op=disk_image
                   1259:                        [ -n "${arg}" ] ||
                   1260:                            bomb "Must supply a target name with \`${op}=...'"
                   1261:
                   1262:                        ;;
                   1263:
1.207     jnemeth  1264:                modules)
                   1265:                        op=modules
                   1266:                        ;;
                   1267:
1.245     jmcneill 1268:                install=*|installmodules=*)
1.84      lukem    1269:                        arg=${op#*=}
                   1270:                        op=${op%%=*}
1.98      lukem    1271:                        [ -n "${arg}" ] ||
                   1272:                            bomb "Must supply a directory with \`install=...'"
1.84      lukem    1273:                        ;;
                   1274:
1.219     pooka    1275:                rump|rumptest)
                   1276:                        op=${op}
                   1277:                        ;;
                   1278:
1.80      lukem    1279:                *)
1.84      lukem    1280:                        usage "Unknown operation \`${op}'"
                   1281:                        ;;
                   1282:
1.80      lukem    1283:                esac
1.98      lukem    1284:                eval do_${op}=true
1.84      lukem    1285:        done
1.98      lukem    1286:        [ -n "${operations}" ] || usage "Missing operation to perform."
1.84      lukem    1287:
                   1288:        # Set up MACHINE*.  On a NetBSD host, these are allowed to be unset.
                   1289:        #
1.98      lukem    1290:        if [ -z "${MACHINE}" ]; then
                   1291:                [ "${uname_s}" = "NetBSD" ] ||
                   1292:                    bomb "MACHINE must be set, or -m must be used, for cross builds."
1.84      lukem    1293:                MACHINE=${uname_m}
                   1294:        fi
1.98      lukem    1295:        [ -n "${MACHINE_ARCH}" ] || getarch
1.84      lukem    1296:        validatearch
                   1297:
                   1298:        # Set up default make(1) environment.
                   1299:        #
1.98      lukem    1300:        makeenv="${makeenv} TOOLDIR MACHINE MACHINE_ARCH MAKEFLAGS"
                   1301:        [ -z "${BUILDID}" ] || makeenv="${makeenv} BUILDID"
1.287   ! apb      1302:        [ -z "${BUILDINFO}" ] || makeenv="${makeenv} BUILDINFO"
1.248     apb      1303:        MAKEFLAGS="-de -m ${TOP}/share/mk ${MAKEFLAGS}"
                   1304:        MAKEFLAGS="${MAKEFLAGS} MKOBJDIRS=${MKOBJDIRS-yes}"
1.84      lukem    1305:        export MAKEFLAGS MACHINE MACHINE_ARCH
1.284     apb      1306:        setmakeenv USETOOLS "yes"
                   1307:        setmakeenv MAKEWRAPPERMACHINE "${makewrappermachine:-${MACHINE}}"
1.84      lukem    1308: }
                   1309:
1.248     apb      1310: # sanitycheck --
                   1311: # Sanity check after parsing command line options, before rebuildmake.
                   1312: #
1.163     apb      1313: sanitycheck()
                   1314: {
1.260     apb      1315:        # Install as non-root is a bad idea.
                   1316:        #
                   1317:        if ${do_install} && [ "$id_u" -ne 0 ] ; then
                   1318:                if ${do_expertmode}; then
                   1319:                        warning "Will install as an unprivileged user."
                   1320:                else
                   1321:                        bomb "-E must be set for install as an unprivileged user."
                   1322:                fi
                   1323:        fi
                   1324:
1.163     apb      1325:        # If the PATH contains any non-absolute components (including,
1.170     apb      1326:        # but not limited to, "." or ""), then complain.  As an exception,
                   1327:        # allow "" or "." as the last component of the PATH.  This is fatal
1.163     apb      1328:        # if expert mode is not in effect.
                   1329:        #
1.170     apb      1330:        local path="${PATH}"
                   1331:        path="${path%:}"        # delete trailing ":"
                   1332:        path="${path%:.}"       # delete trailing ":."
                   1333:        case ":${path}:/" in
                   1334:        *:[!/]*)
1.163     apb      1335:                if ${do_expertmode}; then
                   1336:                        warning "PATH contains non-absolute components"
                   1337:                else
1.164     apb      1338:                        bomb "PATH environment variable must not" \
                   1339:                             "contain non-absolute components"
1.163     apb      1340:                fi
                   1341:                ;;
                   1342:        esac
                   1343: }
                   1344:
1.213     apb      1345: # print_tooldir_make --
                   1346: # Try to find and print a path to an existing
                   1347: # ${TOOLDIR}/bin/${toolprefix}make, for use by rebuildmake() before a
                   1348: # new version of ${toolprefix}make has been built.
1.168     apb      1349: #
                   1350: # * If TOOLDIR was set in the environment or on the command line, use
                   1351: #   that value.
                   1352: # * Otherwise try to guess what TOOLDIR would be if not overridden by
                   1353: #   /etc/mk.conf, and check whether the resulting directory contains
                   1354: #   a copy of ${toolprefix}make (this should work for everybody who
                   1355: #   doesn't override TOOLDIR via /etc/mk.conf);
                   1356: # * Failing that, search for ${toolprefix}make, nbmake, bmake, or make,
1.250     apb      1357: #   in the PATH (this might accidentally find a version of make that
                   1358: #   does not understand the syntax used by NetBSD make, and that will
                   1359: #   lead to failure in the next step);
1.168     apb      1360: # * If a copy of make was found above, try to use it with
1.213     apb      1361: #   nobomb_getmakevar to find the correct value for TOOLDIR, and believe the
                   1362: #   result only if it's a directory that already exists;
                   1363: # * If a value of TOOLDIR was found above, and if
                   1364: #   ${TOOLDIR}/bin/${toolprefix}make exists, print that value.
1.168     apb      1365: #
1.213     apb      1366: print_tooldir_make()
1.168     apb      1367: {
1.213     apb      1368:        local possible_TOP_OBJ
                   1369:        local possible_TOOLDIR
                   1370:        local possible_make
                   1371:        local tooldir_make
                   1372:
                   1373:        if [ -n "${TOOLDIR}" ]; then
                   1374:                echo "${TOOLDIR}/bin/${toolprefix}make"
                   1375:                return 0
                   1376:        fi
1.168     apb      1377:
1.198     apb      1378:        # Set host_ostype to something like "NetBSD-4.5.6-i386".  This
                   1379:        # is intended to match the HOST_OSTYPE variable in <bsd.own.mk>.
                   1380:        #
1.168     apb      1381:        local host_ostype="${uname_s}-$(
                   1382:                echo "${uname_r}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
1.194     lukem    1383:                )-$(
1.168     apb      1384:                echo "${uname_p}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
                   1385:                )"
                   1386:
1.198     apb      1387:        # Look in a few potential locations for
                   1388:        # ${possible_TOOLDIR}/bin/${toolprefix}make.
1.213     apb      1389:        # If we find it, then set possible_make.
1.198     apb      1390:        #
                   1391:        # In the usual case (without interference from environment
                   1392:        # variables or /etc/mk.conf), <bsd.own.mk> should set TOOLDIR to
1.212     apb      1393:        # "${_SRC_TOP_OBJ_}/tooldir.${host_ostype}".
                   1394:        #
                   1395:        # In practice it's difficult to figure out the correct value
                   1396:        # for _SRC_TOP_OBJ_.  In the easiest case, when the -M or -O
                   1397:        # options were passed to build.sh, then ${TOP_objdir} will be
                   1398:        # the correct value.  We also try a few other possibilities, but
                   1399:        # we do not replicate all the logic of <bsd.obj.mk>.
1.198     apb      1400:        #
1.212     apb      1401:        for possible_TOP_OBJ in \
                   1402:                "${TOP_objdir}" \
                   1403:                "${MAKEOBJDIRPREFIX:+${MAKEOBJDIRPREFIX}${TOP}}" \
                   1404:                "${TOP}" \
                   1405:                "${TOP}/obj" \
1.198     apb      1406:                "${TOP}/obj.${MACHINE}"
                   1407:        do
1.212     apb      1408:                [ -n "${possible_TOP_OBJ}" ] || continue
1.198     apb      1409:                possible_TOOLDIR="${possible_TOP_OBJ}/tooldir.${host_ostype}"
1.213     apb      1410:                possible_make="${possible_TOOLDIR}/bin/${toolprefix}make"
                   1411:                if [ -x "${possible_make}" ]; then
1.212     apb      1412:                        break
1.198     apb      1413:                else
1.213     apb      1414:                        unset possible_make
1.198     apb      1415:                fi
                   1416:        done
                   1417:
                   1418:        # If the above didn't work, search the PATH for a suitable
                   1419:        # ${toolprefix}make, nbmake, bmake, or make.
                   1420:        #
1.213     apb      1421:        : ${possible_make:=$(find_in_PATH ${toolprefix}make '')}
                   1422:        : ${possible_make:=$(find_in_PATH nbmake '')}
                   1423:        : ${possible_make:=$(find_in_PATH bmake '')}
                   1424:        : ${possible_make:=$(find_in_PATH make '')}
                   1425:
                   1426:        # At this point, we don't care whether possible_make is in the
                   1427:        # correct TOOLDIR or not; we simply want it to be usable by
                   1428:        # getmakevar to help us find the correct TOOLDIR.
                   1429:        #
                   1430:        # Use ${possible_make} with nobomb_getmakevar to try to find
                   1431:        # the value of TOOLDIR.  Believe the result only if it's
                   1432:        # a directory that already exists and contains bin/${toolprefix}make.
                   1433:        #
                   1434:        if [ -x "${possible_make}" ]; then
                   1435:                possible_TOOLDIR="$(
1.250     apb      1436:                        make="${possible_make}" \
                   1437:                        nobomb_getmakevar TOOLDIR 2>/dev/null
1.213     apb      1438:                        )"
                   1439:                if [ $? = 0 ] && [ -n "${possible_TOOLDIR}" ] \
                   1440:                    && [ -d "${possible_TOOLDIR}" ];
                   1441:                then
                   1442:                        tooldir_make="${possible_TOOLDIR}/bin/${toolprefix}make"
                   1443:                        if [ -x "${tooldir_make}" ]; then
                   1444:                                echo "${tooldir_make}"
                   1445:                                return 0
                   1446:                        fi
                   1447:                fi
1.168     apb      1448:        fi
1.213     apb      1449:        return 1
1.168     apb      1450: }
                   1451:
1.213     apb      1452: # rebuildmake --
                   1453: # Rebuild nbmake in a temporary directory if necessary.  Sets $make
                   1454: # to a path to the nbmake executable.  Sets done_rebuildmake=true
                   1455: # if nbmake was rebuilt.
                   1456: #
                   1457: # There is a cyclic dependency between building nbmake and choosing
                   1458: # TOOLDIR: TOOLDIR may be affected by settings in /etc/mk.conf, so we
                   1459: # would like to use getmakevar to get the value of TOOLDIR; but we can't
                   1460: # use getmakevar before we have an up to date version of nbmake; we
                   1461: # might already have an up to date version of nbmake in TOOLDIR, but we
                   1462: # don't yet know where TOOLDIR is.
                   1463: #
                   1464: # The default value of TOOLDIR also depends on the location of the top
                   1465: # level object directory, so $(getmakevar TOOLDIR) invoked before or
                   1466: # after making the top level object directory may produce different
                   1467: # results.
                   1468: #
                   1469: # Strictly speaking, we should do the following:
                   1470: #
                   1471: #    1. build a new version of nbmake in a temporary directory;
                   1472: #    2. use the temporary nbmake to create the top level obj directory;
                   1473: #    3. use $(getmakevar TOOLDIR) with the temporary nbmake to
1.265     oki      1474: #       get the correct value of TOOLDIR;
1.214     apb      1475: #    4. move the temporary nbmake to ${TOOLDIR}/bin/nbmake.
1.213     apb      1476: #
                   1477: # However, people don't like building nbmake unnecessarily if their
                   1478: # TOOLDIR has not changed since an earlier build.  We try to avoid
                   1479: # rebuilding a temporary version of nbmake by taking some shortcuts to
                   1480: # guess a value for TOOLDIR, looking for an existing version of nbmake
                   1481: # in that TOOLDIR, and checking whether that nbmake is newer than the
                   1482: # sources used to build it.
                   1483: #
1.84      lukem    1484: rebuildmake()
                   1485: {
1.213     apb      1486:        make="$(print_tooldir_make)"
                   1487:        if [ -n "${make}" ] && [ -x "${make}" ]; then
1.84      lukem    1488:                for f in usr.bin/make/*.[ch] usr.bin/make/lst.lib/*.[ch]; do
1.98      lukem    1489:                        if [ "${f}" -nt "${make}" ]; then
1.213     apb      1490:                                statusmsg "${make} outdated" \
                   1491:                                        "(older than ${f}), needs building."
1.84      lukem    1492:                                do_rebuildmake=true
                   1493:                                break
                   1494:                        fi
                   1495:                done
                   1496:        else
1.213     apb      1497:                statusmsg "No \$TOOLDIR/bin/${toolprefix}make, needs building."
1.84      lukem    1498:                do_rebuildmake=true
                   1499:        fi
                   1500:
                   1501:        # Build bootstrap ${toolprefix}make if needed.
1.98      lukem    1502:        if ${do_rebuildmake}; then
                   1503:                statusmsg "Bootstrapping ${toolprefix}make"
                   1504:                ${runcmd} cd "${tmpdir}"
                   1505:                ${runcmd} env CC="${HOST_CC-cc}" CPPFLAGS="${HOST_CPPFLAGS}" \
1.84      lukem    1506:                        CFLAGS="${HOST_CFLAGS--O}" LDFLAGS="${HOST_LDFLAGS}" \
1.153     apb      1507:                        ${HOST_SH} "${TOP}/tools/make/configure" ||
1.262     hubertf  1508:                    ( cp ${tmpdir}/config.log ${tmpdir}-config.log
                   1509:                      bomb "Configure of ${toolprefix}make failed, see ${tmpdir}-config.log for details" )
1.153     apb      1510:                ${runcmd} ${HOST_SH} buildmake.sh ||
1.98      lukem    1511:                    bomb "Build of ${toolprefix}make failed"
                   1512:                make="${tmpdir}/${toolprefix}make"
                   1513:                ${runcmd} cd "${TOP}"
                   1514:                ${runcmd} rm -f usr.bin/make/*.o usr.bin/make/lst.lib/*.o
1.211     apb      1515:                done_rebuildmake=true
1.84      lukem    1516:        fi
                   1517: }
                   1518:
1.248     apb      1519: # validatemakeparams --
                   1520: # Perform some late sanity checks, after rebuildmake,
                   1521: # but before createmakewrapper or any real work.
                   1522: #
1.257     apb      1523: # Creates the top-level obj directory, because that
                   1524: # is needed by some of the sanity checks.
                   1525: #
                   1526: # Prints status messages reporting the values of several variables.
1.248     apb      1527: #
1.84      lukem    1528: validatemakeparams()
                   1529: {
1.257     apb      1530:        # MAKECONF (which defaults to /etc/mk.conf in share/mk/bsd.own.mk)
                   1531:        # can affect many things, so mention it in an early status message.
                   1532:        #
                   1533:        MAKECONF=$(getmakevar MAKECONF)
                   1534:        if [ -e "${MAKECONF}" ]; then
                   1535:                statusmsg2 "MAKECONF file:" "${MAKECONF}"
                   1536:        else
                   1537:                statusmsg2 "MAKECONF file:" "${MAKECONF} (File not found)"
                   1538:        fi
                   1539:
1.275     apb      1540:        # Normalise MKOBJDIRS, MKUNPRIVED, and MKUPDATE.
                   1541:        # These may be set as build.sh options or in "mk.conf".
                   1542:        # Don't export them as they're only used for tests in build.sh.
                   1543:        #
                   1544:        MKOBJDIRS=$(getmakevar MKOBJDIRS)
                   1545:        MKUNPRIVED=$(getmakevar MKUNPRIVED)
                   1546:        MKUPDATE=$(getmakevar MKUPDATE)
                   1547:
                   1548:        # Non-root should always use either the -U or -E flag.
                   1549:        #
                   1550:        if ! ${do_expertmode} && \
                   1551:            [ "$id_u" -ne 0 ] && \
                   1552:            [ "${MKUNPRIVED}" = "no" ] ; then
                   1553:                bomb "-U or -E must be set for build as an unprivileged user."
                   1554:        fi
                   1555:
1.98      lukem    1556:        if [ "${runcmd}" = "echo" ]; then
1.84      lukem    1557:                TOOLCHAIN_MISSING=no
                   1558:                EXTERNAL_TOOLCHAIN=""
                   1559:        else
1.210     apb      1560:                TOOLCHAIN_MISSING=$(bomb_getmakevar TOOLCHAIN_MISSING)
                   1561:                EXTERNAL_TOOLCHAIN=$(bomb_getmakevar EXTERNAL_TOOLCHAIN)
1.84      lukem    1562:        fi
                   1563:        if [ "${TOOLCHAIN_MISSING}" = "yes" ] && \
1.86      lukem    1564:           [ -z "${EXTERNAL_TOOLCHAIN}" ]; then
1.98      lukem    1565:                ${runcmd} echo "ERROR: build.sh (in-tree cross-toolchain) is not yet available for"
                   1566:                ${runcmd} echo "        MACHINE:      ${MACHINE}"
                   1567:                ${runcmd} echo "        MACHINE_ARCH: ${MACHINE_ARCH}"
                   1568:                ${runcmd} echo ""
                   1569:                ${runcmd} echo "All builds for this platform should be done via a traditional make"
                   1570:                ${runcmd} echo "If you wish to use an external cross-toolchain, set"
                   1571:                ${runcmd} echo "        EXTERNAL_TOOLCHAIN=<path to toolchain root>"
                   1572:                ${runcmd} echo "in either the environment or mk.conf and rerun"
                   1573:                ${runcmd} echo "        ${progname} $*"
1.84      lukem    1574:                exit 1
                   1575:        fi
                   1576:
1.106     lukem    1577:        if [ "${MKOBJDIRS}" != "no" ]; then
1.212     apb      1578:                # Create the top-level object directory.
1.106     lukem    1579:                #
1.212     apb      1580:                # "make obj NOSUBDIR=" can handle most cases, but it
                   1581:                # can't handle the case where MAKEOBJDIRPREFIX is set
                   1582:                # while the corresponding directory does not exist
                   1583:                # (rules in <bsd.obj.mk> would abort the build).  We
                   1584:                # therefore have to handle the MAKEOBJDIRPREFIX case
                   1585:                # without invoking "make obj".  The MAKEOBJDIR case
                   1586:                # could be handled either way, but we choose to handle
                   1587:                # it similarly to MAKEOBJDIRPREFIX.
1.191     apb      1588:                #
1.212     apb      1589:                if [ -n "${TOP_obj}" ]; then
                   1590:                        # It must have been set by the "-M" or "-O"
                   1591:                        # command line options, so there's no need to
                   1592:                        # use getmakevar
                   1593:                        :
                   1594:                elif [ -n "$MAKEOBJDIRPREFIX" ]; then
                   1595:                        TOP_obj="$(getmakevar MAKEOBJDIRPREFIX)${TOP}"
                   1596:                elif [ -n "$MAKEOBJDIR" ]; then
                   1597:                        TOP_obj="$(getmakevar MAKEOBJDIR)"
                   1598:                fi
                   1599:                if [ -n "$TOP_obj" ]; then
                   1600:                        ${runcmd} mkdir -p "${TOP_obj}" ||
                   1601:                            bomb "Can't create top level object directory" \
                   1602:                                        "${TOP_obj}"
                   1603:                else
                   1604:                        ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
                   1605:                            bomb "Can't create top level object directory" \
                   1606:                                        "using make obj"
1.106     lukem    1607:                fi
                   1608:
1.212     apb      1609:                # make obj in tools to ensure that the objdir for "tools"
                   1610:                # is available.
1.106     lukem    1611:                #
1.98      lukem    1612:                ${runcmd} cd tools
                   1613:                ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
                   1614:                    bomb "Failed to make obj in tools"
                   1615:                ${runcmd} cd "${TOP}"
1.84      lukem    1616:        fi
1.80      lukem    1617:
1.215     apb      1618:        # Find TOOLDIR, DESTDIR, and RELEASEDIR, according to getmakevar,
                   1619:        # and bomb if they have changed from the values we had from the
                   1620:        # command line or environment.
                   1621:        #
1.212     apb      1622:        # This must be done after creating the top-level object directory.
1.84      lukem    1623:        #
1.215     apb      1624:        for var in TOOLDIR DESTDIR RELEASEDIR
                   1625:        do
                   1626:                eval oldval=\"\$${var}\"
                   1627:                newval="$(getmakevar $var)"
                   1628:                if ! $do_expertmode; then
1.216     enami    1629:                        : ${_SRC_TOP_OBJ_:=$(getmakevar _SRC_TOP_OBJ_)}
1.215     apb      1630:                        case "$var" in
                   1631:                        DESTDIR)
                   1632:                                : ${newval:=${_SRC_TOP_OBJ_}/destdir.${MACHINE}}
1.217     apb      1633:                                makeenv="${makeenv} DESTDIR"
1.215     apb      1634:                                ;;
                   1635:                        RELEASEDIR)
                   1636:                                : ${newval:=${_SRC_TOP_OBJ_}/releasedir}
1.217     apb      1637:                                makeenv="${makeenv} RELEASEDIR"
1.215     apb      1638:                                ;;
                   1639:                        esac
                   1640:                fi
                   1641:                if [ -n "$oldval" ] && [ "$oldval" != "$newval" ]; then
                   1642:                        bomb "Value of ${var} has changed" \
                   1643:                                "(was \"${oldval}\", now \"${newval}\")"
                   1644:                fi
                   1645:                eval ${var}=\"\${newval}\"
                   1646:                eval export ${var}
1.238     pgoyette 1647:                statusmsg2 "${var} path:" "${newval}"
1.215     apb      1648:        done
                   1649:
                   1650:        # RELEASEMACHINEDIR is just a subdir name, e.g. "i386".
1.186     lukem    1651:        RELEASEMACHINEDIR=$(getmakevar RELEASEMACHINEDIR)
1.84      lukem    1652:
                   1653:        # Check validity of TOOLDIR and DESTDIR.
                   1654:        #
1.98      lukem    1655:        if [ -z "${TOOLDIR}" ] || [ "${TOOLDIR}" = "/" ]; then
                   1656:                bomb "TOOLDIR '${TOOLDIR}' invalid"
1.84      lukem    1657:        fi
1.98      lukem    1658:        removedirs="${TOOLDIR}"
1.15      tv       1659:
1.98      lukem    1660:        if [ -z "${DESTDIR}" ] || [ "${DESTDIR}" = "/" ]; then
1.260     apb      1661:                if ${do_distribution} || ${do_release} || \
                   1662:                   [ "${uname_s}" != "NetBSD" ] || \
                   1663:                   [ "${uname_m}" != "${MACHINE}" ]; then
                   1664:                        bomb "DESTDIR must != / for cross builds, or ${progname} 'distribution' or 'release'."
                   1665:                fi
                   1666:                if ! ${do_expertmode}; then
                   1667:                        bomb "DESTDIR must != / for non -E (expert) builds"
1.1       tv       1668:                fi
1.260     apb      1669:                statusmsg "WARNING: Building to /, in expert mode."
                   1670:                statusmsg "         This may cause your system to break!  Reasons include:"
                   1671:                statusmsg "            - your kernel is not up to date"
                   1672:                statusmsg "            - the libraries or toolchain have changed"
                   1673:                statusmsg "         YOU HAVE BEEN WARNED!"
1.84      lukem    1674:        else
1.98      lukem    1675:                removedirs="${removedirs} ${DESTDIR}"
1.84      lukem    1676:        fi
1.105     lukem    1677:        if ${do_releasekernel} && [ -z "${RELEASEDIR}" ]; then
                   1678:                bomb "Must set RELEASEDIR with \`releasekernel=...'"
                   1679:        fi
1.185     apb      1680:
                   1681:        # If a previous build.sh run used -U (and therefore created a
                   1682:        # METALOG file), then most subsequent build.sh runs must also
                   1683:        # use -U.  If DESTDIR is about to be removed, then don't perform
                   1684:        # this check.
                   1685:        #
                   1686:        case "${do_removedirs} ${removedirs} " in
                   1687:        true*" ${DESTDIR} "*)
                   1688:                # DESTDIR is about to be removed
                   1689:                ;;
                   1690:        *)
1.260     apb      1691:                if [ -e "${DESTDIR}/METALOG" ] && \
1.185     apb      1692:                    [ "${MKUNPRIVED}" = "no" ] ; then
                   1693:                        if $do_expertmode; then
                   1694:                                warning "A previous build.sh run specified -U."
                   1695:                        else
                   1696:                                bomb "A previous build.sh run specified -U; you must specify it again now."
                   1697:                        fi
                   1698:                fi
                   1699:                ;;
                   1700:        esac
1.254     tsutsui  1701:
                   1702:        # live-image and install-image targets require binary sets
                   1703:        # (actually DESTDIR/etc/mtree/set.* files) built with MKUNPRIVED.
                   1704:        # If release operation is specified with live-image or install-image,
                   1705:        # the release op should be performed with -U for later image ops.
                   1706:        #
                   1707:        if ${do_release} && ( ${do_live_image} || ${do_install_image} ) && \
                   1708:            [ "${MKUNPRIVED}" = "no" ] ; then
                   1709:                bomb "-U must be specified on building release to create images later."
                   1710:        fi
1.84      lukem    1711: }
1.30      jmc      1712:
1.15      tv       1713:
1.84      lukem    1714: createmakewrapper()
                   1715: {
                   1716:        # Remove the target directories.
                   1717:        #
1.98      lukem    1718:        if ${do_removedirs}; then
                   1719:                for f in ${removedirs}; do
                   1720:                        statusmsg "Removing ${f}"
                   1721:                        ${runcmd} rm -r -f "${f}"
1.84      lukem    1722:                done
                   1723:        fi
1.15      tv       1724:
1.84      lukem    1725:        # Recreate $TOOLDIR.
                   1726:        #
1.98      lukem    1727:        ${runcmd} mkdir -p "${TOOLDIR}/bin" ||
                   1728:            bomb "mkdir of '${TOOLDIR}/bin' failed"
1.84      lukem    1729:
1.214     apb      1730:        # If we did not previously rebuild ${toolprefix}make, then
                   1731:        # check whether $make is still valid and the same as the output
                   1732:        # from print_tooldir_make.  If not, then rebuild make now.  A
                   1733:        # possible reason for this being necessary is that the actual
                   1734:        # value of TOOLDIR might be different from the value guessed
                   1735:        # before the top level obj dir was created.
                   1736:        #
                   1737:        if ! ${done_rebuildmake} && \
                   1738:            ( [ ! -x "$make" ] || [ "$make" != "$(print_tooldir_make)" ] )
                   1739:        then
                   1740:                rebuildmake
                   1741:        fi
                   1742:
1.84      lukem    1743:        # Install ${toolprefix}make if it was built.
                   1744:        #
1.211     apb      1745:        if ${done_rebuildmake}; then
1.98      lukem    1746:                ${runcmd} rm -f "${TOOLDIR}/bin/${toolprefix}make"
                   1747:                ${runcmd} cp "${make}" "${TOOLDIR}/bin/${toolprefix}make" ||
                   1748:                    bomb "Failed to install \$TOOLDIR/bin/${toolprefix}make"
                   1749:                make="${TOOLDIR}/bin/${toolprefix}make"
                   1750:                statusmsg "Created ${make}"
1.84      lukem    1751:        fi
1.15      tv       1752:
1.84      lukem    1753:        # Build a ${toolprefix}make wrapper script, usable by hand as
                   1754:        # well as by build.sh.
                   1755:        #
1.98      lukem    1756:        if [ -z "${makewrapper}" ]; then
1.102     lukem    1757:                makewrapper="${TOOLDIR}/bin/${toolprefix}make-${makewrappermachine:-${MACHINE}}"
1.98      lukem    1758:                [ -z "${BUILDID}" ] || makewrapper="${makewrapper}-${BUILDID}"
1.52      thorpej  1759:        fi
1.4       tv       1760:
1.98      lukem    1761:        ${runcmd} rm -f "${makewrapper}"
                   1762:        if [ "${runcmd}" = "echo" ]; then
                   1763:                echo 'cat <<EOF >'${makewrapper}
1.84      lukem    1764:                makewrapout=
                   1765:        else
1.98      lukem    1766:                makewrapout=">>\${makewrapper}"
1.84      lukem    1767:        fi
1.18      tv       1768:
1.139     isaki    1769:        case "${KSH_VERSION:-${SH_VERSION}}" in
1.149     jnemeth  1770:        *PD\ KSH*|*MIRBSD\ KSH*)
1.135     isaki    1771:                set +o braceexpand
                   1772:                ;;
                   1773:        esac
                   1774:
1.98      lukem    1775:        eval cat <<EOF ${makewrapout}
1.153     apb      1776: #! ${HOST_SH}
1.4       tv       1777: # Set proper variables to allow easy "make" building of a NetBSD subtree.
1.287   ! apb      1778: # Generated from:  \$NetBSD: build.sh,v 1.286 2014/08/03 01:03:41 riz Exp $
1.130     jmc      1779: # with these arguments: ${_args}
1.4       tv       1780: #
1.177     uebayasi 1781:
1.18      tv       1782: EOF
1.177     uebayasi 1783:        {
1.285     apb      1784:                sorted_vars="$(for var in ${makeenv}; do echo "${var}" ; done \
                   1785:                        | sort -u )"
                   1786:                for var in ${sorted_vars}; do
                   1787:                        eval val=\"\${${var}}\"
                   1788:                        eval is_set=\"\${${var}+set}\"
                   1789:                        if [ -z "${is_set}" ]; then
                   1790:                                echo "unset ${var}"
1.177     uebayasi 1791:                        else
1.285     apb      1792:                                qval="$(shell_quote "${val}")"
                   1793:                                echo "${var}=${qval}; export ${var}"
1.177     uebayasi 1794:                        fi
                   1795:                done
1.18      tv       1796:
1.285     apb      1797:                cat <<EOF
1.18      tv       1798:
1.98      lukem    1799: exec "\${TOOLDIR}/bin/${toolprefix}make" \${1+"\$@"}
1.4       tv       1800: EOF
1.285     apb      1801:        } | eval cat "${makewrapout}"
1.98      lukem    1802:        [ "${runcmd}" = "echo" ] && echo EOF
                   1803:        ${runcmd} chmod +x "${makewrapper}"
1.238     pgoyette 1804:        statusmsg2 "Updated makewrapper:" "${makewrapper}"
1.84      lukem    1805: }
                   1806:
1.203     lukem    1807: make_in_dir()
                   1808: {
                   1809:        dir="$1"
                   1810:        op="$2"
                   1811:        ${runcmd} cd "${dir}" ||
                   1812:            bomb "Failed to cd to \"${dir}\""
                   1813:        ${runcmd} "${makewrapper}" ${parallel} ${op} ||
                   1814:            bomb "Failed to make ${op} in \"${dir}\""
                   1815:        ${runcmd} cd "${TOP}" ||
                   1816:            bomb "Failed to cd back to \"${TOP}\""
                   1817: }
                   1818:
1.84      lukem    1819: buildtools()
                   1820: {
1.98      lukem    1821:        if [ "${MKOBJDIRS}" != "no" ]; then
                   1822:                ${runcmd} "${makewrapper}" ${parallel} obj-tools ||
                   1823:                    bomb "Failed to make obj-tools"
1.84      lukem    1824:        fi
1.124     lukem    1825:        if [ "${MKUPDATE}" = "no" ]; then
1.203     lukem    1826:                make_in_dir tools cleandir
1.84      lukem    1827:        fi
1.259     joerg    1828:        make_in_dir tools build_install
1.98      lukem    1829:        statusmsg "Tools built to ${TOOLDIR}"
1.84      lukem    1830: }
1.4       tv       1831:
1.105     lukem    1832: getkernelconf()
1.84      lukem    1833: {
1.105     lukem    1834:        kernelconf="$1"
1.114     lukem    1835:        if [ "${MKOBJDIRS}" != "no" ]; then
1.84      lukem    1836:                # The correct value of KERNOBJDIR might
                   1837:                # depend on a prior "make obj" in
                   1838:                # ${KERNSRCDIR}/${KERNARCHDIR}/compile.
                   1839:                #
1.98      lukem    1840:                KERNSRCDIR="$(getmakevar KERNSRCDIR)"
                   1841:                KERNARCHDIR="$(getmakevar KERNARCHDIR)"
1.203     lukem    1842:                make_in_dir "${KERNSRCDIR}/${KERNARCHDIR}/compile" obj
1.84      lukem    1843:        fi
1.98      lukem    1844:        KERNCONFDIR="$(getmakevar KERNCONFDIR)"
                   1845:        KERNOBJDIR="$(getmakevar KERNOBJDIR)"
1.105     lukem    1846:        case "${kernelconf}" in
1.84      lukem    1847:        */*)
1.105     lukem    1848:                kernelconfpath="${kernelconf}"
                   1849:                kernelconfname="${kernelconf##*/}"
1.84      lukem    1850:                ;;
                   1851:        *)
1.105     lukem    1852:                kernelconfpath="${KERNCONFDIR}/${kernelconf}"
                   1853:                kernelconfname="${kernelconf}"
1.84      lukem    1854:                ;;
                   1855:        esac
1.105     lukem    1856:        kernelbuildpath="${KERNOBJDIR}/${kernelconfname}"
                   1857: }
                   1858:
1.264     christos 1859: diskimage()
                   1860: {
                   1861:        ARG="$(echo $1 | tr '[:lower:]' '[:upper:]')"
                   1862:        [ -f "${DESTDIR}/etc/mtree/set.base" ] ||
                   1863:            bomb "The release binaries must be built first"
                   1864:        kerneldir="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel"
                   1865:        kernel="${kerneldir}/netbsd-${ARG}.gz"
                   1866:        [ -f "${kernel}" ] ||
                   1867:            bomb "The kernel ${kernel} must be built first"
                   1868:        make_in_dir "${NETBSDSRCDIR}/etc" "smp_${1}"
                   1869: }
                   1870:
1.105     lukem    1871: buildkernel()
                   1872: {
                   1873:        if ! ${do_tools} && ! ${buildkernelwarned:-false}; then
                   1874:                # Building tools every time we build a kernel is clearly
                   1875:                # unnecessary.  We could try to figure out whether rebuilding
                   1876:                # the tools is necessary this time, but it doesn't seem worth
                   1877:                # the trouble.  Instead, we say it's the user's responsibility
                   1878:                # to rebuild the tools if necessary.
                   1879:                #
                   1880:                statusmsg "Building kernel without building new tools"
                   1881:                buildkernelwarned=true
                   1882:        fi
                   1883:        getkernelconf $1
1.238     pgoyette 1884:        statusmsg2 "Building kernel:" "${kernelconf}"
                   1885:        statusmsg2 "Build directory:" "${kernelbuildpath}"
1.105     lukem    1886:        ${runcmd} mkdir -p "${kernelbuildpath}" ||
                   1887:            bomb "Cannot mkdir: ${kernelbuildpath}"
1.124     lukem    1888:        if [ "${MKUPDATE}" = "no" ]; then
1.203     lukem    1889:                make_in_dir "${kernelbuildpath}" cleandir
1.16      thorpej  1890:        fi
1.157     rillig   1891:        [ -x "${TOOLDIR}/bin/${toolprefix}config" ] \
                   1892:        || bomb "${TOOLDIR}/bin/${toolprefix}config does not exist. You need to \"$0 tools\" first."
1.105     lukem    1893:        ${runcmd} "${TOOLDIR}/bin/${toolprefix}config" -b "${kernelbuildpath}" \
1.281     martin   1894:                ${ksymopts} -s "${TOP}/sys" "${kernelconfpath}" ||
1.105     lukem    1895:            bomb "${toolprefix}config failed for ${kernelconf}"
1.203     lukem    1896:        make_in_dir "${kernelbuildpath}" depend
                   1897:        make_in_dir "${kernelbuildpath}" all
1.91      lukem    1898:
1.98      lukem    1899:        if [ "${runcmd}" != "echo" ]; then
1.105     lukem    1900:                statusmsg "Kernels built from ${kernelconf}:"
                   1901:                kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
1.91      lukem    1902:                for kern in ${kernlist:-netbsd}; do
1.105     lukem    1903:                        [ -f "${kernelbuildpath}/${kern}" ] && \
                   1904:                            echo "  ${kernelbuildpath}/${kern}"
1.98      lukem    1905:                done | tee -a "${results}"
1.91      lukem    1906:        fi
1.84      lukem    1907: }
                   1908:
1.105     lukem    1909: releasekernel()
                   1910: {
                   1911:        getkernelconf $1
1.186     lukem    1912:        kernelreldir="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel"
1.105     lukem    1913:        ${runcmd} mkdir -p "${kernelreldir}"
                   1914:        kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
                   1915:        for kern in ${kernlist:-netbsd}; do
                   1916:                builtkern="${kernelbuildpath}/${kern}"
                   1917:                [ -f "${builtkern}" ] || continue
                   1918:                releasekern="${kernelreldir}/${kern}-${kernelconfname}.gz"
1.238     pgoyette 1919:                statusmsg2 "Kernel copy:" "${releasekern}"
1.196     lukem    1920:                if [ "${runcmd}" = "echo" ]; then
                   1921:                        echo "gzip -c -9 < ${builtkern} > ${releasekern}"
                   1922:                else
                   1923:                        gzip -c -9 < "${builtkern}" > "${releasekern}"
                   1924:                fi
1.105     lukem    1925:        done
                   1926: }
                   1927:
1.207     jnemeth  1928: buildmodules()
                   1929: {
1.234     morr     1930:        setmakeenv MKBINUTILS no
1.207     jnemeth  1931:        if ! ${do_tools} && ! ${buildmoduleswarned:-false}; then
                   1932:                # Building tools every time we build modules is clearly
                   1933:                # unnecessary as well as a kernel.
                   1934:                #
                   1935:                statusmsg "Building modules without building new tools"
                   1936:                buildmoduleswarned=true
                   1937:        fi
                   1938:
                   1939:        statusmsg "Building kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}"
                   1940:        if [ "${MKOBJDIRS}" != "no" ]; then
1.256     tsutsui  1941:                make_in_dir sys/modules obj
1.207     jnemeth  1942:        fi
                   1943:        if [ "${MKUPDATE}" = "no" ]; then
                   1944:                make_in_dir sys/modules cleandir
                   1945:        fi
1.256     tsutsui  1946:        make_in_dir sys/modules dependall
                   1947:        make_in_dir sys/modules install
1.207     jnemeth  1948:
1.236     pgoyette 1949:        statusmsg "Successful build of kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}"
1.207     jnemeth  1950: }
                   1951:
1.245     jmcneill 1952: installmodules()
                   1953: {
                   1954:        dir="$1"
                   1955:        ${runcmd} "${makewrapper}" INSTALLMODULESDIR="${dir}" installmodules ||
                   1956:            bomb "Failed to make installmodules to ${dir}"
                   1957:        statusmsg "Successful installmodules to ${dir}"
                   1958: }
                   1959:
1.84      lukem    1960: installworld()
                   1961: {
                   1962:        dir="$1"
1.98      lukem    1963:        ${runcmd} "${makewrapper}" INSTALLWORLDDIR="${dir}" installworld ||
                   1964:            bomb "Failed to make installworld to ${dir}"
                   1965:        statusmsg "Successful installworld to ${dir}"
1.84      lukem    1966: }
                   1967:
1.219     pooka    1968: # Run rump build&link tests.
                   1969: #
                   1970: # To make this feasible for running without having to install includes and
                   1971: # libraries into destdir (i.e. quick), we only run ld.  This is possible
                   1972: # since the rump kernel is a closed namespace apart from calls to rumpuser.
                   1973: # Therefore, if ld complains only about rumpuser symbols, rump kernel
                   1974: # linking was successful.
1.246     wiz      1975: #
1.219     pooka    1976: # We test that rump links with a number of component configurations.
                   1977: # These attempt to mimic what is encountered in the full build.
                   1978: # See list below.  The list should probably be either autogenerated
1.246     wiz      1979: # or managed elsewhere; keep it here until a better idea arises.
1.219     pooka    1980: #
                   1981: # Above all, note that THIS IS NOT A SUBSTITUTE FOR A FULL BUILD.
                   1982: #
                   1983:
                   1984: RUMP_LIBSETS='
                   1985:        -lrump,
                   1986:        -lrumpvfs -lrump,
1.252     jym      1987:        -lrumpvfs -lrumpdev -lrump,
1.235     pooka    1988:        -lrumpnet -lrump,
1.237     pooka    1989:        -lrumpkern_tty -lrumpvfs -lrump,
1.219     pooka    1990:        -lrumpfs_tmpfs -lrumpvfs -lrump,
1.230     pooka    1991:        -lrumpfs_ffs -lrumpfs_msdos -lrumpvfs -lrumpdev_disk -lrumpdev -lrump,
1.219     pooka    1992:        -lrumpnet_virtif -lrumpnet_netinet -lrumpnet_net -lrumpnet -lrump,
                   1993:        -lrumpnet_sockin -lrumpfs_smbfs -lrumpdev_netsmb
1.242     pooka    1994:            -lrumpkern_crypto -lrumpdev -lrumpnet -lrumpvfs -lrump,
1.220     pooka    1995:        -lrumpnet_sockin -lrumpfs_nfs -lrumpnet -lrumpvfs -lrump,
                   1996:        -lrumpdev_cgd -lrumpdev_raidframe -lrumpdev_disk -lrumpdev_rnd
1.242     pooka    1997:            -lrumpdev_dm -lrumpdev -lrumpvfs -lrumpkern_crypto -lrump'
1.219     pooka    1998: dorump()
                   1999: {
                   2000:        local doclean=""
                   2001:        local doobjs=""
                   2002:
                   2003:        # we cannot link libs without building csu, and that leads to lossage
                   2004:        [ "${1}" != "rumptest" ] && bomb 'build.sh rump not yet functional. ' \
                   2005:            'did you mean "rumptest"?'
                   2006:
1.273     pooka    2007:        export RUMPKERN_ONLY=1
1.227     pooka    2008:        # create obj and distrib dirs
1.228     pooka    2009:        if [ "${MKOBJDIRS}" != "no" ]; then
                   2010:                make_in_dir "${NETBSDSRCDIR}/etc/mtree" obj
                   2011:                make_in_dir "${NETBSDSRCDIR}/sys/rump" obj
                   2012:        fi
1.227     pooka    2013:        ${runcmd} "${makewrapper}" ${parallel} do-distrib-dirs \
                   2014:            || bomb 'could not create distrib-dirs'
                   2015:
1.219     pooka    2016:        [ "${MKUPDATE}" = "no" ] && doclean="cleandir"
                   2017:        targlist="${doclean} ${doobjs} dependall install"
                   2018:        # optimize: for test we build only static libs (3x test speedup)
                   2019:        if [ "${1}" = "rumptest" ] ; then
                   2020:                setmakeenv NOPIC 1
                   2021:                setmakeenv NOPROFILE 1
                   2022:        fi
                   2023:        for cmd in ${targlist} ; do
                   2024:                make_in_dir "${NETBSDSRCDIR}/sys/rump" ${cmd}
                   2025:        done
                   2026:
                   2027:        # if we just wanted to build & install rump, we're done
                   2028:        [ "${1}" != "rumptest" ] && return
                   2029:
1.221     pooka    2030:        ${runcmd} cd "${NETBSDSRCDIR}/sys/rump/librump/rumpkern" \
                   2031:            || bomb "cd to rumpkern failed"
                   2032:        md_quirks=`${runcmd} "${makewrapper}" -V '${_SYMQUIRK}'`
                   2033:        # one little, two little, three little backslashes ...
1.231     hans     2034:        md_quirks="$(echo ${md_quirks} | sed 's,\\,\\\\,g'";s/'//g" )"
1.221     pooka    2035:        ${runcmd} cd "${TOP}" || bomb "cd to ${TOP} failed"
1.219     pooka    2036:        tool_ld=`${runcmd} "${makewrapper}" -V '${LD}'`
1.221     pooka    2037:
1.219     pooka    2038:        local oIFS="${IFS}"
                   2039:        IFS=","
                   2040:        for set in ${RUMP_LIBSETS} ; do
                   2041:                IFS="${oIFS}"
                   2042:                ${runcmd} ${tool_ld} -nostdlib -L${DESTDIR}/usr/lib     \
1.241     pooka    2043:                    -static --whole-archive ${set} 2>&1 -o /tmp/rumptest.$$ | \
1.221     pooka    2044:                      awk -v quirks="${md_quirks}" '
1.219     pooka    2045:                        /undefined reference/ &&
                   2046:                            !/more undefined references.*follow/{
1.221     pooka    2047:                                if (match($NF,
1.266     pooka    2048:                                    "`(rumpuser_|rumpcomp_|__" quirks ")") == 0)
1.219     pooka    2049:                                        fails[NR] = $0
1.221     pooka    2050:                        }
1.230     pooka    2051:                        /cannot find -l/{fails[NR] = $0}
1.241     pooka    2052:                        /cannot open output file/{fails[NR] = $0}
1.219     pooka    2053:                        END{
                   2054:                                for (x in fails)
                   2055:                                        print fails[x]
                   2056:                                exit x!=0
                   2057:                        }'
                   2058:                [ $? -ne 0 ] && bomb "Testlink of rump failed: ${set}"
                   2059:        done
                   2060:        statusmsg "Rump build&link tests successful"
                   2061: }
1.84      lukem    2062:
                   2063: main()
                   2064: {
                   2065:        initdefaults
1.130     jmc      2066:        _args=$@
1.84      lukem    2067:        parseoptions "$@"
1.93      lukem    2068:
1.163     apb      2069:        sanitycheck
                   2070:
1.93      lukem    2071:        build_start=$(date)
1.240     pgoyette 2072:        statusmsg2 "${progname} command:" "$0 $*"
1.238     pgoyette 2073:        statusmsg2 "${progname} started:" "${build_start}"
                   2074:        statusmsg2 "NetBSD version:"   "${DISTRIBVER}"
                   2075:        statusmsg2 "MACHINE:"          "${MACHINE}"
                   2076:        statusmsg2 "MACHINE_ARCH:"     "${MACHINE_ARCH}"
                   2077:        statusmsg2 "Build platform:"   "${uname_s} ${uname_r} ${uname_m}"
                   2078:        statusmsg2 "HOST_SH:"          "${HOST_SH}"
1.282     apb      2079:        if [ -n "${BUILDID}" ]; then
                   2080:                statusmsg2 "BUILDID:"  "${BUILDID}"
                   2081:        fi
1.287   ! apb      2082:        if [ -n "${BUILDINFO}" ]; then
        !          2083:                printf "%b\n" "${BUILDINFO}" | \
        !          2084:                while read -r line ; do
        !          2085:                        [ -s "${line}" ] && continue
        !          2086:                        statusmsg2 "BUILDINFO:"  "${line}"
        !          2087:                done
        !          2088:        fi
1.153     apb      2089:
1.84      lukem    2090:        rebuildmake
                   2091:        validatemakeparams
                   2092:        createmakewrapper
                   2093:
                   2094:        # Perform the operations.
                   2095:        #
1.98      lukem    2096:        for op in ${operations}; do
                   2097:                case "${op}" in
1.86      lukem    2098:
                   2099:                makewrapper)
                   2100:                        # no-op
                   2101:                        ;;
1.84      lukem    2102:
                   2103:                tools)
                   2104:                        buildtools
                   2105:                        ;;
                   2106:
1.125     lukem    2107:                sets)
                   2108:                        statusmsg "Building sets from pre-populated ${DESTDIR}"
                   2109:                        ${runcmd} "${makewrapper}" ${parallel} ${op} ||
                   2110:                            bomb "Failed to make ${op}"
1.186     lukem    2111:                        setdir=${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets
                   2112:                        statusmsg "Built sets to ${setdir}"
1.125     lukem    2113:                        ;;
1.142     apb      2114:
1.195     lukem    2115:                cleandir|obj|build|distribution|release|sourcesets|syspkgs|params)
1.98      lukem    2116:                        ${runcmd} "${makewrapper}" ${parallel} ${op} ||
                   2117:                            bomb "Failed to make ${op}"
                   2118:                        statusmsg "Successful make ${op}"
1.84      lukem    2119:                        ;;
                   2120:
1.173     jnemeth  2121:                iso-image|iso-image-source)
                   2122:                        ${runcmd} "${makewrapper}" ${parallel} \
1.209     apb      2123:                            CDEXTRA="$CDEXTRA" ${op} ||
1.173     jnemeth  2124:                            bomb "Failed to make ${op}"
                   2125:                        statusmsg "Successful make ${op}"
                   2126:                        ;;
                   2127:
1.254     tsutsui  2128:                live-image|install-image)
                   2129:                        # install-image and live-image require mtree spec files
                   2130:                        # built with UNPRIVED.  Assume UNPRIVED build has been
                   2131:                        # performed if METALOG file is created in DESTDIR.
                   2132:                        if [ ! -e "${DESTDIR}/METALOG" ] ; then
                   2133:                                bomb "The release binaries must have been built with -U to create images."
                   2134:                        fi
1.253     tsutsui  2135:                        ${runcmd} "${makewrapper}" ${parallel} ${op} ||
                   2136:                            bomb "Failed to make ${op}"
                   2137:                        statusmsg "Successful make ${op}"
                   2138:                        ;;
1.84      lukem    2139:                kernel=*)
                   2140:                        arg=${op#*=}
                   2141:                        buildkernel "${arg}"
1.105     lukem    2142:                        ;;
1.281     martin   2143:                kernel.gdb=*)
                   2144:                        arg=${op#*=}
                   2145:                        ksymopts="-D DEBUG=-g"
                   2146:                        buildkernel "${arg}"
                   2147:                        ;;
1.105     lukem    2148:                releasekernel=*)
                   2149:                        arg=${op#*=}
                   2150:                        releasekernel "${arg}"
1.84      lukem    2151:                        ;;
                   2152:
1.264     christos 2153:                disk-image=*)
                   2154:                        arg=${op#*=}
                   2155:                        diskimage "${arg}"
                   2156:                        ;;
                   2157:
1.207     jnemeth  2158:                modules)
                   2159:                        buildmodules
                   2160:                        ;;
                   2161:
1.245     jmcneill 2162:                installmodules=*)
                   2163:                        arg=${op#*=}
                   2164:                        if [ "${arg}" = "/" ] && \
                   2165:                            (   [ "${uname_s}" != "NetBSD" ] || \
                   2166:                                [ "${uname_m}" != "${MACHINE}" ] ); then
                   2167:                                bomb "'${op}' must != / for cross builds."
                   2168:                        fi
                   2169:                        installmodules "${arg}"
                   2170:                        ;;
                   2171:
1.84      lukem    2172:                install=*)
                   2173:                        arg=${op#*=}
1.85      lukem    2174:                        if [ "${arg}" = "/" ] && \
                   2175:                            (   [ "${uname_s}" != "NetBSD" ] || \
1.98      lukem    2176:                                [ "${uname_m}" != "${MACHINE}" ] ); then
1.85      lukem    2177:                                bomb "'${op}' must != / for cross builds."
                   2178:                        fi
1.84      lukem    2179:                        installworld "${arg}"
1.70      lukem    2180:                        ;;
1.84      lukem    2181:
1.219     pooka    2182:                rump|rumptest)
                   2183:                        dorump "${op}"
                   2184:                        ;;
                   2185:
1.70      lukem    2186:                *)
1.84      lukem    2187:                        bomb "Unknown operation \`${op}'"
1.70      lukem    2188:                        ;;
1.84      lukem    2189:
1.70      lukem    2190:                esac
1.84      lukem    2191:        done
1.93      lukem    2192:
1.238     pgoyette 2193:        statusmsg2 "${progname} ended:" "$(date)"
1.98      lukem    2194:        if [ -s "${results}" ]; then
                   2195:                echo "===> Summary of results:"
                   2196:                sed -e 's/^===>//;s/^/  /' "${results}"
                   2197:                echo "===> ."
                   2198:        fi
1.84      lukem    2199: }
                   2200:
                   2201: main "$@"

CVSweb <webmaster@jp.NetBSD.org>