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

Annotation of src/build.sh, Revision 1.214

1.67      thorpej     1: #! /usr/bin/env sh
1.214   ! apb         2: #      $NetBSD: build.sh,v 1.213 2009/09/27 22:02:41 apb Exp $
1.84      lukem       3: #
1.203     lukem       4: # Copyright (c) 2001-2009 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: #
                     32: # Top level build wrapper, for a system containing no tools.
                     33: #
1.153     apb        34: # This script should run on any POSIX-compliant shell.  If the
                     35: # first "sh" found in the PATH is a POSIX-compliant shell, then
                     36: # you should not need to take any special action.  Otherwise, you
                     37: # should set the environment variable HOST_SH to a POSIX-compliant
                     38: # shell, and invoke build.sh with that shell.  (Depending on your
                     39: # system, one of /bin/ksh, /usr/local/bin/bash, or /usr/xpg4/bin/sh
                     40: # might be a suitable shell.)
1.67      thorpej    41: #
1.1       tv         42:
1.84      lukem      43: progname=${0##*/}
                     44: toppid=$$
1.98      lukem      45: results=/dev/null
1.200     apb        46: tab='  '
1.82      lukem      47: trap "exit 1" 1 2 3 15
1.84      lukem      48:
1.79      lukem      49: bomb()
                     50: {
1.82      lukem      51:        cat >&2 <<ERRORMESSAGE
                     52:
                     53: ERROR: $@
                     54: *** BUILD ABORTED ***
                     55: ERRORMESSAGE
1.98      lukem      56:        kill ${toppid}          # in case we were invoked from a subshell
1.1       tv         57:        exit 1
                     58: }
1.78      lukem      59:
1.84      lukem      60:
1.98      lukem      61: statusmsg()
                     62: {
                     63:        ${runcmd} echo "===> $@" | tee -a "${results}"
                     64: }
                     65:
1.163     apb        66: warning()
                     67: {
                     68:        statusmsg "Warning: $@"
                     69: }
                     70:
1.168     apb        71: # Find a program in the PATH, and print the result.  If not found,
                     72: # print a default.  If $2 is defined (even if it is an empty string),
                     73: # then that is the default; otherwise, $1 is used as the default.
1.153     apb        74: find_in_PATH()
                     75: {
                     76:        local prog="$1"
1.168     apb        77:        local result="${2-"$1"}"
1.153     apb        78:        local oldIFS="${IFS}"
                     79:        local dir
                     80:        IFS=":"
                     81:        for dir in ${PATH}; do
                     82:                if [ -x "${dir}/${prog}" ]; then
1.168     apb        83:                        result="${dir}/${prog}"
1.153     apb        84:                        break
                     85:                fi
                     86:        done
                     87:        IFS="${oldIFS}"
1.168     apb        88:        echo "${result}"
1.153     apb        89: }
                     90:
                     91: # Try to find a working POSIX shell, and set HOST_SH to refer to it.
                     92: # Assumes that uname_s, uname_m, and PWD have been set.
                     93: set_HOST_SH()
                     94: {
                     95:        # Even if ${HOST_SH} is already defined, we still do the
                     96:        # sanity checks at the end.
                     97:
                     98:        # Solaris has /usr/xpg4/bin/sh.
                     99:        #
                    100:        [ -z "${HOST_SH}" ] && [ x"${uname_s}" = x"SunOS" ] && \
                    101:                [ -x /usr/xpg4/bin/sh ] && HOST_SH="/usr/xpg4/bin/sh"
                    102:
                    103:        # Try to get the name of the shell that's running this script,
                    104:        # by parsing the output from "ps".  We assume that, if the host
                    105:        # system's ps command supports -o comm at all, it will do so
                    106:        # in the usual way: a one-line header followed by a one-line
                    107:        # result, possibly including trailing white space.  And if the
                    108:        # host system's ps command doesn't support -o comm, we assume
                    109:        # that we'll get an error message on stderr and nothing on
                    110:        # stdout.  (We don't try to use ps -o 'comm=' to suppress the
                    111:        # header line, because that is less widely supported.)
                    112:        #
                    113:        # If we get the wrong result here, the user can override it by
                    114:        # specifying HOST_SH in the environment.
                    115:        #
                    116:        [ -z "${HOST_SH}" ] && HOST_SH="$(
1.200     apb       117:                (ps -p $$ -o comm | sed -ne "2s/[ ${tab}]*\$//p") 2>/dev/null )"
1.153     apb       118:
                    119:        # If nothing above worked, use "sh".  We will later find the
                    120:        # first directory in the PATH that has a "sh" program.
                    121:        #
                    122:        [ -z "${HOST_SH}" ] && HOST_SH="sh"
                    123:
                    124:        # If the result so far is not an absolute path, try to prepend
                    125:        # PWD or search the PATH.
                    126:        #
                    127:        case "${HOST_SH}" in
                    128:        /*)     :
                    129:                ;;
                    130:        */*)    HOST_SH="${PWD}/${HOST_SH}"
                    131:                ;;
                    132:        *)      HOST_SH="$(find_in_PATH "${HOST_SH}")"
                    133:                ;;
                    134:        esac
                    135:
                    136:        # If we don't have an absolute path by now, bomb.
                    137:        #
                    138:        case "${HOST_SH}" in
                    139:        /*)     :
                    140:                ;;
                    141:        *)      bomb "HOST_SH=\"${HOST_SH}\" is not an absolute path."
                    142:                ;;
                    143:        esac
                    144:
                    145:        # If HOST_SH is not executable, bomb.
                    146:        #
                    147:        [ -x "${HOST_SH}" ] ||
                    148:            bomb "HOST_SH=\"${HOST_SH}\" is not executable."
                    149: }
                    150:
1.84      lukem     151: initdefaults()
                    152: {
1.171     apb       153:        makeenv=
                    154:        makewrapper=
                    155:        makewrappermachine=
                    156:        runcmd=
                    157:        operations=
                    158:        removedirs=
                    159:
1.156     dsl       160:        [ -d usr.bin/make ] || cd "$(dirname $0)"
1.84      lukem     161:        [ -d usr.bin/make ] ||
                    162:            bomb "build.sh must be run from the top source level"
                    163:        [ -f share/mk/bsd.own.mk ] ||
                    164:            bomb "src/share/mk is missing; please re-fetch the source tree"
                    165:
1.204     apb       166:        # Find information about the build platform.  This should be
                    167:        # kept in sync with _HOST_OSNAME, _HOST_OSREL, and _HOST_ARCH
                    168:        # variables in share/mk/bsd.sys.mk.
                    169:        #
                    170:        # Note that "uname -p" is not part of POSIX, but we want uname_p
                    171:        # to be set to the host MACHINE_ARCH, if possible.  On systems
                    172:        # where "uname -p" fails, prints "unknown", or prints a string
                    173:        # that does not look like an identifier, fall back to using the
                    174:        # output from "uname -m" instead.
1.165     apb       175:        #
1.84      lukem     176:        uname_s=$(uname -s 2>/dev/null)
1.165     apb       177:        uname_r=$(uname -r 2>/dev/null)
1.84      lukem     178:        uname_m=$(uname -m 2>/dev/null)
1.204     apb       179:        uname_p=$(uname -p 2>/dev/null || echo "unknown")
                    180:        case "${uname_p}" in
1.205     apb       181:        ''|unknown|*[^-_A-Za-z0-9]*) uname_p="${uname_m}" ;;
1.204     apb       182:        esac
1.84      lukem     183:
1.202     sketch    184:        id_u=$(id -u 2>/dev/null || /usr/xpg4/bin/id -u 2>/dev/null)
                    185:
1.84      lukem     186:        # If $PWD is a valid name of the current directory, POSIX mandates
                    187:        # that pwd return it by default which causes problems in the
                    188:        # presence of symlinks.  Unsetting PWD is simpler than changing
                    189:        # every occurrence of pwd to use -P.
                    190:        #
1.147     dogcow    191:        # XXX Except that doesn't work on Solaris. Or many Linuces.
1.98      lukem     192:        #
1.84      lukem     193:        unset PWD
1.147     dogcow    194:        TOP=$(/bin/pwd -P 2>/dev/null || /bin/pwd 2>/dev/null)
1.84      lukem     195:
1.153     apb       196:        # The user can set HOST_SH in the environment, or we try to
                    197:        # guess an appropriate value.  Then we set several other
                    198:        # variables from HOST_SH.
                    199:        #
                    200:        set_HOST_SH
                    201:        setmakeenv HOST_SH "${HOST_SH}"
                    202:        setmakeenv BSHELL "${HOST_SH}"
                    203:        setmakeenv CONFIG_SHELL "${HOST_SH}"
                    204:
1.84      lukem     205:        # Set defaults.
1.98      lukem     206:        #
1.84      lukem     207:        toolprefix=nb
1.98      lukem     208:
1.95      thorpej   209:        # Some systems have a small ARG_MAX.  -X prevents make(1) from
                    210:        # exporting variables in the environment redundantly.
1.98      lukem     211:        #
1.95      thorpej   212:        case "${uname_s}" in
1.97      christos  213:        Darwin | FreeBSD | CYGWIN*)
1.95      thorpej   214:                MAKEFLAGS=-X
                    215:                ;;
                    216:        *)
                    217:                MAKEFLAGS=
                    218:                ;;
                    219:        esac
1.98      lukem     220:
1.171     apb       221:        # do_{operation}=true if given operation is requested.
                    222:        #
1.84      lukem     223:        do_expertmode=false
                    224:        do_rebuildmake=false
                    225:        do_removedirs=false
                    226:        do_tools=false
1.195     lukem     227:        do_cleandir=false
1.84      lukem     228:        do_obj=false
                    229:        do_build=false
                    230:        do_distribution=false
                    231:        do_release=false
                    232:        do_kernel=false
1.105     lukem     233:        do_releasekernel=false
1.207     jnemeth   234:        do_modules=false
1.84      lukem     235:        do_install=false
1.87      lukem     236:        do_sets=false
1.100     lukem     237:        do_sourcesets=false
1.142     apb       238:        do_syspkgs=false
1.146     apb       239:        do_iso_image=false
1.172     jnemeth   240:        do_iso_image_source=false
1.107     lukem     241:        do_params=false
1.98      lukem     242:
1.211     apb       243:        # done_{operation}=true if given operation has been done.
                    244:        #
                    245:        done_rebuildmake=false
                    246:
1.98      lukem     247:        # Create scratch directory
                    248:        #
                    249:        tmpdir="${TMPDIR-/tmp}/nbbuild$$"
                    250:        mkdir "${tmpdir}" || bomb "Cannot mkdir: ${tmpdir}"
                    251:        trap "cd /; rm -r -f \"${tmpdir}\"" 0
                    252:        results="${tmpdir}/build.sh.results"
1.116     jmmv      253:
                    254:        # Set source directories
                    255:        #
                    256:        setmakeenv NETBSDSRCDIR "${TOP}"
1.136     lukem     257:
1.165     apb       258:        # Find the version of NetBSD
                    259:        #
                    260:        DISTRIBVER="$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh)"
                    261:
1.190     perry     262:        # Set the BUILDSEED to NetBSD-"N"
                    263:        #
                    264:        setmakeenv BUILDSEED "NetBSD-$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh -m)"
                    265:
1.206     perry     266:        # Set MKARZERO to "yes"
                    267:        #
                    268:        setmakeenv MKARZERO "yes"
                    269:
1.136     lukem     270:        # Set various environment variables to known defaults,
                    271:        # to minimize (cross-)build problems observed "in the field".
                    272:        #
                    273:        unsetmakeenv INFODIR
1.140     jmc       274:        unsetmakeenv LESSCHARSET
1.136     lukem     275:        setmakeenv LC_ALL C
1.84      lukem     276: }
1.29      jmc       277:
1.79      lukem     278: getarch()
                    279: {
1.158     apb       280:        # Translate some MACHINE name aliases (known only to build.sh)
                    281:        # into proper MACHINE and MACHINE_ARCH names.  Save the alias
                    282:        # name in makewrappermachine.
                    283:        #
                    284:        case "${MACHINE}" in
                    285:
                    286:        evbarm-e[bl])
                    287:                makewrappermachine=${MACHINE}
                    288:                # MACHINE_ARCH is "arm" or "armeb", not "armel"
                    289:                MACHINE_ARCH=arm${MACHINE##*-}
                    290:                MACHINE_ARCH=${MACHINE_ARCH%el}
                    291:                MACHINE=${MACHINE%-e[bl]}
                    292:                ;;
                    293:
                    294:        evbmips-e[bl]|sbmips-e[bl])
                    295:                makewrappermachine=${MACHINE}
                    296:                MACHINE_ARCH=mips${MACHINE##*-}
                    297:                MACHINE=${MACHINE%-e[bl]}
                    298:                ;;
                    299:
                    300:        evbmips64-e[bl]|sbmips64-e[bl])
                    301:                makewrappermachine=${MACHINE}
                    302:                MACHINE_ARCH=mips64${MACHINE##*-}
                    303:                MACHINE=${MACHINE%64-e[bl]}
                    304:                ;;
                    305:
                    306:        evbsh3-e[bl])
                    307:                makewrappermachine=${MACHINE}
                    308:                MACHINE_ARCH=sh3${MACHINE##*-}
                    309:                MACHINE=${MACHINE%-e[bl]}
                    310:                ;;
                    311:
                    312:        esac
                    313:
1.1       tv        314:        # Translate a MACHINE into a default MACHINE_ARCH.
1.84      lukem     315:        #
1.98      lukem     316:        case "${MACHINE}" in
1.1       tv        317:
1.162     briggs    318:        acorn26|acorn32|cats|hpcarm|iyonix|netwinder|shark|zaurus)
1.84      lukem     319:                MACHINE_ARCH=arm
                    320:                ;;
                    321:
1.162     briggs    322:        evbarm)         # unspecified MACHINE_ARCH gets LE
                    323:                MACHINE_ARCH=${MACHINE_ARCH:=arm}
                    324:                ;;
                    325:
1.98      lukem     326:        hp700)
                    327:                MACHINE_ARCH=hppa
                    328:                ;;
                    329:
1.84      lukem     330:        sun2)
                    331:                MACHINE_ARCH=m68000
                    332:                ;;
                    333:
1.98      lukem     334:        amiga|atari|cesfic|hp300|luna68k|mac68k|mvme68k|news68k|next68k|sun3|x68k)
1.84      lukem     335:                MACHINE_ARCH=m68k
                    336:                ;;
1.1       tv        337:
1.101     lukem     338:        evbmips|sbmips)         # no default MACHINE_ARCH
                    339:                ;;
                    340:
1.141     tsutsui   341:        ews4800mips|mipsco|newsmips|sgimips)
1.84      lukem     342:                MACHINE_ARCH=mipseb
                    343:                ;;
1.1       tv        344:
1.101     lukem     345:        algor|arc|cobalt|hpcmips|playstation2|pmax)
1.84      lukem     346:                MACHINE_ARCH=mipsel
                    347:                ;;
1.1       tv        348:
1.183     jmmv      349:        evbppc64|macppc64|ofppc64)
1.160     matt      350:                makewrappermachine=${MACHINE}
                    351:                MACHINE=${MACHINE%64}
                    352:                MACHINE_ARCH=powerpc64
                    353:                ;;
                    354:
1.181     garbled   355:        amigappc|bebox|evbppc|ibmnws|macppc|mvmeppc|ofppc|prep|rs6000|sandpoint)
1.84      lukem     356:                MACHINE_ARCH=powerpc
                    357:                ;;
1.1       tv        358:
1.103     lukem     359:        evbsh3)                 # no default MACHINE_ARCH
                    360:                ;;
                    361:
                    362:        mmeye)
1.84      lukem     363:                MACHINE_ARCH=sh3eb
                    364:                ;;
1.1       tv        365:
1.152     uwe       366:        dreamcast|hpcsh|landisk)
1.84      lukem     367:                MACHINE_ARCH=sh3el
                    368:                ;;
1.1       tv        369:
1.96      fvdl      370:        amd64)
                    371:                MACHINE_ARCH=x86_64
                    372:                ;;
1.62      fredette  373:
1.138     skrll     374:        alpha|i386|sparc|sparc64|vax|ia64)
1.98      lukem     375:                MACHINE_ARCH=${MACHINE}
1.84      lukem     376:                ;;
1.69      thorpej   377:
1.84      lukem     378:        *)
1.98      lukem     379:                bomb "Unknown target MACHINE: ${MACHINE}"
1.84      lukem     380:                ;;
1.4       tv        381:
1.1       tv        382:        esac
                    383: }
                    384:
1.79      lukem     385: validatearch()
                    386: {
1.47      tv        387:        # Ensure that the MACHINE_ARCH exists (and is supported by build.sh).
1.84      lukem     388:        #
1.98      lukem     389:        case "${MACHINE_ARCH}" in
1.47      tv        390:
1.184     matt      391:        alpha|arm|armeb|hppa|i386|m68000|m68k|mipse[bl]|mips64e[bl]|powerpc|powerpc64|sh3e[bl]|sparc|sparc64|vax|x86_64|ia64)
1.84      lukem     392:                ;;
                    393:
1.101     lukem     394:        "")
                    395:                bomb "No MACHINE_ARCH provided"
                    396:                ;;
                    397:
1.84      lukem     398:        *)
1.98      lukem     399:                bomb "Unknown target MACHINE_ARCH: ${MACHINE_ARCH}"
                    400:                ;;
                    401:
                    402:        esac
                    403:
                    404:        # Determine valid MACHINE_ARCHs for MACHINE
                    405:        #
                    406:        case "${MACHINE}" in
                    407:
                    408:        evbarm)
                    409:                arches="arm armeb"
                    410:                ;;
                    411:
                    412:        evbmips|sbmips)
1.150     matt      413:                arches="mipseb mipsel mips64eb mips64el"
                    414:                ;;
                    415:
                    416:        sgimips)
                    417:                arches="mipseb mips64eb"
1.98      lukem     418:                ;;
                    419:
                    420:        evbsh3)
                    421:                arches="sh3eb sh3el"
                    422:                ;;
                    423:
1.183     jmmv      424:        macppc|evbppc|ofppc)
1.148     mrg       425:                arches="powerpc powerpc64"
                    426:                ;;
1.98      lukem     427:        *)
                    428:                oma="${MACHINE_ARCH}"
                    429:                getarch
                    430:                arches="${MACHINE_ARCH}"
                    431:                MACHINE_ARCH="${oma}"
1.84      lukem     432:                ;;
                    433:
1.47      tv        434:        esac
1.98      lukem     435:
                    436:        # Ensure that MACHINE_ARCH supports MACHINE
                    437:        #
                    438:        archok=false
                    439:        for a in ${arches}; do
                    440:                if [ "${a}" = "${MACHINE_ARCH}" ]; then
                    441:                        archok=true
                    442:                        break
                    443:                fi
                    444:        done
                    445:        ${archok} ||
                    446:            bomb "MACHINE_ARCH '${MACHINE_ARCH}' does not support MACHINE '${MACHINE}'"
1.47      tv        447: }
                    448:
1.210     apb       449: # nobomb_getmakevar --
                    450: # Given the name of a make variable in $1, print make's idea of the
                    451: # value of that variable, or return 1 if there's an error.
                    452: #
1.168     apb       453: nobomb_getmakevar()
1.79      lukem     454: {
1.168     apb       455:        [ -x "${make}" ] || return 1
                    456:        "${make}" -m ${TOP}/share/mk -s -B -f- _x_ <<EOF || return 1
1.15      tv        457: _x_:
                    458:        echo \${$1}
                    459: .include <bsd.prog.mk>
1.70      lukem     460: .include <bsd.kernobj.mk>
1.15      tv        461: EOF
                    462: }
                    463:
1.210     apb       464: # nobomb_getmakevar --
                    465: # Given the name of a make variable in $1, print make's idea of the
                    466: # value of that variable, or bomb if there's an error.
                    467: #
                    468: bomb_getmakevar()
1.168     apb       469: {
1.210     apb       470:        [ -x "${make}" ] || bomb "bomb_getmakevar $1: ${make} is not executable"
                    471:        nobomb_getmakevar "$1" || bomb "bomb_getmakevar $1: ${make} failed"
1.168     apb       472: }
                    473:
1.210     apb       474: # nobomb_getmakevar --
                    475: # Given the name of a make variable in $1, print make's idea of the
                    476: # value of that variable, or print a literal '$' followed by the
                    477: # variable name if ${make} is not executable.  This is intended for use in
                    478: # messages that need to be readable even if $make hasn't been built,
                    479: # such as when build.sh is run with the "-n" option.
                    480: #
1.98      lukem     481: getmakevar()
1.82      lukem     482: {
1.98      lukem     483:        if [ -x "${make}" ]; then
1.210     apb       484:                bomb_getmakevar "$1"
1.82      lukem     485:        else
                    486:                echo "\$$1"
                    487:        fi
                    488: }
                    489:
1.109     lukem     490: setmakeenv()
                    491: {
                    492:        eval "$1='$2'; export $1"
                    493:        makeenv="${makeenv} $1"
                    494: }
                    495:
1.111     lukem     496: unsetmakeenv()
                    497: {
                    498:        eval "unset $1"
                    499:        makeenv="${makeenv} $1"
                    500: }
                    501:
1.208     apb       502: # Given a variable name in $1, modify the variable in place as follows:
                    503: # For each space-separated word in the variable, call resolvepath.
1.189     dyoung    504: resolvepaths()
                    505: {
1.208     apb       506:        local var="$1"
                    507:        local val
                    508:        eval val=\"\${${var}}\"
                    509:        local newval=''
                    510:        local word
                    511:        for word in ${val}; do
                    512:                resolvepath word
                    513:                newval="${newval}${newval:+ }${word}"
1.189     dyoung    514:        done
1.208     apb       515:        eval ${var}=\"\${newval}\"
1.189     dyoung    516: }
                    517:
1.208     apb       518: # Given a variable name in $1, modify the variable in place as follows:
1.131     junyoung  519: # Convert possibly-relative path to absolute path by prepending
                    520: # ${TOP} if necessary.  Also delete trailing "/", if any.
1.79      lukem     521: resolvepath()
                    522: {
1.208     apb       523:        local var="$1"
                    524:        local val
                    525:        eval val=\"\${${var}}\"
                    526:        case "${val}" in
1.131     junyoung  527:        /)
                    528:                ;;
1.84      lukem     529:        /*)
1.208     apb       530:                val="${val%/}"
1.84      lukem     531:                ;;
                    532:        *)
1.208     apb       533:                val="${TOP}/${val%/}"
1.84      lukem     534:                ;;
1.10      tv        535:        esac
1.208     apb       536:        eval ${var}=\"\${val}\"
1.10      tv        537: }
                    538:
1.79      lukem     539: usage()
                    540: {
1.84      lukem     541:        if [ -n "$*" ]; then
                    542:                echo ""
                    543:                echo "${progname}: $*"
                    544:        fi
1.70      lukem     545:        cat <<_usage_
1.83      lukem     546:
1.190     perry     547: Usage: ${progname} [-EnorUux] [-a arch] [-B buildid] [-C cdextras]
1.195     lukem     548:                 [-D dest] [-j njob] [-M obj] [-m mach] [-N noisy]
                    549:                 [-O obj] [-R release] [-S seed] [-T tools]
                    550:                 [-V var=[value]] [-w wrapper] [-X x11src] [-Z var]
                    551:                 operation [...]
1.84      lukem     552:
1.86      lukem     553:  Build operations (all imply "obj" and "tools"):
1.125     lukem     554:     build               Run "make build".
                    555:     distribution        Run "make distribution" (includes DESTDIR/etc/ files).
                    556:     release             Run "make release" (includes kernels & distrib media).
1.84      lukem     557:
                    558:  Other operations:
1.125     lukem     559:     help                Show this message and exit.
1.98      lukem     560:     makewrapper         Create ${toolprefix}make-\${MACHINE} wrapper and ${toolprefix}make.
1.125     lukem     561:                         Always performed.
1.195     lukem     562:     cleandir            Run "make cleandir".  [Default unless -u is used]
1.125     lukem     563:     obj                 Run "make obj".  [Default unless -o is used]
                    564:     tools               Build and install tools.
                    565:     install=idir        Run "make installworld" to \`idir' to install all sets
1.195     lukem     566:                         except \`etc'.  Useful after "distribution" or "release"
1.105     lukem     567:     kernel=conf         Build kernel with config file \`conf'
1.125     lukem     568:     releasekernel=conf  Install kernel built by kernel=conf to RELEASEDIR.
1.207     jnemeth   569:     modules             Build and install kernel modules.
1.186     lukem     570:     sets                Create binary sets in
1.195     lukem     571:                         RELEASEDIR/RELEASEMACHINEDIR/binary/sets.
                    572:                         DESTDIR should be populated beforehand.
1.125     lukem     573:     sourcesets          Create source sets in RELEASEDIR/source/sets.
1.186     lukem     574:     syspkgs             Create syspkgs in
1.195     lukem     575:                         RELEASEDIR/RELEASEMACHINEDIR/binary/syspkgs.
1.172     jnemeth   576:     iso-image           Create CD-ROM image in RELEASEDIR/iso.
                    577:     iso-image-source    Create CD-ROM image with source in RELEASEDIR/iso.
1.125     lukem     578:     params              Display various make(1) parameters.
1.84      lukem     579:
                    580:  Options:
1.125     lukem     581:     -a arch     Set MACHINE_ARCH to arch.  [Default: deduced from MACHINE]
                    582:     -B buildId  Set BUILDID to buildId.
1.209     apb       583:     -C cdextras Append cdextras to CDEXTRA variable for inclusion on CD-ROM.
1.119     lukem     584:     -D dest     Set DESTDIR to dest.  [Default: destdir.MACHINE]
1.98      lukem     585:     -E          Set "expert" mode; disables various safety checks.
1.127     lukem     586:                 Should not be used without expert knowledge of the build system.
1.129     wiz       587:     -h          Print this help message.
1.125     lukem     588:     -j njob     Run up to njob jobs in parallel; see make(1) -j.
                    589:     -M obj      Set obj root directory to obj; sets MAKEOBJDIRPREFIX.
1.111     lukem     590:                 Unsets MAKEOBJDIR.
1.125     lukem     591:     -m mach     Set MACHINE to mach; not required if NetBSD native.
1.195     lukem     592:     -N noisy    Set the noisyness (MAKEVERBOSE) level of the build:
1.199     apb       593:                     0   Minimal output ("quiet")
                    594:                     1   Describe what is occurring
                    595:                     2   Describe what is occurring and echo the actual command
                    596:                     3   Ignore the effect of the "@" prefix in make commands
                    597:                     4   Trace shell commands using the shell's -x flag
1.195     lukem     598:                 [Default: 2]
1.125     lukem     599:     -n          Show commands that would be executed, but do not execute them.
                    600:     -O obj      Set obj root directory to obj; sets a MAKEOBJDIR pattern.
1.111     lukem     601:                 Unsets MAKEOBJDIRPREFIX.
1.125     lukem     602:     -o          Set MKOBJDIRS=no; do not create objdirs at start of build.
1.119     lukem     603:     -R release  Set RELEASEDIR to release.  [Default: releasedir]
1.125     lukem     604:     -r          Remove contents of TOOLDIR and DESTDIR before building.
1.190     perry     605:     -S seed     Set BUILDSEED to seed.  [Default: NetBSD-majorversion]
1.98      lukem     606:     -T tools    Set TOOLDIR to tools.  If unset, and TOOLDIR is not set in
1.125     lukem     607:                 the environment, ${toolprefix}make will be (re)built unconditionally.
                    608:     -U          Set MKUNPRIVED=yes; build without requiring root privileges,
1.195     lukem     609:                 install from an UNPRIVED build with proper file permissions.
1.187     dholland  610:     -u          Set MKUPDATE=yes; do not run "make cleandir" first.
1.195     lukem     611:                 Without this, everything is rebuilt, including the tools.
1.125     lukem     612:     -V v=[val]  Set variable \`v' to \`val'.
                    613:     -w wrapper  Create ${toolprefix}make script as wrapper.
1.119     lukem     614:                 [Default: \${TOOLDIR}/bin/${toolprefix}make-\${MACHINE}]
1.127     lukem     615:     -X x11src   Set X11SRCDIR to x11src.  [Default: /usr/xsrc]
1.201     plunky    616:     -x          Set MKX11=yes; build X11 from X11SRCDIR
1.125     lukem     617:     -Z v        Unset ("zap") variable \`v'.
1.83      lukem     618:
1.70      lukem     619: _usage_
1.1       tv        620:        exit 1
                    621: }
                    622:
1.84      lukem     623: parseoptions()
                    624: {
1.197     lukem     625:        opts='a:B:C:D:Ehj:M:m:N:nO:oR:rS:T:UuV:w:xX:Z:'
1.84      lukem     626:        opt_a=no
                    627:
                    628:        if type getopts >/dev/null 2>&1; then
                    629:                # Use POSIX getopts.
1.98      lukem     630:                #
                    631:                getoptcmd='getopts ${opts} opt && opt=-${opt}'
1.84      lukem     632:                optargcmd=':'
1.98      lukem     633:                optremcmd='shift $((${OPTIND} -1))'
1.84      lukem     634:        else
                    635:                type getopt >/dev/null 2>&1 ||
                    636:                    bomb "/bin/sh shell is too old; try ksh or bash"
                    637:
                    638:                # Use old-style getopt(1) (doesn't handle whitespace in args).
1.98      lukem     639:                #
                    640:                args="$(getopt ${opts} $*)"
1.84      lukem     641:                [ $? = 0 ] || usage
1.98      lukem     642:                set -- ${args}
1.84      lukem     643:
                    644:                getoptcmd='[ $# -gt 0 ] && opt="$1" && shift'
                    645:                optargcmd='OPTARG="$1"; shift'
                    646:                optremcmd=':'
                    647:        fi
                    648:
                    649:        # Parse command line options.
                    650:        #
1.98      lukem     651:        while eval ${getoptcmd}; do
                    652:                case ${opt} in
1.84      lukem     653:
                    654:                -a)
1.98      lukem     655:                        eval ${optargcmd}
                    656:                        MACHINE_ARCH=${OPTARG}
1.84      lukem     657:                        opt_a=yes
                    658:                        ;;
                    659:
                    660:                -B)
1.98      lukem     661:                        eval ${optargcmd}
                    662:                        BUILDID=${OPTARG}
1.84      lukem     663:                        ;;
                    664:
1.174     jnemeth   665:                -C)
1.208     apb       666:                        eval ${optargcmd}; resolvepaths OPTARG
1.209     apb       667:                        CDEXTRA="${CDEXTRA}${CDEXTRA:+ }${OPTARG}"
1.174     jnemeth   668:                        ;;
                    669:
1.84      lukem     670:                -D)
1.208     apb       671:                        eval ${optargcmd}; resolvepath OPTARG
1.109     lukem     672:                        setmakeenv DESTDIR "${OPTARG}"
1.84      lukem     673:                        ;;
                    674:
                    675:                -E)
                    676:                        do_expertmode=true
                    677:                        ;;
                    678:
                    679:                -j)
1.98      lukem     680:                        eval ${optargcmd}
                    681:                        parallel="-j ${OPTARG}"
1.84      lukem     682:                        ;;
                    683:
                    684:                -M)
1.208     apb       685:                        eval ${optargcmd}; resolvepath OPTARG
1.212     apb       686:                        case "${OPTARG}" in
                    687:                        \$*)    usage "-M argument must not begin with '$'"
                    688:                                ;;
                    689:                        *\$*)   # can use resolvepath, but can't set TOP_objdir
                    690:                                resolvepath OPTARG
                    691:                                ;;
                    692:                        *)      resolvepath OPTARG
                    693:                                TOP_objdir="${OPTARG}${TOP}"
                    694:                                ;;
                    695:                        esac
1.111     lukem     696:                        unsetmakeenv MAKEOBJDIR
1.109     lukem     697:                        setmakeenv MAKEOBJDIRPREFIX "${OPTARG}"
1.84      lukem     698:                        ;;
                    699:
                    700:                        # -m overrides MACHINE_ARCH unless "-a" is specified
                    701:                -m)
1.98      lukem     702:                        eval ${optargcmd}
                    703:                        MACHINE="${OPTARG}"
                    704:                        [ "${opt_a}" != "yes" ] && getarch
1.84      lukem     705:                        ;;
                    706:
1.119     lukem     707:                -N)
                    708:                        eval ${optargcmd}
                    709:                        case "${OPTARG}" in
1.199     apb       710:                        0|1|2|3|4)
1.121     lukem     711:                                setmakeenv MAKEVERBOSE "${OPTARG}"
1.119     lukem     712:                                ;;
                    713:                        *)
                    714:                                usage "'${OPTARG}' is not a valid value for -N"
                    715:                                ;;
                    716:                        esac
                    717:                        ;;
                    718:
1.84      lukem     719:                -n)
                    720:                        runcmd=echo
                    721:                        ;;
                    722:
                    723:                -O)
1.212     apb       724:                        eval ${optargcmd}
                    725:                        case "${OPTARG}" in
                    726:                        *\$*)   usage "-O argument must not contain '$'"
                    727:                                ;;
                    728:                        *)      resolvepath OPTARG
                    729:                                TOP_objdir="${OPTARG}"
                    730:                                ;;
                    731:                        esac
1.111     lukem     732:                        unsetmakeenv MAKEOBJDIRPREFIX
1.109     lukem     733:                        setmakeenv MAKEOBJDIR "\${.CURDIR:C,^$TOP,$OPTARG,}"
1.84      lukem     734:                        ;;
                    735:
                    736:                -o)
                    737:                        MKOBJDIRS=no
                    738:                        ;;
                    739:
                    740:                -R)
1.208     apb       741:                        eval ${optargcmd}; resolvepath OPTARG
1.109     lukem     742:                        setmakeenv RELEASEDIR "${OPTARG}"
1.84      lukem     743:                        ;;
                    744:
                    745:                -r)
                    746:                        do_removedirs=true
                    747:                        do_rebuildmake=true
                    748:                        ;;
                    749:
1.190     perry     750:                -S)
                    751:                        eval ${optargcmd}
                    752:                        setmakeenv BUILDSEED "${OPTARG}"
                    753:                        ;;
                    754:
1.84      lukem     755:                -T)
1.208     apb       756:                        eval ${optargcmd}; resolvepath OPTARG
1.98      lukem     757:                        TOOLDIR="${OPTARG}"
1.84      lukem     758:                        export TOOLDIR
                    759:                        ;;
                    760:
                    761:                -U)
1.109     lukem     762:                        setmakeenv MKUNPRIVED yes
1.84      lukem     763:                        ;;
1.44      lukem     764:
1.84      lukem     765:                -u)
1.109     lukem     766:                        setmakeenv MKUPDATE yes
1.84      lukem     767:                        ;;
1.15      tv        768:
1.84      lukem     769:                -V)
1.98      lukem     770:                        eval ${optargcmd}
1.84      lukem     771:                        case "${OPTARG}" in
1.80      lukem     772:                    # XXX: consider restricting which variables can be changed?
1.84      lukem     773:                        [a-zA-Z_][a-zA-Z_0-9]*=*)
1.109     lukem     774:                                setmakeenv "${OPTARG%%=*}" "${OPTARG#*=}"
1.84      lukem     775:                                ;;
                    776:                        *)
                    777:                                usage "-V argument must be of the form 'var=[value]'"
                    778:                                ;;
                    779:                        esac
                    780:                        ;;
                    781:
                    782:                -w)
1.208     apb       783:                        eval ${optargcmd}; resolvepath OPTARG
1.98      lukem     784:                        makewrapper="${OPTARG}"
1.84      lukem     785:                        ;;
                    786:
1.127     lukem     787:                -X)
1.208     apb       788:                        eval ${optargcmd}; resolvepath OPTARG
1.127     lukem     789:                        setmakeenv X11SRCDIR "${OPTARG}"
                    790:                        ;;
                    791:
                    792:                -x)
                    793:                        setmakeenv MKX11 yes
                    794:                        ;;
                    795:
1.111     lukem     796:                -Z)
                    797:                        eval ${optargcmd}
                    798:                    # XXX: consider restricting which variables can be unset?
                    799:                        unsetmakeenv "${OPTARG}"
                    800:                        ;;
                    801:
1.84      lukem     802:                --)
                    803:                        break
                    804:                        ;;
                    805:
                    806:                -'?'|-h)
                    807:                        usage
                    808:                        ;;
                    809:
                    810:                esac
                    811:        done
                    812:
                    813:        # Validate operations.
                    814:        #
1.98      lukem     815:        eval ${optremcmd}
1.84      lukem     816:        while [ $# -gt 0 ]; do
                    817:                op=$1; shift
1.98      lukem     818:                operations="${operations} ${op}"
1.84      lukem     819:
1.98      lukem     820:                case "${op}" in
1.84      lukem     821:
1.87      lukem     822:                help)
                    823:                        usage
                    824:                        ;;
                    825:
1.195     lukem     826:                makewrapper|cleandir|obj|tools|build|distribution|release|sets|sourcesets|syspkgs|params)
1.80      lukem     827:                        ;;
1.84      lukem     828:
1.146     apb       829:                iso-image)
                    830:                        op=iso_image    # used as part of a variable name
                    831:                        ;;
                    832:
1.172     jnemeth   833:                iso-image-source)
                    834:                        op=iso_image_source   # used as part of a variable name
                    835:                        ;;
                    836:
1.105     lukem     837:                kernel=*|releasekernel=*)
1.84      lukem     838:                        arg=${op#*=}
                    839:                        op=${op%%=*}
1.98      lukem     840:                        [ -n "${arg}" ] ||
1.105     lukem     841:                            bomb "Must supply a kernel name with \`${op}=...'"
1.84      lukem     842:                        ;;
                    843:
1.207     jnemeth   844:                modules)
                    845:                        op=modules
                    846:                        ;;
                    847:
1.84      lukem     848:                install=*)
                    849:                        arg=${op#*=}
                    850:                        op=${op%%=*}
1.98      lukem     851:                        [ -n "${arg}" ] ||
                    852:                            bomb "Must supply a directory with \`install=...'"
1.84      lukem     853:                        ;;
                    854:
1.80      lukem     855:                *)
1.84      lukem     856:                        usage "Unknown operation \`${op}'"
                    857:                        ;;
                    858:
1.80      lukem     859:                esac
1.98      lukem     860:                eval do_${op}=true
1.84      lukem     861:        done
1.98      lukem     862:        [ -n "${operations}" ] || usage "Missing operation to perform."
1.84      lukem     863:
                    864:        # Set up MACHINE*.  On a NetBSD host, these are allowed to be unset.
                    865:        #
1.98      lukem     866:        if [ -z "${MACHINE}" ]; then
                    867:                [ "${uname_s}" = "NetBSD" ] ||
                    868:                    bomb "MACHINE must be set, or -m must be used, for cross builds."
1.84      lukem     869:                MACHINE=${uname_m}
                    870:        fi
1.98      lukem     871:        [ -n "${MACHINE_ARCH}" ] || getarch
1.84      lukem     872:        validatearch
                    873:
                    874:        # Set up default make(1) environment.
                    875:        #
1.98      lukem     876:        makeenv="${makeenv} TOOLDIR MACHINE MACHINE_ARCH MAKEFLAGS"
                    877:        [ -z "${BUILDID}" ] || makeenv="${makeenv} BUILDID"
1.115     jmmv      878:        MAKEFLAGS="-de -m ${TOP}/share/mk ${MAKEFLAGS} MKOBJDIRS=${MKOBJDIRS-yes}"
1.84      lukem     879:        export MAKEFLAGS MACHINE MACHINE_ARCH
                    880: }
                    881:
1.163     apb       882: sanitycheck()
                    883: {
                    884:        # If the PATH contains any non-absolute components (including,
1.170     apb       885:        # but not limited to, "." or ""), then complain.  As an exception,
                    886:        # allow "" or "." as the last component of the PATH.  This is fatal
1.163     apb       887:        # if expert mode is not in effect.
                    888:        #
1.170     apb       889:        local path="${PATH}"
                    890:        path="${path%:}"        # delete trailing ":"
                    891:        path="${path%:.}"       # delete trailing ":."
                    892:        case ":${path}:/" in
                    893:        *:[!/]*)
1.163     apb       894:                if ${do_expertmode}; then
                    895:                        warning "PATH contains non-absolute components"
                    896:                else
1.164     apb       897:                        bomb "PATH environment variable must not" \
                    898:                             "contain non-absolute components"
1.163     apb       899:                fi
                    900:                ;;
                    901:        esac
                    902: }
                    903:
1.213     apb       904: # print_tooldir_make --
                    905: # Try to find and print a path to an existing
                    906: # ${TOOLDIR}/bin/${toolprefix}make, for use by rebuildmake() before a
                    907: # new version of ${toolprefix}make has been built.
1.168     apb       908: #
                    909: # * If TOOLDIR was set in the environment or on the command line, use
                    910: #   that value.
                    911: # * Otherwise try to guess what TOOLDIR would be if not overridden by
                    912: #   /etc/mk.conf, and check whether the resulting directory contains
                    913: #   a copy of ${toolprefix}make (this should work for everybody who
                    914: #   doesn't override TOOLDIR via /etc/mk.conf);
                    915: # * Failing that, search for ${toolprefix}make, nbmake, bmake, or make,
                    916: #   in the PATH (this might accidentally find a non-NetBSD version of
                    917: #   make, which will lead to failure in the next step);
                    918: # * If a copy of make was found above, try to use it with
1.213     apb       919: #   nobomb_getmakevar to find the correct value for TOOLDIR, and believe the
                    920: #   result only if it's a directory that already exists;
                    921: # * If a value of TOOLDIR was found above, and if
                    922: #   ${TOOLDIR}/bin/${toolprefix}make exists, print that value.
1.168     apb       923: #
1.213     apb       924: print_tooldir_make()
1.168     apb       925: {
1.213     apb       926:        local possible_TOP_OBJ
                    927:        local possible_TOOLDIR
                    928:        local possible_make
                    929:        local tooldir_make
                    930:
                    931:        if [ -n "${TOOLDIR}" ]; then
                    932:                echo "${TOOLDIR}/bin/${toolprefix}make"
                    933:                return 0
                    934:        fi
1.168     apb       935:
1.198     apb       936:        # Set host_ostype to something like "NetBSD-4.5.6-i386".  This
                    937:        # is intended to match the HOST_OSTYPE variable in <bsd.own.mk>.
                    938:        #
1.168     apb       939:        local host_ostype="${uname_s}-$(
                    940:                echo "${uname_r}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
1.194     lukem     941:                )-$(
1.168     apb       942:                echo "${uname_p}" | sed -e 's/([^)]*)//g' -e 's/ /_/g'
                    943:                )"
                    944:
1.198     apb       945:        # Look in a few potential locations for
                    946:        # ${possible_TOOLDIR}/bin/${toolprefix}make.
1.213     apb       947:        # If we find it, then set possible_make.
1.198     apb       948:        #
                    949:        # In the usual case (without interference from environment
                    950:        # variables or /etc/mk.conf), <bsd.own.mk> should set TOOLDIR to
1.212     apb       951:        # "${_SRC_TOP_OBJ_}/tooldir.${host_ostype}".
                    952:        #
                    953:        # In practice it's difficult to figure out the correct value
                    954:        # for _SRC_TOP_OBJ_.  In the easiest case, when the -M or -O
                    955:        # options were passed to build.sh, then ${TOP_objdir} will be
                    956:        # the correct value.  We also try a few other possibilities, but
                    957:        # we do not replicate all the logic of <bsd.obj.mk>.
1.198     apb       958:        #
1.212     apb       959:        for possible_TOP_OBJ in \
                    960:                "${TOP_objdir}" \
                    961:                "${MAKEOBJDIRPREFIX:+${MAKEOBJDIRPREFIX}${TOP}}" \
                    962:                "${TOP}" \
                    963:                "${TOP}/obj" \
1.198     apb       964:                "${TOP}/obj.${MACHINE}"
                    965:        do
1.212     apb       966:                [ -n "${possible_TOP_OBJ}" ] || continue
1.198     apb       967:                possible_TOOLDIR="${possible_TOP_OBJ}/tooldir.${host_ostype}"
1.213     apb       968:                possible_make="${possible_TOOLDIR}/bin/${toolprefix}make"
                    969:                if [ -x "${possible_make}" ]; then
1.212     apb       970:                        break
1.198     apb       971:                else
1.213     apb       972:                        unset possible_make
1.198     apb       973:                fi
                    974:        done
                    975:
                    976:        # If the above didn't work, search the PATH for a suitable
                    977:        # ${toolprefix}make, nbmake, bmake, or make.
                    978:        #
1.213     apb       979:        : ${possible_make:=$(find_in_PATH ${toolprefix}make '')}
                    980:        : ${possible_make:=$(find_in_PATH nbmake '')}
                    981:        : ${possible_make:=$(find_in_PATH bmake '')}
                    982:        : ${possible_make:=$(find_in_PATH make '')}
                    983:
                    984:        # At this point, we don't care whether possible_make is in the
                    985:        # correct TOOLDIR or not; we simply want it to be usable by
                    986:        # getmakevar to help us find the correct TOOLDIR.
                    987:        #
                    988:        # Use ${possible_make} with nobomb_getmakevar to try to find
                    989:        # the value of TOOLDIR.  Believe the result only if it's
                    990:        # a directory that already exists and contains bin/${toolprefix}make.
                    991:        #
                    992:        if [ -x "${possible_make}" ]; then
                    993:                possible_TOOLDIR="$(
                    994:                        make="${possible_make}" nobomb_getmakevar TOOLDIR
                    995:                        )"
                    996:                if [ $? = 0 ] && [ -n "${possible_TOOLDIR}" ] \
                    997:                    && [ -d "${possible_TOOLDIR}" ];
                    998:                then
                    999:                        tooldir_make="${possible_TOOLDIR}/bin/${toolprefix}make"
                   1000:                        if [ -x "${tooldir_make}" ]; then
                   1001:                                echo "${tooldir_make}"
                   1002:                                return 0
                   1003:                        fi
                   1004:                fi
1.168     apb      1005:        fi
1.213     apb      1006:        return 1
1.168     apb      1007: }
                   1008:
1.213     apb      1009: # rebuildmake --
                   1010: # Rebuild nbmake in a temporary directory if necessary.  Sets $make
                   1011: # to a path to the nbmake executable.  Sets done_rebuildmake=true
                   1012: # if nbmake was rebuilt.
                   1013: #
                   1014: # There is a cyclic dependency between building nbmake and choosing
                   1015: # TOOLDIR: TOOLDIR may be affected by settings in /etc/mk.conf, so we
                   1016: # would like to use getmakevar to get the value of TOOLDIR; but we can't
                   1017: # use getmakevar before we have an up to date version of nbmake; we
                   1018: # might already have an up to date version of nbmake in TOOLDIR, but we
                   1019: # don't yet know where TOOLDIR is.
                   1020: #
                   1021: # The default value of TOOLDIR also depends on the location of the top
                   1022: # level object directory, so $(getmakevar TOOLDIR) invoked before or
                   1023: # after making the top level object directory may produce different
                   1024: # results.
                   1025: #
                   1026: # Strictly speaking, we should do the following:
                   1027: #
                   1028: #    1. build a new version of nbmake in a temporary directory;
                   1029: #    2. use the temporary nbmake to create the top level obj directory;
                   1030: #    3. use $(getmakevar TOOLDIR) with the temporary nbmake to
                   1031: #       get the corect value of TOOLDIR;
1.214   ! apb      1032: #    4. move the temporary nbmake to ${TOOLDIR}/bin/nbmake.
1.213     apb      1033: #
                   1034: # However, people don't like building nbmake unnecessarily if their
                   1035: # TOOLDIR has not changed since an earlier build.  We try to avoid
                   1036: # rebuilding a temporary version of nbmake by taking some shortcuts to
                   1037: # guess a value for TOOLDIR, looking for an existing version of nbmake
                   1038: # in that TOOLDIR, and checking whether that nbmake is newer than the
                   1039: # sources used to build it.
                   1040: #
1.84      lukem    1041: rebuildmake()
                   1042: {
1.213     apb      1043:        make="$(print_tooldir_make)"
                   1044:        if [ -n "${make}" ] && [ -x "${make}" ]; then
1.84      lukem    1045:                for f in usr.bin/make/*.[ch] usr.bin/make/lst.lib/*.[ch]; do
1.98      lukem    1046:                        if [ "${f}" -nt "${make}" ]; then
1.213     apb      1047:                                statusmsg "${make} outdated" \
                   1048:                                        "(older than ${f}), needs building."
1.84      lukem    1049:                                do_rebuildmake=true
                   1050:                                break
                   1051:                        fi
                   1052:                done
                   1053:        else
1.213     apb      1054:                statusmsg "No \$TOOLDIR/bin/${toolprefix}make, needs building."
1.84      lukem    1055:                do_rebuildmake=true
                   1056:        fi
                   1057:
                   1058:        # Build bootstrap ${toolprefix}make if needed.
1.98      lukem    1059:        if ${do_rebuildmake}; then
                   1060:                statusmsg "Bootstrapping ${toolprefix}make"
                   1061:                ${runcmd} cd "${tmpdir}"
                   1062:                ${runcmd} env CC="${HOST_CC-cc}" CPPFLAGS="${HOST_CPPFLAGS}" \
1.84      lukem    1063:                        CFLAGS="${HOST_CFLAGS--O}" LDFLAGS="${HOST_LDFLAGS}" \
1.153     apb      1064:                        ${HOST_SH} "${TOP}/tools/make/configure" ||
1.98      lukem    1065:                    bomb "Configure of ${toolprefix}make failed"
1.153     apb      1066:                ${runcmd} ${HOST_SH} buildmake.sh ||
1.98      lukem    1067:                    bomb "Build of ${toolprefix}make failed"
                   1068:                make="${tmpdir}/${toolprefix}make"
                   1069:                ${runcmd} cd "${TOP}"
                   1070:                ${runcmd} rm -f usr.bin/make/*.o usr.bin/make/lst.lib/*.o
1.211     apb      1071:                done_rebuildmake=true
1.84      lukem    1072:        fi
                   1073: }
                   1074:
                   1075: validatemakeparams()
                   1076: {
1.98      lukem    1077:        if [ "${runcmd}" = "echo" ]; then
1.84      lukem    1078:                TOOLCHAIN_MISSING=no
                   1079:                EXTERNAL_TOOLCHAIN=""
                   1080:        else
1.210     apb      1081:                TOOLCHAIN_MISSING=$(bomb_getmakevar TOOLCHAIN_MISSING)
                   1082:                EXTERNAL_TOOLCHAIN=$(bomb_getmakevar EXTERNAL_TOOLCHAIN)
1.84      lukem    1083:        fi
                   1084:        if [ "${TOOLCHAIN_MISSING}" = "yes" ] && \
1.86      lukem    1085:           [ -z "${EXTERNAL_TOOLCHAIN}" ]; then
1.98      lukem    1086:                ${runcmd} echo "ERROR: build.sh (in-tree cross-toolchain) is not yet available for"
                   1087:                ${runcmd} echo "        MACHINE:      ${MACHINE}"
                   1088:                ${runcmd} echo "        MACHINE_ARCH: ${MACHINE_ARCH}"
                   1089:                ${runcmd} echo ""
                   1090:                ${runcmd} echo "All builds for this platform should be done via a traditional make"
                   1091:                ${runcmd} echo "If you wish to use an external cross-toolchain, set"
                   1092:                ${runcmd} echo "        EXTERNAL_TOOLCHAIN=<path to toolchain root>"
                   1093:                ${runcmd} echo "in either the environment or mk.conf and rerun"
                   1094:                ${runcmd} echo "        ${progname} $*"
1.84      lukem    1095:                exit 1
                   1096:        fi
                   1097:
1.120     lukem    1098:        # Normalise MKOBJDIRS, MKUNPRIVED, and MKUPDATE
                   1099:        # These may be set as build.sh options or in "mk.conf".
                   1100:        # Don't export them as they're only used for tests in build.sh.
                   1101:        #
                   1102:        MKOBJDIRS=$(getmakevar MKOBJDIRS)
                   1103:        MKUNPRIVED=$(getmakevar MKUNPRIVED)
                   1104:        MKUPDATE=$(getmakevar MKUPDATE)
                   1105:
1.106     lukem    1106:        if [ "${MKOBJDIRS}" != "no" ]; then
1.212     apb      1107:                # Create the top-level object directory.
1.106     lukem    1108:                #
1.212     apb      1109:                # "make obj NOSUBDIR=" can handle most cases, but it
                   1110:                # can't handle the case where MAKEOBJDIRPREFIX is set
                   1111:                # while the corresponding directory does not exist
                   1112:                # (rules in <bsd.obj.mk> would abort the build).  We
                   1113:                # therefore have to handle the MAKEOBJDIRPREFIX case
                   1114:                # without invoking "make obj".  The MAKEOBJDIR case
                   1115:                # could be handled either way, but we choose to handle
                   1116:                # it similarly to MAKEOBJDIRPREFIX.
1.191     apb      1117:                #
1.212     apb      1118:                if [ -n "${TOP_obj}" ]; then
                   1119:                        # It must have been set by the "-M" or "-O"
                   1120:                        # command line options, so there's no need to
                   1121:                        # use getmakevar
                   1122:                        :
                   1123:                elif [ -n "$MAKEOBJDIRPREFIX" ]; then
                   1124:                        TOP_obj="$(getmakevar MAKEOBJDIRPREFIX)${TOP}"
                   1125:                elif [ -n "$MAKEOBJDIR" ]; then
                   1126:                        TOP_obj="$(getmakevar MAKEOBJDIR)"
                   1127:                fi
                   1128:                if [ -n "$TOP_obj" ]; then
                   1129:                        ${runcmd} mkdir -p "${TOP_obj}" ||
                   1130:                            bomb "Can't create top level object directory" \
                   1131:                                        "${TOP_obj}"
                   1132:                else
                   1133:                        ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
                   1134:                            bomb "Can't create top level object directory" \
                   1135:                                        "using make obj"
1.106     lukem    1136:                fi
                   1137:
1.212     apb      1138:                # make obj in tools to ensure that the objdir for "tools"
                   1139:                # is available.
1.106     lukem    1140:                #
1.98      lukem    1141:                ${runcmd} cd tools
                   1142:                ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
                   1143:                    bomb "Failed to make obj in tools"
                   1144:                ${runcmd} cd "${TOP}"
1.84      lukem    1145:        fi
1.80      lukem    1146:
1.186     lukem    1147:        # Find TOOLDIR, DESTDIR, RELEASEDIR, and RELEASEMACHINEDIR.
1.212     apb      1148:        # This must be done after creating the top-level object directory.
1.84      lukem    1149:        #
1.98      lukem    1150:        TOOLDIR=$(getmakevar TOOLDIR)
1.105     lukem    1151:        statusmsg "TOOLDIR path:     ${TOOLDIR}"
1.98      lukem    1152:        DESTDIR=$(getmakevar DESTDIR)
                   1153:        RELEASEDIR=$(getmakevar RELEASEDIR)
1.186     lukem    1154:        RELEASEMACHINEDIR=$(getmakevar RELEASEMACHINEDIR)
1.98      lukem    1155:        if ! $do_expertmode; then
1.105     lukem    1156:                _SRC_TOP_OBJ_=$(getmakevar _SRC_TOP_OBJ_)
                   1157:                : ${DESTDIR:=${_SRC_TOP_OBJ_}/destdir.${MACHINE}}
                   1158:                : ${RELEASEDIR:=${_SRC_TOP_OBJ_}/releasedir}
1.99      lukem    1159:                makeenv="${makeenv} DESTDIR RELEASEDIR"
1.98      lukem    1160:        fi
1.99      lukem    1161:        export TOOLDIR DESTDIR RELEASEDIR
1.105     lukem    1162:        statusmsg "DESTDIR path:     ${DESTDIR}"
                   1163:        statusmsg "RELEASEDIR path:  ${RELEASEDIR}"
1.84      lukem    1164:
                   1165:        # Check validity of TOOLDIR and DESTDIR.
                   1166:        #
1.98      lukem    1167:        if [ -z "${TOOLDIR}" ] || [ "${TOOLDIR}" = "/" ]; then
                   1168:                bomb "TOOLDIR '${TOOLDIR}' invalid"
1.84      lukem    1169:        fi
1.98      lukem    1170:        removedirs="${TOOLDIR}"
1.15      tv       1171:
1.98      lukem    1172:        if [ -z "${DESTDIR}" ] || [ "${DESTDIR}" = "/" ]; then
                   1173:                if ${do_build} || ${do_distribution} || ${do_release}; then
                   1174:                        if ! ${do_build} || \
1.84      lukem    1175:                           [ "${uname_s}" != "NetBSD" ] || \
1.98      lukem    1176:                           [ "${uname_m}" != "${MACHINE}" ]; then
1.84      lukem    1177:                                bomb "DESTDIR must != / for cross builds, or ${progname} 'distribution' or 'release'."
                   1178:                        fi
1.98      lukem    1179:                        if ! ${do_expertmode}; then
1.84      lukem    1180:                                bomb "DESTDIR must != / for non -E (expert) builds"
                   1181:                        fi
1.98      lukem    1182:                        statusmsg "WARNING: Building to /, in expert mode."
                   1183:                        statusmsg "         This may cause your system to break!  Reasons include:"
                   1184:                        statusmsg "            - your kernel is not up to date"
                   1185:                        statusmsg "            - the libraries or toolchain have changed"
                   1186:                        statusmsg "         YOU HAVE BEEN WARNED!"
1.1       tv       1187:                fi
1.84      lukem    1188:        else
1.98      lukem    1189:                removedirs="${removedirs} ${DESTDIR}"
1.84      lukem    1190:        fi
1.98      lukem    1191:        if ${do_build} || ${do_distribution} || ${do_release}; then
                   1192:                if ! ${do_expertmode} && \
1.202     sketch   1193:                    [ "$id_u" -ne 0 ] && \
1.124     lukem    1194:                    [ "${MKUNPRIVED}" = "no" ] ; then
1.86      lukem    1195:                        bomb "-U or -E must be set for build as an unprivileged user."
                   1196:                fi
1.185     apb      1197:        fi
1.105     lukem    1198:        if ${do_releasekernel} && [ -z "${RELEASEDIR}" ]; then
                   1199:                bomb "Must set RELEASEDIR with \`releasekernel=...'"
                   1200:        fi
1.185     apb      1201:
                   1202:        # Install as non-root is a bad idea.
                   1203:        #
1.202     sketch   1204:        if ${do_install} && [ "$id_u" -ne 0 ] ; then
1.185     apb      1205:                if ${do_expertmode}; then
                   1206:                        warning "Will install as an unprivileged user."
                   1207:                else
                   1208:                        bomb "-E must be set for install as an unprivileged user."
                   1209:                fi
                   1210:        fi
                   1211:
                   1212:        # If a previous build.sh run used -U (and therefore created a
                   1213:        # METALOG file), then most subsequent build.sh runs must also
                   1214:        # use -U.  If DESTDIR is about to be removed, then don't perform
                   1215:        # this check.
                   1216:        #
                   1217:        case "${do_removedirs} ${removedirs} " in
                   1218:        true*" ${DESTDIR} "*)
                   1219:                # DESTDIR is about to be removed
                   1220:                ;;
                   1221:        *)
                   1222:                if ( ${do_build} || ${do_distribution} || ${do_release} || \
                   1223:                    ${do_install} ) && \
                   1224:                    [ -e "${DESTDIR}/METALOG" ] && \
                   1225:                    [ "${MKUNPRIVED}" = "no" ] ; then
                   1226:                        if $do_expertmode; then
                   1227:                                warning "A previous build.sh run specified -U."
                   1228:                        else
                   1229:                                bomb "A previous build.sh run specified -U; you must specify it again now."
                   1230:                        fi
                   1231:                fi
                   1232:                ;;
                   1233:        esac
1.84      lukem    1234: }
1.30      jmc      1235:
1.15      tv       1236:
1.84      lukem    1237: createmakewrapper()
                   1238: {
                   1239:        # Remove the target directories.
                   1240:        #
1.98      lukem    1241:        if ${do_removedirs}; then
                   1242:                for f in ${removedirs}; do
                   1243:                        statusmsg "Removing ${f}"
                   1244:                        ${runcmd} rm -r -f "${f}"
1.84      lukem    1245:                done
                   1246:        fi
1.15      tv       1247:
1.84      lukem    1248:        # Recreate $TOOLDIR.
                   1249:        #
1.98      lukem    1250:        ${runcmd} mkdir -p "${TOOLDIR}/bin" ||
                   1251:            bomb "mkdir of '${TOOLDIR}/bin' failed"
1.84      lukem    1252:
1.214   ! apb      1253:        # If we did not previously rebuild ${toolprefix}make, then
        !          1254:        # check whether $make is still valid and the same as the output
        !          1255:        # from print_tooldir_make.  If not, then rebuild make now.  A
        !          1256:        # possible reason for this being necessary is that the actual
        !          1257:        # value of TOOLDIR might be different from the value guessed
        !          1258:        # before the top level obj dir was created.
        !          1259:        #
        !          1260:        if ! ${done_rebuildmake} && \
        !          1261:            ( [ ! -x "$make" ] || [ "$make" != "$(print_tooldir_make)" ] )
        !          1262:        then
        !          1263:                rebuildmake
        !          1264:        fi
        !          1265:
1.84      lukem    1266:        # Install ${toolprefix}make if it was built.
                   1267:        #
1.211     apb      1268:        if ${done_rebuildmake}; then
1.98      lukem    1269:                ${runcmd} rm -f "${TOOLDIR}/bin/${toolprefix}make"
                   1270:                ${runcmd} cp "${make}" "${TOOLDIR}/bin/${toolprefix}make" ||
                   1271:                    bomb "Failed to install \$TOOLDIR/bin/${toolprefix}make"
                   1272:                make="${TOOLDIR}/bin/${toolprefix}make"
                   1273:                statusmsg "Created ${make}"
1.84      lukem    1274:        fi
1.15      tv       1275:
1.84      lukem    1276:        # Build a ${toolprefix}make wrapper script, usable by hand as
                   1277:        # well as by build.sh.
                   1278:        #
1.98      lukem    1279:        if [ -z "${makewrapper}" ]; then
1.102     lukem    1280:                makewrapper="${TOOLDIR}/bin/${toolprefix}make-${makewrappermachine:-${MACHINE}}"
1.98      lukem    1281:                [ -z "${BUILDID}" ] || makewrapper="${makewrapper}-${BUILDID}"
1.52      thorpej  1282:        fi
1.4       tv       1283:
1.98      lukem    1284:        ${runcmd} rm -f "${makewrapper}"
                   1285:        if [ "${runcmd}" = "echo" ]; then
                   1286:                echo 'cat <<EOF >'${makewrapper}
1.84      lukem    1287:                makewrapout=
                   1288:        else
1.98      lukem    1289:                makewrapout=">>\${makewrapper}"
1.84      lukem    1290:        fi
1.18      tv       1291:
1.139     isaki    1292:        case "${KSH_VERSION:-${SH_VERSION}}" in
1.149     jnemeth  1293:        *PD\ KSH*|*MIRBSD\ KSH*)
1.135     isaki    1294:                set +o braceexpand
                   1295:                ;;
                   1296:        esac
                   1297:
1.98      lukem    1298:        eval cat <<EOF ${makewrapout}
1.153     apb      1299: #! ${HOST_SH}
1.4       tv       1300: # Set proper variables to allow easy "make" building of a NetBSD subtree.
1.214   ! apb      1301: # Generated from:  \$NetBSD: build.sh,v 1.213 2009/09/27 22:02:41 apb Exp $
1.130     jmc      1302: # with these arguments: ${_args}
1.4       tv       1303: #
1.177     uebayasi 1304:
1.18      tv       1305: EOF
1.177     uebayasi 1306:        {
                   1307:                for f in ${makeenv}; do
                   1308:                        if eval "[ -z \"\${$f}\" -a \"\${${f}-X}\" = \"X\" ]"; then
                   1309:                                eval echo "unset ${f}"
                   1310:                        else
                   1311:                                eval echo "${f}=\'\$$(echo ${f})\'\;\ export\ ${f}"
                   1312:                        fi
                   1313:                done
1.18      tv       1314:
1.177     uebayasi 1315:                eval cat <<EOF
1.154     dyoung   1316: MAKEWRAPPERMACHINE=${makewrappermachine:-${MACHINE}}; export MAKEWRAPPERMACHINE
                   1317: USETOOLS=yes; export USETOOLS
1.177     uebayasi 1318: EOF
                   1319:        } | eval sort -u "${makewrapout}"
1.178     uebayasi 1320:        eval cat <<EOF "${makewrapout}"
1.18      tv       1321:
1.98      lukem    1322: exec "\${TOOLDIR}/bin/${toolprefix}make" \${1+"\$@"}
1.4       tv       1323: EOF
1.98      lukem    1324:        [ "${runcmd}" = "echo" ] && echo EOF
                   1325:        ${runcmd} chmod +x "${makewrapper}"
1.105     lukem    1326:        statusmsg "makewrapper:      ${makewrapper}"
1.98      lukem    1327:        statusmsg "Updated ${makewrapper}"
1.84      lukem    1328: }
                   1329:
1.203     lukem    1330: make_in_dir()
                   1331: {
                   1332:        dir="$1"
                   1333:        op="$2"
                   1334:        ${runcmd} cd "${dir}" ||
                   1335:            bomb "Failed to cd to \"${dir}\""
                   1336:        ${runcmd} "${makewrapper}" ${parallel} ${op} ||
                   1337:            bomb "Failed to make ${op} in \"${dir}\""
                   1338:        ${runcmd} cd "${TOP}" ||
                   1339:            bomb "Failed to cd back to \"${TOP}\""
                   1340: }
                   1341:
1.84      lukem    1342: buildtools()
                   1343: {
1.98      lukem    1344:        if [ "${MKOBJDIRS}" != "no" ]; then
                   1345:                ${runcmd} "${makewrapper}" ${parallel} obj-tools ||
                   1346:                    bomb "Failed to make obj-tools"
1.84      lukem    1347:        fi
1.124     lukem    1348:        if [ "${MKUPDATE}" = "no" ]; then
1.203     lukem    1349:                make_in_dir tools cleandir
1.84      lukem    1350:        fi
1.203     lukem    1351:        make_in_dir tools dependall
                   1352:        make_in_dir tools install
1.98      lukem    1353:        statusmsg "Tools built to ${TOOLDIR}"
1.84      lukem    1354: }
1.4       tv       1355:
1.105     lukem    1356: getkernelconf()
1.84      lukem    1357: {
1.105     lukem    1358:        kernelconf="$1"
1.114     lukem    1359:        if [ "${MKOBJDIRS}" != "no" ]; then
1.84      lukem    1360:                # The correct value of KERNOBJDIR might
                   1361:                # depend on a prior "make obj" in
                   1362:                # ${KERNSRCDIR}/${KERNARCHDIR}/compile.
                   1363:                #
1.98      lukem    1364:                KERNSRCDIR="$(getmakevar KERNSRCDIR)"
                   1365:                KERNARCHDIR="$(getmakevar KERNARCHDIR)"
1.203     lukem    1366:                make_in_dir "${KERNSRCDIR}/${KERNARCHDIR}/compile" obj
1.84      lukem    1367:        fi
1.98      lukem    1368:        KERNCONFDIR="$(getmakevar KERNCONFDIR)"
                   1369:        KERNOBJDIR="$(getmakevar KERNOBJDIR)"
1.105     lukem    1370:        case "${kernelconf}" in
1.84      lukem    1371:        */*)
1.105     lukem    1372:                kernelconfpath="${kernelconf}"
                   1373:                kernelconfname="${kernelconf##*/}"
