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

Annotation of src/build.sh, Revision 1.277

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

CVSweb <webmaster@jp.NetBSD.org>