1.84      lukem    1374:                ;;
                   1375:        *)
1.105     lukem    1376:                kernelconfpath="${KERNCONFDIR}/${kernelconf}"
                   1377:                kernelconfname="${kernelconf}"
1.84      lukem    1378:                ;;
                   1379:        esac
1.105     lukem    1380:        kernelbuildpath="${KERNOBJDIR}/${kernelconfname}"
                   1381: }
                   1382:
                   1383: buildkernel()
                   1384: {
                   1385:        if ! ${do_tools} && ! ${buildkernelwarned:-false}; then
                   1386:                # Building tools every time we build a kernel is clearly
                   1387:                # unnecessary.  We could try to figure out whether rebuilding
                   1388:                # the tools is necessary this time, but it doesn't seem worth
                   1389:                # the trouble.  Instead, we say it's the user's responsibility
                   1390:                # to rebuild the tools if necessary.
                   1391:                #
                   1392:                statusmsg "Building kernel without building new tools"
                   1393:                buildkernelwarned=true
                   1394:        fi
                   1395:        getkernelconf $1
                   1396:        statusmsg "Building kernel:  ${kernelconf}"
                   1397:        statusmsg "Build directory:  ${kernelbuildpath}"
                   1398:        ${runcmd} mkdir -p "${kernelbuildpath}" ||
                   1399:            bomb "Cannot mkdir: ${kernelbuildpath}"
1.124     lukem    1400:        if [ "${MKUPDATE}" = "no" ]; then
1.203     lukem    1401:                make_in_dir "${kernelbuildpath}" cleandir
1.16      thorpej  1402:        fi
1.157     rillig   1403:        [ -x "${TOOLDIR}/bin/${toolprefix}config" ] \
                   1404:        || bomb "${TOOLDIR}/bin/${toolprefix}config does not exist. You need to \"$0 tools\" first."
1.105     lukem    1405:        ${runcmd} "${TOOLDIR}/bin/${toolprefix}config" -b "${kernelbuildpath}" \
                   1406:                -s "${TOP}/sys" "${kernelconfpath}" ||
                   1407:            bomb "${toolprefix}config failed for ${kernelconf}"
1.203     lukem    1408:        make_in_dir "${kernelbuildpath}" depend
                   1409:        make_in_dir "${kernelbuildpath}" all
1.91      lukem    1410:
1.98      lukem    1411:        if [ "${runcmd}" != "echo" ]; then
1.105     lukem    1412:                statusmsg "Kernels built from ${kernelconf}:"
                   1413:                kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
1.91      lukem    1414:                for kern in ${kernlist:-netbsd}; do
1.105     lukem    1415:                        [ -f "${kernelbuildpath}/${kern}" ] && \
                   1416:                            echo "  ${kernelbuildpath}/${kern}"
1.98      lukem    1417:                done | tee -a "${results}"
1.91      lukem    1418:        fi
1.84      lukem    1419: }
                   1420:
1.105     lukem    1421: releasekernel()
                   1422: {
                   1423:        getkernelconf $1
1.186     lukem    1424:        kernelreldir="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel"
1.105     lukem    1425:        ${runcmd} mkdir -p "${kernelreldir}"
                   1426:        kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
                   1427:        for kern in ${kernlist:-netbsd}; do
                   1428:                builtkern="${kernelbuildpath}/${kern}"
                   1429:                [ -f "${builtkern}" ] || continue
                   1430:                releasekern="${kernelreldir}/${kern}-${kernelconfname}.gz"
                   1431:                statusmsg "Kernel copy:      ${releasekern}"
1.196     lukem    1432:                if [ "${runcmd}" = "echo" ]; then
                   1433:                        echo "gzip -c -9 < ${builtkern} > ${releasekern}"
                   1434:                else
                   1435:                        gzip -c -9 < "${builtkern}" > "${releasekern}"
                   1436:                fi
1.105     lukem    1437:        done
                   1438: }
                   1439:
1.207     jnemeth  1440: buildmodules()
                   1441: {
                   1442:        if ! ${do_tools} && ! ${buildmoduleswarned:-false}; then
                   1443:                # Building tools every time we build modules is clearly
                   1444:                # unnecessary as well as a kernel.
                   1445:                #
                   1446:                statusmsg "Building modules without building new tools"
                   1447:                buildmoduleswarned=true
                   1448:        fi
                   1449:
                   1450:        statusmsg "Building kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}"
                   1451:        if [ "${MKOBJDIRS}" != "no" ]; then
                   1452:                make_in_dir sys/modules obj ||
                   1453:                    bomb "Failed to make obj in sys/modules"
                   1454:        fi
                   1455:        if [ "${MKUPDATE}" = "no" ]; then
                   1456:                make_in_dir sys/modules cleandir
                   1457:        fi
                   1458:        ${runcmd} "${makewrapper}" ${parallel} do-sys-modules ||
                   1459:            bomb "Failed to make do-sys-modules"
                   1460:
                   1461:        statusmsg "Successful build kernel modules for NetBSD/${MACHINE} ${DISTRIBVER}"
                   1462: }
                   1463:
1.84      lukem    1464: installworld()
                   1465: {
                   1466:        dir="$1"
1.98      lukem    1467:        ${runcmd} "${makewrapper}" INSTALLWORLDDIR="${dir}" installworld ||
                   1468:            bomb "Failed to make installworld to ${dir}"
                   1469:        statusmsg "Successful installworld to ${dir}"
1.84      lukem    1470: }
                   1471:
                   1472:
                   1473: main()
                   1474: {
                   1475:        initdefaults
1.130     jmc      1476:        _args=$@
1.84      lukem    1477:        parseoptions "$@"
1.93      lukem    1478:
1.163     apb      1479:        sanitycheck
                   1480:
1.93      lukem    1481:        build_start=$(date)
1.98      lukem    1482:        statusmsg "${progname} command: $0 $@"
                   1483:        statusmsg "${progname} started: ${build_start}"
1.165     apb      1484:        statusmsg "NetBSD version:   ${DISTRIBVER}"
                   1485:        statusmsg "MACHINE:          ${MACHINE}"
                   1486:        statusmsg "MACHINE_ARCH:     ${MACHINE_ARCH}"
                   1487:        statusmsg "Build platform:   ${uname_s} ${uname_r} ${uname_m}"
1.153     apb      1488:        statusmsg "HOST_SH:          ${HOST_SH}"
                   1489:
1.84      lukem    1490:        rebuildmake
                   1491:        validatemakeparams
                   1492:        createmakewrapper
                   1493:
                   1494:        # Perform the operations.
                   1495:        #
1.98      lukem    1496:        for op in ${operations}; do
                   1497:                case "${op}" in
1.86      lukem    1498:
                   1499:                makewrapper)
                   1500:                        # no-op
                   1501:                        ;;
1.84      lukem    1502:
                   1503:                tools)
                   1504:                        buildtools
                   1505:                        ;;
                   1506:
1.125     lukem    1507:                sets)
                   1508:                        statusmsg "Building sets from pre-populated ${DESTDIR}"
                   1509:                        ${runcmd} "${makewrapper}" ${parallel} ${op} ||
                   1510:                            bomb "Failed to make ${op}"
1.186     lukem    1511:                        setdir=${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets
                   1512:                        statusmsg "Built sets to ${setdir}"
1.125     lukem    1513:                        ;;
1.142     apb      1514:
1.195     lukem    1515:                cleandir|obj|build|distribution|release|sourcesets|syspkgs|params)
1.98      lukem    1516:                        ${runcmd} "${makewrapper}" ${parallel} ${op} ||
                   1517:                            bomb "Failed to make ${op}"
                   1518:                        statusmsg "Successful make ${op}"
1.84      lukem    1519:                        ;;
                   1520:
1.173     jnemeth  1521:                iso-image|iso-image-source)
                   1522:                        ${runcmd} "${makewrapper}" ${parallel} \
1.209     apb      1523:                            CDEXTRA="$CDEXTRA" ${op} ||
1.173     jnemeth  1524:                            bomb "Failed to make ${op}"
                   1525:                        statusmsg "Successful make ${op}"
                   1526:                        ;;
                   1527:
1.84      lukem    1528:                kernel=*)
                   1529:                        arg=${op#*=}
                   1530:                        buildkernel "${arg}"
1.105     lukem    1531:                        ;;
                   1532:
                   1533:                releasekernel=*)
                   1534:                        arg=${op#*=}
                   1535:                        releasekernel "${arg}"
1.84      lukem    1536:                        ;;
                   1537:
1.207     jnemeth  1538:                modules)
                   1539:                        buildmodules
                   1540:                        ;;
                   1541:
1.84      lukem    1542:                install=*)
                   1543:                        arg=${op#*=}
1.85      lukem    1544:                        if [ "${arg}" = "/" ] && \
                   1545:                            (   [ "${uname_s}" != "NetBSD" ] || \
1.98      lukem    1546:                                [ "${uname_m}" != "${MACHINE}" ] ); then
1.85      lukem    1547:                                bomb "'${op}' must != / for cross builds."
                   1548:                        fi
1.84      lukem    1549:                        installworld "${arg}"
1.70      lukem    1550:                        ;;
1.84      lukem    1551:
1.70      lukem    1552:                *)
1.84      lukem    1553:                        bomb "Unknown operation \`${op}'"
1.70      lukem    1554:                        ;;
1.84      lukem    1555:
1.70      lukem    1556:                esac
1.84      lukem    1557:        done
1.93      lukem    1558:
1.98      lukem    1559:        statusmsg "${progname} ended:   $(date)"
                   1560:        if [ -s "${results}" ]; then
                   1561:                echo "===> Summary of results:"
                   1562:                sed -e 's/^===>//;s/^/  /' "${results}"
                   1563:                echo "===> ."
                   1564:        fi
1.84      lukem    1565: }
                   1566:
                   1567: main "$@"

CVSweb <webmaster@jp.NetBSD.org>