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

Annotation of src/build.sh, Revision 1.160

1.67      thorpej     1: #! /usr/bin/env sh
1.160   ! matt        2: #      $NetBSD: build.sh,v 1.159 2007/01/28 20:15:44 matt Exp $
1.84      lukem       3: #
1.136     lukem       4: # Copyright (c) 2001-2005 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: # 3. All advertising materials mentioning features or use of this software
                     19: #    must display the following acknowledgement:
                     20: #        This product includes software developed by the NetBSD
                     21: #        Foundation, Inc. and its contributors.
                     22: # 4. Neither the name of The NetBSD Foundation nor the names of its
                     23: #    contributors may be used to endorse or promote products derived
                     24: #    from this software without specific prior written permission.
                     25: #
                     26: # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
                     27: # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
                     28: # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
                     29: # PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
                     30: # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
                     31: # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
                     32: # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
                     33: # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
                     34: # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
                     35: # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
                     36: # POSSIBILITY OF SUCH DAMAGE.
                     37: #
1.1       tv         38: #
                     39: # Top level build wrapper, for a system containing no tools.
                     40: #
1.153     apb        41: # This script should run on any POSIX-compliant shell.  If the
                     42: # first "sh" found in the PATH is a POSIX-compliant shell, then
                     43: # you should not need to take any special action.  Otherwise, you
                     44: # should set the environment variable HOST_SH to a POSIX-compliant
                     45: # shell, and invoke build.sh with that shell.  (Depending on your
                     46: # system, one of /bin/ksh, /usr/local/bin/bash, or /usr/xpg4/bin/sh
                     47: # might be a suitable shell.)
1.67      thorpej    48: #
1.1       tv         49:
1.84      lukem      50: progname=${0##*/}
                     51: toppid=$$
1.98      lukem      52: results=/dev/null
1.82      lukem      53: trap "exit 1" 1 2 3 15
1.84      lukem      54:
1.79      lukem      55: bomb()
                     56: {
1.82      lukem      57:        cat >&2 <<ERRORMESSAGE
                     58:
                     59: ERROR: $@
                     60: *** BUILD ABORTED ***
                     61: ERRORMESSAGE
1.98      lukem      62:        kill ${toppid}          # in case we were invoked from a subshell
1.1       tv         63:        exit 1
                     64: }
1.78      lukem      65:
1.84      lukem      66:
1.98      lukem      67: statusmsg()
                     68: {
                     69:        ${runcmd} echo "===> $@" | tee -a "${results}"
                     70: }
                     71:
1.153     apb        72: # Find a program in the PATH
                     73: find_in_PATH()
                     74: {
                     75:        local prog="$1"
                     76:        local oldIFS="${IFS}"
                     77:        local dir
                     78:        IFS=":"
                     79:        for dir in ${PATH}; do
                     80:                if [ -x "${dir}/${prog}" ]; then
                     81:                        prog="${dir}/${prog}"
                     82:                        break
                     83:                fi
                     84:        done
                     85:        IFS="${oldIFS}"
                     86:        echo "${prog}"
                     87: }
                     88:
                     89: # Try to find a working POSIX shell, and set HOST_SH to refer to it.
                     90: # Assumes that uname_s, uname_m, and PWD have been set.
                     91: set_HOST_SH()
                     92: {
                     93:        # Even if ${HOST_SH} is already defined, we still do the
                     94:        # sanity checks at the end.
                     95:
                     96:        # Solaris has /usr/xpg4/bin/sh.
                     97:        #
                     98:        [ -z "${HOST_SH}" ] && [ x"${uname_s}" = x"SunOS" ] && \
                     99:                [ -x /usr/xpg4/bin/sh ] && HOST_SH="/usr/xpg4/bin/sh"
                    100:
                    101:        # Try to get the name of the shell that's running this script,
                    102:        # by parsing the output from "ps".  We assume that, if the host
                    103:        # system's ps command supports -o comm at all, it will do so
                    104:        # in the usual way: a one-line header followed by a one-line
                    105:        # result, possibly including trailing white space.  And if the
                    106:        # host system's ps command doesn't support -o comm, we assume
                    107:        # that we'll get an error message on stderr and nothing on
                    108:        # stdout.  (We don't try to use ps -o 'comm=' to suppress the
                    109:        # header line, because that is less widely supported.)
                    110:        #
                    111:        # If we get the wrong result here, the user can override it by
                    112:        # specifying HOST_SH in the environment.
                    113:        #
                    114:        [ -z "${HOST_SH}" ] && HOST_SH="$(
                    115:                (ps -p $$ -o comm | sed -ne '2s/[ \t]*$//p') 2>/dev/null )"
                    116:
                    117:        # If nothing above worked, use "sh".  We will later find the
                    118:        # first directory in the PATH that has a "sh" program.
                    119:        #
                    120:        [ -z "${HOST_SH}" ] && HOST_SH="sh"
                    121:
                    122:        # If the result so far is not an absolute path, try to prepend
                    123:        # PWD or search the PATH.
                    124:        #
                    125:        case "${HOST_SH}" in
                    126:        /*)     :
                    127:                ;;
                    128:        */*)    HOST_SH="${PWD}/${HOST_SH}"
                    129:                ;;
                    130:        *)      HOST_SH="$(find_in_PATH "${HOST_SH}")"
                    131:                ;;
                    132:        esac
                    133:
                    134:        # If we don't have an absolute path by now, bomb.
                    135:        #
                    136:        case "${HOST_SH}" in
                    137:        /*)     :
                    138:                ;;
                    139:        *)      bomb "HOST_SH=\"${HOST_SH}\" is not an absolute path."
                    140:                ;;
                    141:        esac
                    142:
                    143:        # If HOST_SH is not executable, bomb.
                    144:        #
                    145:        [ -x "${HOST_SH}" ] ||
                    146:            bomb "HOST_SH=\"${HOST_SH}\" is not executable."
                    147: }
                    148:
1.84      lukem     149: initdefaults()
                    150: {
1.156     dsl       151:        [ -d usr.bin/make ] || cd "$(dirname $0)"
1.84      lukem     152:        [ -d usr.bin/make ] ||
                    153:            bomb "build.sh must be run from the top source level"
                    154:        [ -f share/mk/bsd.own.mk ] ||
                    155:            bomb "src/share/mk is missing; please re-fetch the source tree"
                    156:
                    157:        uname_s=$(uname -s 2>/dev/null)
                    158:        uname_m=$(uname -m 2>/dev/null)
                    159:
                    160:        # If $PWD is a valid name of the current directory, POSIX mandates
                    161:        # that pwd return it by default which causes problems in the
                    162:        # presence of symlinks.  Unsetting PWD is simpler than changing
                    163:        # every occurrence of pwd to use -P.
                    164:        #
1.147     dogcow    165:        # XXX Except that doesn't work on Solaris. Or many Linuces.
1.98      lukem     166:        #
1.84      lukem     167:        unset PWD
1.147     dogcow    168:        TOP=$(/bin/pwd -P 2>/dev/null || /bin/pwd 2>/dev/null)
1.84      lukem     169:
1.153     apb       170:        # The user can set HOST_SH in the environment, or we try to
                    171:        # guess an appropriate value.  Then we set several other
                    172:        # variables from HOST_SH.
                    173:        #
                    174:        set_HOST_SH
                    175:        setmakeenv HOST_SH "${HOST_SH}"
                    176:        setmakeenv BSHELL "${HOST_SH}"
                    177:        setmakeenv CONFIG_SHELL "${HOST_SH}"
                    178:
1.84      lukem     179:        # Set defaults.
1.98      lukem     180:        #
1.84      lukem     181:        toolprefix=nb
1.98      lukem     182:
1.95      thorpej   183:        # Some systems have a small ARG_MAX.  -X prevents make(1) from
                    184:        # exporting variables in the environment redundantly.
1.98      lukem     185:        #
1.95      thorpej   186:        case "${uname_s}" in
1.97      christos  187:        Darwin | FreeBSD | CYGWIN*)
1.95      thorpej   188:                MAKEFLAGS=-X
                    189:                ;;
                    190:        *)
                    191:                MAKEFLAGS=
                    192:                ;;
                    193:        esac
1.98      lukem     194:
1.84      lukem     195:        makeenv=
                    196:        makewrapper=
1.102     lukem     197:        makewrappermachine=
1.84      lukem     198:        runcmd=
                    199:        operations=
                    200:        removedirs=
                    201:        do_expertmode=false
                    202:        do_rebuildmake=false
                    203:        do_removedirs=false
                    204:
                    205:        # do_{operation}=true if given operation is requested.
                    206:        #
                    207:        do_tools=false
                    208:        do_obj=false
                    209:        do_build=false
                    210:        do_distribution=false
                    211:        do_release=false
                    212:        do_kernel=false
1.105     lukem     213:        do_releasekernel=false
1.84      lukem     214:        do_install=false
1.87      lukem     215:        do_sets=false
1.100     lukem     216:        do_sourcesets=false
1.142     apb       217:        do_syspkgs=false
1.146     apb       218:        do_iso_image=false
1.107     lukem     219:        do_params=false
1.98      lukem     220:
                    221:        # Create scratch directory
                    222:        #
                    223:        tmpdir="${TMPDIR-/tmp}/nbbuild$$"
                    224:        mkdir "${tmpdir}" || bomb "Cannot mkdir: ${tmpdir}"
                    225:        trap "cd /; rm -r -f \"${tmpdir}\"" 0
                    226:        results="${tmpdir}/build.sh.results"
1.116     jmmv      227:
                    228:        # Set source directories
                    229:        #
                    230:        setmakeenv NETBSDSRCDIR "${TOP}"
1.136     lukem     231:
                    232:        # Set various environment variables to known defaults,
                    233:        # to minimize (cross-)build problems observed "in the field".
                    234:        #
                    235:        unsetmakeenv INFODIR
1.140     jmc       236:        unsetmakeenv LESSCHARSET
1.136     lukem     237:        setmakeenv LC_ALL C
1.84      lukem     238: }
1.29      jmc       239:
1.79      lukem     240: getarch()
                    241: {
1.158     apb       242:        # Translate some MACHINE name aliases (known only to build.sh)
                    243:        # into proper MACHINE and MACHINE_ARCH names.  Save the alias
                    244:        # name in makewrappermachine.
                    245:        #
                    246:        case "${MACHINE}" in
                    247:
                    248:        evbarm-e[bl])
                    249:                makewrappermachine=${MACHINE}
                    250:                # MACHINE_ARCH is "arm" or "armeb", not "armel"
                    251:                MACHINE_ARCH=arm${MACHINE##*-}
                    252:                MACHINE_ARCH=${MACHINE_ARCH%el}
                    253:                MACHINE=${MACHINE%-e[bl]}
                    254:                ;;
                    255:
                    256:        evbmips-e[bl]|sbmips-e[bl])
                    257:                makewrappermachine=${MACHINE}
                    258:                MACHINE_ARCH=mips${MACHINE##*-}
                    259:                MACHINE=${MACHINE%-e[bl]}
                    260:                ;;
                    261:
                    262:        evbmips64-e[bl]|sbmips64-e[bl])
                    263:                makewrappermachine=${MACHINE}
                    264:                MACHINE_ARCH=mips64${MACHINE##*-}
                    265:                MACHINE=${MACHINE%64-e[bl]}
                    266:                ;;
                    267:
                    268:        evbsh3-e[bl])
                    269:                makewrappermachine=${MACHINE}
                    270:                MACHINE_ARCH=sh3${MACHINE##*-}
                    271:                MACHINE=${MACHINE%-e[bl]}
                    272:                ;;
                    273:
                    274:        esac
                    275:
1.1       tv        276:        # Translate a MACHINE into a default MACHINE_ARCH.
1.84      lukem     277:        #
1.98      lukem     278:        case "${MACHINE}" in
1.1       tv        279:
1.155     ober      280:        acorn26|acorn32|cats|evbarm|hpcarm|iyonix|netwinder|shark|zaurus)
1.84      lukem     281:                MACHINE_ARCH=arm
                    282:                ;;
                    283:
1.98      lukem     284:        hp700)
                    285:                MACHINE_ARCH=hppa
                    286:                ;;
                    287:
1.84      lukem     288:        sun2)
                    289:                MACHINE_ARCH=m68000
                    290:                ;;
                    291:
1.98      lukem     292:        amiga|atari|cesfic|hp300|luna68k|mac68k|mvme68k|news68k|next68k|sun3|x68k)
1.84      lukem     293:                MACHINE_ARCH=m68k
                    294:                ;;
1.1       tv        295:
1.101     lukem     296:        evbmips|sbmips)         # no default MACHINE_ARCH
                    297:                ;;
                    298:
1.141     tsutsui   299:        ews4800mips|mipsco|newsmips|sgimips)
1.84      lukem     300:                MACHINE_ARCH=mipseb
                    301:                ;;
1.1       tv        302:
1.101     lukem     303:        algor|arc|cobalt|hpcmips|playstation2|pmax)
1.84      lukem     304:                MACHINE_ARCH=mipsel
                    305:                ;;
1.1       tv        306:
1.84      lukem     307:        pc532)
                    308:                MACHINE_ARCH=ns32k
                    309:                ;;
1.1       tv        310:
1.160   ! matt      311:        evbppc64|macppc64)
        !           312:                makewrappermachine=${MACHINE}
        !           313:                MACHINE=${MACHINE%64}
        !           314:                MACHINE_ARCH=powerpc64
        !           315:                ;;
        !           316:
1.118     matt      317:        amigappc|bebox|evbppc|ibmnws|macppc|mvmeppc|ofppc|pmppc|prep|sandpoint)
1.84      lukem     318:                MACHINE_ARCH=powerpc
                    319:                ;;
1.1       tv        320:
1.103     lukem     321:        evbsh3)                 # no default MACHINE_ARCH
                    322:                ;;
                    323:
                    324:        mmeye)
1.84      lukem     325:                MACHINE_ARCH=sh3eb
                    326:                ;;
1.1       tv        327:
1.152     uwe       328:        dreamcast|hpcsh|landisk)
1.84      lukem     329:                MACHINE_ARCH=sh3el
                    330:                ;;
1.1       tv        331:
1.84      lukem     332:        evbsh5)
                    333:                MACHINE_ARCH=sh5el
                    334:                ;;
1.96      fvdl      335:        amd64)
                    336:                MACHINE_ARCH=x86_64
                    337:                ;;
1.62      fredette  338:
1.138     skrll     339:        alpha|i386|sparc|sparc64|vax|ia64)
1.98      lukem     340:                MACHINE_ARCH=${MACHINE}
1.84      lukem     341:                ;;
1.69      thorpej   342:
1.84      lukem     343:        *)
1.98      lukem     344:                bomb "Unknown target MACHINE: ${MACHINE}"
1.84      lukem     345:                ;;
1.4       tv        346:
1.1       tv        347:        esac
                    348: }
                    349:
1.79      lukem     350: validatearch()
                    351: {
1.47      tv        352:        # Ensure that the MACHINE_ARCH exists (and is supported by build.sh).
1.84      lukem     353:        #
1.98      lukem     354:        case "${MACHINE_ARCH}" in
1.47      tv        355:
1.150     matt      356:        alpha|arm|armeb|hppa|i386|m68000|m68k|mipse[bl]|mips64e[bl]|ns32k|powerpc|powerpc64|sh[35]e[bl]|sparc|sparc64|vax|x86_64|ia64)
1.84      lukem     357:                ;;
                    358:
1.101     lukem     359:        "")
                    360:                bomb "No MACHINE_ARCH provided"
                    361:                ;;
                    362:
1.84      lukem     363:        *)
1.98      lukem     364:                bomb "Unknown target MACHINE_ARCH: ${MACHINE_ARCH}"
                    365:                ;;
                    366:
                    367:        esac
                    368:
                    369:        # Determine valid MACHINE_ARCHs for MACHINE
                    370:        #
                    371:        case "${MACHINE}" in
                    372:
                    373:        evbarm)
                    374:                arches="arm armeb"
                    375:                ;;
                    376:
                    377:        evbmips|sbmips)
1.150     matt      378:                arches="mipseb mipsel mips64eb mips64el"
                    379:                ;;
                    380:
                    381:        sgimips)
                    382:                arches="mipseb mips64eb"
1.98      lukem     383:                ;;
                    384:
                    385:        evbsh3)
                    386:                arches="sh3eb sh3el"
                    387:                ;;
                    388:
                    389:        evbsh5)
                    390:                arches="sh5eb sh5el"
                    391:                ;;
                    392:
1.148     mrg       393:        macppc|evbppc)
                    394:                arches="powerpc powerpc64"
                    395:                ;;
1.98      lukem     396:        *)
                    397:                oma="${MACHINE_ARCH}"
                    398:                getarch
                    399:                arches="${MACHINE_ARCH}"
                    400:                MACHINE_ARCH="${oma}"
1.84      lukem     401:                ;;
                    402:
1.47      tv        403:        esac
1.98      lukem     404:
                    405:        # Ensure that MACHINE_ARCH supports MACHINE
                    406:        #
                    407:        archok=false
                    408:        for a in ${arches}; do
                    409:                if [ "${a}" = "${MACHINE_ARCH}" ]; then
                    410:                        archok=true
                    411:                        break
                    412:                fi
                    413:        done
                    414:        ${archok} ||
                    415:            bomb "MACHINE_ARCH '${MACHINE_ARCH}' does not support MACHINE '${MACHINE}'"
1.47      tv        416: }
                    417:
1.98      lukem     418: raw_getmakevar()
1.79      lukem     419: {
1.98      lukem     420:        [ -x "${make}" ] || bomb "raw_getmakevar $1: ${make} is not executable"
1.156     dsl       421:        "${make}" -m ${TOP}/share/mk -s -f- _x_ <<EOF || bomb "raw_getmakevar $1: ${make} failed"
1.15      tv        422: _x_:
                    423:        echo \${$1}
                    424: .include <bsd.prog.mk>
1.70      lukem     425: .include <bsd.kernobj.mk>
1.15      tv        426: EOF
                    427: }
                    428:
1.98      lukem     429: getmakevar()
1.82      lukem     430: {
1.98      lukem     431:        # raw_getmakevar() doesn't work properly if $make hasn't yet been
                    432:        # built, which can happen when running with the "-n" option.
                    433:        # getmakevar() deals with this by emitting a literal '$'
1.84      lukem     434:        # followed by the variable name, instead of trying to find the
                    435:        # variable's value.
                    436:        #
1.98      lukem     437:        if [ -x "${make}" ]; then
                    438:                raw_getmakevar "$1"
1.82      lukem     439:        else
                    440:                echo "\$$1"
                    441:        fi
                    442: }
                    443:
1.109     lukem     444: setmakeenv()
                    445: {
                    446:        eval "$1='$2'; export $1"
                    447:        makeenv="${makeenv} $1"
                    448: }
                    449:
1.111     lukem     450: unsetmakeenv()
                    451: {
                    452:        eval "unset $1"
                    453:        makeenv="${makeenv} $1"
                    454: }
                    455:
1.131     junyoung  456: # Convert possibly-relative path to absolute path by prepending
                    457: # ${TOP} if necessary.  Also delete trailing "/", if any.
1.79      lukem     458: resolvepath()
                    459: {
1.98      lukem     460:        case "${OPTARG}" in
1.131     junyoung  461:        /)
                    462:                ;;
1.84      lukem     463:        /*)
1.131     junyoung  464:                OPTARG="${OPTARG%/}"
1.84      lukem     465:                ;;
                    466:        *)
1.131     junyoung  467:                OPTARG="${TOP}/${OPTARG%/}"
1.84      lukem     468:                ;;
1.10      tv        469:        esac
                    470: }
                    471:
1.79      lukem     472: usage()
                    473: {
1.84      lukem     474:        if [ -n "$*" ]; then
                    475:                echo ""
                    476:                echo "${progname}: $*"
                    477:        fi
1.70      lukem     478:        cat <<_usage_
1.83      lukem     479:
1.127     lukem     480: Usage: ${progname} [-EnorUux] [-a arch] [-B buildid] [-D dest] [-j njob]
1.119     lukem     481:                [-M obj] [-m mach] [-N noisy] [-O obj] [-R release] [-T tools]
1.127     lukem     482:                [-V var=[value]] [-w wrapper] [-X x11src] [-Z var]
                    483:                operation [...]
1.84      lukem     484:
1.86      lukem     485:  Build operations (all imply "obj" and "tools"):
1.125     lukem     486:     build               Run "make build".
                    487:     distribution        Run "make distribution" (includes DESTDIR/etc/ files).
                    488:     release             Run "make release" (includes kernels & distrib media).
1.84      lukem     489:
                    490:  Other operations:
1.125     lukem     491:     help                Show this message and exit.
1.98      lukem     492:     makewrapper         Create ${toolprefix}make-\${MACHINE} wrapper and ${toolprefix}make.
1.125     lukem     493:                         Always performed.
                    494:     obj                 Run "make obj".  [Default unless -o is used]
                    495:     tools               Build and install tools.
                    496:     install=idir        Run "make installworld" to \`idir' to install all sets
                    497:                        except \`etc'.  Useful after "distribution" or "release"
1.105     lukem     498:     kernel=conf         Build kernel with config file \`conf'
1.125     lukem     499:     releasekernel=conf  Install kernel built by kernel=conf to RELEASEDIR.
                    500:     sets                Create binary sets in RELEASEDIR/MACHINE/binary/sets.
                    501:                        DESTDIR should be populated beforehand.
                    502:     sourcesets          Create source sets in RELEASEDIR/source/sets.
1.142     apb       503:     syspkgs             Create syspkgs in RELEASEDIR/MACHINE/binary/syspkgs.
1.146     apb       504:     iso-image           Create CD-ROM image in RELEASEDIR/MACHINE/installation.
1.125     lukem     505:     params              Display various make(1) parameters.
1.84      lukem     506:
                    507:  Options:
1.125     lukem     508:     -a arch     Set MACHINE_ARCH to arch.  [Default: deduced from MACHINE]
                    509:     -B buildId  Set BUILDID to buildId.
1.119     lukem     510:     -D dest     Set DESTDIR to dest.  [Default: destdir.MACHINE]
1.98      lukem     511:     -E          Set "expert" mode; disables various safety checks.
1.127     lukem     512:                 Should not be used without expert knowledge of the build system.
1.129     wiz       513:     -h          Print this help message.
1.125     lukem     514:     -j njob     Run up to njob jobs in parallel; see make(1) -j.
                    515:     -M obj      Set obj root directory to obj; sets MAKEOBJDIRPREFIX.
1.111     lukem     516:                 Unsets MAKEOBJDIR.
1.125     lukem     517:     -m mach     Set MACHINE to mach; not required if NetBSD native.
1.126     lukem     518:     -N noisy   Set the noisyness (MAKEVERBOSE) level of the build:
1.119     lukem     519:                    0   Quiet
                    520:                    1   Operations are described, commands are suppressed
                    521:                    2   Full output
                    522:                [Default: 2]
1.125     lukem     523:     -n          Show commands that would be executed, but do not execute them.
                    524:     -O obj      Set obj root directory to obj; sets a MAKEOBJDIR pattern.
1.111     lukem     525:                 Unsets MAKEOBJDIRPREFIX.
1.125     lukem     526:     -o          Set MKOBJDIRS=no; do not create objdirs at start of build.
1.119     lukem     527:     -R release  Set RELEASEDIR to release.  [Default: releasedir]
1.125     lukem     528:     -r          Remove contents of TOOLDIR and DESTDIR before building.
1.98      lukem     529:     -T tools    Set TOOLDIR to tools.  If unset, and TOOLDIR is not set in
1.125     lukem     530:                 the environment, ${toolprefix}make will be (re)built unconditionally.
                    531:     -U          Set MKUNPRIVED=yes; build without requiring root privileges,
                    532:                install from an UNPRIVED build with proper file permissions.
                    533:     -u          Set MKUPDATE=yes; do not run "make clean" first.
1.98      lukem     534:                Without this, everything is rebuilt, including the tools.
1.125     lukem     535:     -V v=[val]  Set variable \`v' to \`val'.
                    536:     -w wrapper  Create ${toolprefix}make script as wrapper.
1.119     lukem     537:                 [Default: \${TOOLDIR}/bin/${toolprefix}make-\${MACHINE}]
1.127     lukem     538:     -X x11src   Set X11SRCDIR to x11src.  [Default: /usr/xsrc]
                    539:     -x          Set MKX11=yes; build X11R6 from X11SRCDIR
1.125     lukem     540:     -Z v        Unset ("zap") variable \`v'.
1.83      lukem     541:
1.70      lukem     542: _usage_
1.1       tv        543:        exit 1
                    544: }
                    545:
1.84      lukem     546: parseoptions()
                    547: {
1.127     lukem     548:        opts='a:B:bD:dEhi:j:k:M:m:N:nO:oR:rT:tUuV:w:xX:Z:'
1.84      lukem     549:        opt_a=no
                    550:
                    551:        if type getopts >/dev/null 2>&1; then
                    552:                # Use POSIX getopts.
1.98      lukem     553:                #
                    554:                getoptcmd='getopts ${opts} opt && opt=-${opt}'
1.84      lukem     555:                optargcmd=':'
1.98      lukem     556:                optremcmd='shift $((${OPTIND} -1))'
1.84      lukem     557:        else
                    558:                type getopt >/dev/null 2>&1 ||
                    559:                    bomb "/bin/sh shell is too old; try ksh or bash"
                    560:
                    561:                # Use old-style getopt(1) (doesn't handle whitespace in args).
1.98      lukem     562:                #
                    563:                args="$(getopt ${opts} $*)"
1.84      lukem     564:                [ $? = 0 ] || usage
1.98      lukem     565:                set -- ${args}
1.84      lukem     566:
                    567:                getoptcmd='[ $# -gt 0 ] && opt="$1" && shift'
                    568:                optargcmd='OPTARG="$1"; shift'
                    569:                optremcmd=':'
                    570:        fi
                    571:
                    572:        # Parse command line options.
                    573:        #
1.98      lukem     574:        while eval ${getoptcmd}; do
                    575:                case ${opt} in
1.84      lukem     576:
                    577:                -a)
1.98      lukem     578:                        eval ${optargcmd}
                    579:                        MACHINE_ARCH=${OPTARG}
1.84      lukem     580:                        opt_a=yes
                    581:                        ;;
                    582:
                    583:                -B)
1.98      lukem     584:                        eval ${optargcmd}
                    585:                        BUILDID=${OPTARG}
1.84      lukem     586:                        ;;
                    587:
                    588:                -b)
1.86      lukem     589:                        usage "'-b' has been replaced by 'makewrapper'"
1.84      lukem     590:                        ;;
                    591:
                    592:                -D)
1.98      lukem     593:                        eval ${optargcmd}; resolvepath
1.109     lukem     594:                        setmakeenv DESTDIR "${OPTARG}"
1.84      lukem     595:                        ;;
                    596:
                    597:                -d)
                    598:                        usage "'-d' has been replaced by 'distribution'"
                    599:                        ;;
                    600:
                    601:                -E)
                    602:                        do_expertmode=true
                    603:                        ;;
                    604:
                    605:                -i)
                    606:                        usage "'-i idir' has been replaced by 'install=idir'"
                    607:                        ;;
                    608:
                    609:                -j)
1.98      lukem     610:                        eval ${optargcmd}
                    611:                        parallel="-j ${OPTARG}"
1.84      lukem     612:                        ;;
                    613:
                    614:                -k)
                    615:                        usage "'-k conf' has been replaced by 'kernel=conf'"
                    616:                        ;;
                    617:
                    618:                -M)
1.98      lukem     619:                        eval ${optargcmd}; resolvepath
                    620:                        makeobjdir="${OPTARG}"
1.111     lukem     621:                        unsetmakeenv MAKEOBJDIR
1.109     lukem     622:                        setmakeenv MAKEOBJDIRPREFIX "${OPTARG}"
1.84      lukem     623:                        ;;
                    624:
                    625:                        # -m overrides MACHINE_ARCH unless "-a" is specified
                    626:                -m)
1.98      lukem     627:                        eval ${optargcmd}
                    628:                        MACHINE="${OPTARG}"
                    629:                        [ "${opt_a}" != "yes" ] && getarch
1.84      lukem     630:                        ;;
                    631:
1.119     lukem     632:                -N)
                    633:                        eval ${optargcmd}
                    634:                        case "${OPTARG}" in
1.121     lukem     635:                        0|1|2)
                    636:                                setmakeenv MAKEVERBOSE "${OPTARG}"
1.119     lukem     637:                                ;;
                    638:                        *)
                    639:                                usage "'${OPTARG}' is not a valid value for -N"
                    640:                                ;;
                    641:                        esac
                    642:                        ;;
                    643:
1.84      lukem     644:                -n)
                    645:                        runcmd=echo
                    646:                        ;;
                    647:
                    648:                -O)
1.98      lukem     649:                        eval ${optargcmd}; resolvepath
                    650:                        makeobjdir="${OPTARG}"
1.111     lukem     651:                        unsetmakeenv MAKEOBJDIRPREFIX
1.109     lukem     652:                        setmakeenv MAKEOBJDIR "\${.CURDIR:C,^$TOP,$OPTARG,}"
1.84      lukem     653:                        ;;
                    654:
                    655:                -o)
                    656:                        MKOBJDIRS=no
                    657:                        ;;
                    658:
                    659:                -R)
1.98      lukem     660:                        eval ${optargcmd}; resolvepath
1.109     lukem     661:                        setmakeenv RELEASEDIR "${OPTARG}"
1.84      lukem     662:                        ;;
                    663:
                    664:                -r)
                    665:                        do_removedirs=true
                    666:                        do_rebuildmake=true
                    667:                        ;;
                    668:
                    669:                -T)
1.98      lukem     670:                        eval ${optargcmd}; resolvepath
                    671:                        TOOLDIR="${OPTARG}"
1.84      lukem     672:                        export TOOLDIR
                    673:                        ;;
                    674:
                    675:                -t)
                    676:                        usage "'-t' has been replaced by 'tools'"
                    677:                        ;;
1.16      thorpej   678:
1.84      lukem     679:                -U)
1.109     lukem     680:                        setmakeenv MKUNPRIVED yes
1.84      lukem     681:                        ;;
1.44      lukem     682:
1.84      lukem     683:                -u)
1.109     lukem     684:                        setmakeenv MKUPDATE yes
1.84      lukem     685:                        ;;
1.15      tv        686:
1.84      lukem     687:                -V)
1.98      lukem     688:                        eval ${optargcmd}
1.84      lukem     689:                        case "${OPTARG}" in
1.80      lukem     690:                    # XXX: consider restricting which variables can be changed?
1.84      lukem     691:                        [a-zA-Z_][a-zA-Z_0-9]*=*)
1.109     lukem     692:                                setmakeenv "${OPTARG%%=*}" "${OPTARG#*=}"
1.84      lukem     693:                                ;;
                    694:                        *)
                    695:                                usage "-V argument must be of the form 'var=[value]'"
                    696:                                ;;
                    697:                        esac
                    698:                        ;;
                    699:
                    700:                -w)
1.98      lukem     701:                        eval ${optargcmd}; resolvepath
                    702:                        makewrapper="${OPTARG}"
1.84      lukem     703:                        ;;
                    704:
1.127     lukem     705:                -X)
                    706:                        eval ${optargcmd}; resolvepath
                    707:                        setmakeenv X11SRCDIR "${OPTARG}"
                    708:                        ;;
                    709:
                    710:                -x)
                    711:                        setmakeenv MKX11 yes
                    712:                        ;;
                    713:
1.111     lukem     714:                -Z)
                    715:                        eval ${optargcmd}
                    716:                    # XXX: consider restricting which variables can be unset?
                    717:                        unsetmakeenv "${OPTARG}"
                    718:                        ;;
                    719:
1.84      lukem     720:                --)
                    721:                        break
                    722:                        ;;
                    723:
                    724:                -'?'|-h)
                    725:                        usage
                    726:                        ;;
                    727:
                    728:                esac
                    729:        done
                    730:
                    731:        # Validate operations.
                    732:        #
1.98      lukem     733:        eval ${optremcmd}
1.84      lukem     734:        while [ $# -gt 0 ]; do
                    735:                op=$1; shift
1.98      lukem     736:                operations="${operations} ${op}"
1.84      lukem     737:
1.98      lukem     738:                case "${op}" in
1.84      lukem     739:
1.87      lukem     740:                help)
                    741:                        usage
                    742:                        ;;
                    743:
1.142     apb       744:                makewrapper|obj|tools|build|distribution|release|sets|sourcesets|syspkgs|params)
1.80      lukem     745:                        ;;
1.84      lukem     746:
1.146     apb       747:                iso-image)
                    748:                        op=iso_image    # used as part of a variable name
                    749:                        ;;
                    750:
1.105     lukem     751:                kernel=*|releasekernel=*)
1.84      lukem     752:                        arg=${op#*=}
                    753:                        op=${op%%=*}
1.98      lukem     754:                        [ -n "${arg}" ] ||
1.105     lukem     755:                            bomb "Must supply a kernel name with \`${op}=...'"
1.84      lukem     756:                        ;;
                    757:
                    758:                install=*)
                    759:                        arg=${op#*=}
                    760:                        op=${op%%=*}
1.98      lukem     761:                        [ -n "${arg}" ] ||
                    762:                            bomb "Must supply a directory with \`install=...'"
1.84      lukem     763:                        ;;
                    764:
1.80      lukem     765:                *)
1.84      lukem     766:                        usage "Unknown operation \`${op}'"
                    767:                        ;;
                    768:
1.80      lukem     769:                esac
1.98      lukem     770:                eval do_${op}=true
1.84      lukem     771:        done
1.98      lukem     772:        [ -n "${operations}" ] || usage "Missing operation to perform."
1.84      lukem     773:
                    774:        # Set up MACHINE*.  On a NetBSD host, these are allowed to be unset.
                    775:        #
1.98      lukem     776:        if [ -z "${MACHINE}" ]; then
                    777:                [ "${uname_s}" = "NetBSD" ] ||
                    778:                    bomb "MACHINE must be set, or -m must be used, for cross builds."
1.84      lukem     779:                MACHINE=${uname_m}
                    780:        fi
1.98      lukem     781:        [ -n "${MACHINE_ARCH}" ] || getarch
1.84      lukem     782:        validatearch
                    783:
                    784:        # Set up default make(1) environment.
                    785:        #
1.98      lukem     786:        makeenv="${makeenv} TOOLDIR MACHINE MACHINE_ARCH MAKEFLAGS"
                    787:        [ -z "${BUILDID}" ] || makeenv="${makeenv} BUILDID"
1.115     jmmv      788:        MAKEFLAGS="-de -m ${TOP}/share/mk ${MAKEFLAGS} MKOBJDIRS=${MKOBJDIRS-yes}"
1.84      lukem     789:        export MAKEFLAGS MACHINE MACHINE_ARCH
                    790: }
                    791:
                    792: rebuildmake()
                    793: {
                    794:        # Test make source file timestamps against installed ${toolprefix}make
                    795:        # binary, if TOOLDIR is pre-set.
                    796:        #
                    797:        # Note that we do NOT try to grovel "mk.conf" here to find out if
                    798:        # TOOLDIR is set there, because it can contain make variable
                    799:        # expansions and other stuff only parseable *after* we have a working
                    800:        # ${toolprefix}make.  So this logic can only work if the user has
                    801:        # pre-set TOOLDIR in the environment or used the -T option to build.sh.
                    802:        #
                    803:        make="${TOOLDIR-nonexistent}/bin/${toolprefix}make"
1.98      lukem     804:        if [ -x "${make}" ]; then
1.84      lukem     805:                for f in usr.bin/make/*.[ch] usr.bin/make/lst.lib/*.[ch]; do
1.98      lukem     806:                        if [ "${f}" -nt "${make}" ]; then
1.122     lukem     807:                                statusmsg "${make} outdated (older than ${f}), needs building."
1.84      lukem     808:                                do_rebuildmake=true
                    809:                                break
                    810:                        fi
                    811:                done
                    812:        else
1.122     lukem     813:                statusmsg "No ${make}, needs building."
1.84      lukem     814:                do_rebuildmake=true
                    815:        fi
                    816:
                    817:        # Build bootstrap ${toolprefix}make if needed.
1.98      lukem     818:        if ${do_rebuildmake}; then
                    819:                statusmsg "Bootstrapping ${toolprefix}make"
                    820:                ${runcmd} cd "${tmpdir}"
                    821:                ${runcmd} env CC="${HOST_CC-cc}" CPPFLAGS="${HOST_CPPFLAGS}" \
1.84      lukem     822:                        CFLAGS="${HOST_CFLAGS--O}" LDFLAGS="${HOST_LDFLAGS}" \
1.153     apb       823:                        ${HOST_SH} "${TOP}/tools/make/configure" ||
1.98      lukem     824:                    bomb "Configure of ${toolprefix}make failed"
1.153     apb       825:                ${runcmd} ${HOST_SH} buildmake.sh ||
1.98      lukem     826:                    bomb "Build of ${toolprefix}make failed"
                    827:                make="${tmpdir}/${toolprefix}make"
                    828:                ${runcmd} cd "${TOP}"
                    829:                ${runcmd} rm -f usr.bin/make/*.o usr.bin/make/lst.lib/*.o
1.84      lukem     830:        fi
                    831: }
                    832:
                    833: validatemakeparams()
                    834: {
1.98      lukem     835:        if [ "${runcmd}" = "echo" ]; then
1.84      lukem     836:                TOOLCHAIN_MISSING=no
                    837:                EXTERNAL_TOOLCHAIN=""
                    838:        else
1.98      lukem     839:                TOOLCHAIN_MISSING=$(raw_getmakevar TOOLCHAIN_MISSING)
                    840:                EXTERNAL_TOOLCHAIN=$(raw_getmakevar EXTERNAL_TOOLCHAIN)
1.84      lukem     841:        fi
                    842:        if [ "${TOOLCHAIN_MISSING}" = "yes" ] && \
1.86      lukem     843:           [ -z "${EXTERNAL_TOOLCHAIN}" ]; then
1.98      lukem     844:                ${runcmd} echo "ERROR: build.sh (in-tree cross-toolchain) is not yet available for"
                    845:                ${runcmd} echo "        MACHINE:      ${MACHINE}"
                    846:                ${runcmd} echo "        MACHINE_ARCH: ${MACHINE_ARCH}"
                    847:                ${runcmd} echo ""
                    848:                ${runcmd} echo "All builds for this platform should be done via a traditional make"
                    849:                ${runcmd} echo "If you wish to use an external cross-toolchain, set"
                    850:                ${runcmd} echo "        EXTERNAL_TOOLCHAIN=<path to toolchain root>"
                    851:                ${runcmd} echo "in either the environment or mk.conf and rerun"
                    852:                ${runcmd} echo "        ${progname} $*"
1.84      lukem     853:                exit 1
                    854:        fi
                    855:
1.120     lukem     856:        # Normalise MKOBJDIRS, MKUNPRIVED, and MKUPDATE
                    857:        # These may be set as build.sh options or in "mk.conf".
                    858:        # Don't export them as they're only used for tests in build.sh.
                    859:        #
                    860:        MKOBJDIRS=$(getmakevar MKOBJDIRS)
                    861:        MKUNPRIVED=$(getmakevar MKUNPRIVED)
                    862:        MKUPDATE=$(getmakevar MKUPDATE)
                    863:
1.106     lukem     864:        if [ "${MKOBJDIRS}" != "no" ]; then
                    865:                # If setting -M or -O to the root of an obj dir, make sure
                    866:                # the base directory is made before continuing as <bsd.own.mk>
                    867:                # will need this to pick up _SRC_TOP_OBJ_
                    868:                #
                    869:                if [ ! -z "${makeobjdir}" ]; then
                    870:                        ${runcmd} mkdir -p "${makeobjdir}"
                    871:                fi
                    872:
                    873:                # make obj in tools to ensure that the objdir for the top-level
                    874:                # of the source tree and for "tools" is available, in case the
                    875:                # default TOOLDIR setting from <bsd.own.mk> is used, or the
                    876:                # build.sh default DESTDIR and RELEASEDIR is to be used.
                    877:                #
1.98      lukem     878:                ${runcmd} cd tools
                    879:                ${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
                    880:                    bomb "Failed to make obj in tools"
                    881:                ${runcmd} cd "${TOP}"
1.84      lukem     882:        fi
1.80      lukem     883:
1.105     lukem     884:        statusmsg "MACHINE:          ${MACHINE}"
                    885:        statusmsg "MACHINE_ARCH:     ${MACHINE_ARCH}"
1.98      lukem     886:
                    887:        # Find TOOLDIR, DESTDIR, and RELEASEDIR.
1.84      lukem     888:        #
1.98      lukem     889:        TOOLDIR=$(getmakevar TOOLDIR)
1.105     lukem     890:        statusmsg "TOOLDIR path:     ${TOOLDIR}"
1.98      lukem     891:        DESTDIR=$(getmakevar DESTDIR)
                    892:        RELEASEDIR=$(getmakevar RELEASEDIR)
                    893:        if ! $do_expertmode; then
1.105     lukem     894:                _SRC_TOP_OBJ_=$(getmakevar _SRC_TOP_OBJ_)
                    895:                : ${DESTDIR:=${_SRC_TOP_OBJ_}/destdir.${MACHINE}}
                    896:                : ${RELEASEDIR:=${_SRC_TOP_OBJ_}/releasedir}
1.99      lukem     897:                makeenv="${makeenv} DESTDIR RELEASEDIR"
1.98      lukem     898:        fi
1.99      lukem     899:        export TOOLDIR DESTDIR RELEASEDIR
1.105     lukem     900:        statusmsg "DESTDIR path:     ${DESTDIR}"
                    901:        statusmsg "RELEASEDIR path:  ${RELEASEDIR}"
1.84      lukem     902:
                    903:        # Check validity of TOOLDIR and DESTDIR.
                    904:        #
1.98      lukem     905:        if [ -z "${TOOLDIR}" ] || [ "${TOOLDIR}" = "/" ]; then
                    906:                bomb "TOOLDIR '${TOOLDIR}' invalid"
1.84      lukem     907:        fi
1.98      lukem     908:        removedirs="${TOOLDIR}"
1.15      tv        909:
1.98      lukem     910:        if [ -z "${DESTDIR}" ] || [ "${DESTDIR}" = "/" ]; then
                    911:                if ${do_build} || ${do_distribution} || ${do_release}; then
                    912:                        if ! ${do_build} || \
1.84      lukem     913:                           [ "${uname_s}" != "NetBSD" ] || \
1.98      lukem     914:                           [ "${uname_m}" != "${MACHINE}" ]; then
1.84      lukem     915:                                bomb "DESTDIR must != / for cross builds, or ${progname} 'distribution' or 'release'."
                    916:                        fi
1.98      lukem     917:                        if ! ${do_expertmode}; then
1.84      lukem     918:                                bomb "DESTDIR must != / for non -E (expert) builds"
                    919:                        fi
1.98      lukem     920:                        statusmsg "WARNING: Building to /, in expert mode."
                    921:                        statusmsg "         This may cause your system to break!  Reasons include:"
                    922:                        statusmsg "            - your kernel is not up to date"
                    923:                        statusmsg "            - the libraries or toolchain have changed"
                    924:                        statusmsg "         YOU HAVE BEEN WARNED!"
1.1       tv        925:                fi
1.84      lukem     926:        else
1.98      lukem     927:                removedirs="${removedirs} ${DESTDIR}"
1.84      lukem     928:        fi
1.98      lukem     929:        if ${do_build} || ${do_distribution} || ${do_release}; then
                    930:                if ! ${do_expertmode} && \
1.153     apb       931:                    [ "$(id -u 2>/dev/null)" -ne 0 ] && \
1.124     lukem     932:                    [ "${MKUNPRIVED}" = "no" ] ; then
1.86      lukem     933:                        bomb "-U or -E must be set for build as an unprivileged user."
                    934:                fi
                    935:         fi
1.105     lukem     936:        if ${do_releasekernel} && [ -z "${RELEASEDIR}" ]; then
                    937:                bomb "Must set RELEASEDIR with \`releasekernel=...'"
                    938:        fi
1.84      lukem     939: }
1.30      jmc       940:
1.15      tv        941:
1.84      lukem     942: createmakewrapper()
                    943: {
                    944:        # Remove the target directories.
                    945:        #
1.98      lukem     946:        if ${do_removedirs}; then
                    947:                for f in ${removedirs}; do
                    948:                        statusmsg "Removing ${f}"
                    949:                        ${runcmd} rm -r -f "${f}"
1.84      lukem     950:                done
                    951:        fi
1.15      tv        952:
1.84      lukem     953:        # Recreate $TOOLDIR.
                    954:        #
1.98      lukem     955:        ${runcmd} mkdir -p "${TOOLDIR}/bin" ||
                    956:            bomb "mkdir of '${TOOLDIR}/bin' failed"
1.84      lukem     957:
                    958:        # Install ${toolprefix}make if it was built.
                    959:        #
1.98      lukem     960:        if ${do_rebuildmake}; then
                    961:                ${runcmd} rm -f "${TOOLDIR}/bin/${toolprefix}make"
                    962:                ${runcmd} cp "${make}" "${TOOLDIR}/bin/${toolprefix}make" ||
                    963:                    bomb "Failed to install \$TOOLDIR/bin/${toolprefix}make"
                    964:                make="${TOOLDIR}/bin/${toolprefix}make"
                    965:                statusmsg "Created ${make}"
1.84      lukem     966:        fi
1.15      tv        967:
1.84      lukem     968:        # Build a ${toolprefix}make wrapper script, usable by hand as
                    969:        # well as by build.sh.
                    970:        #
1.98      lukem     971:        if [ -z "${makewrapper}" ]; then
1.102     lukem     972:                makewrapper="${TOOLDIR}/bin/${toolprefix}make-${makewrappermachine:-${MACHINE}}"
1.98      lukem     973:                [ -z "${BUILDID}" ] || makewrapper="${makewrapper}-${BUILDID}"
1.52      thorpej   974:        fi
1.4       tv        975:
1.98      lukem     976:        ${runcmd} rm -f "${makewrapper}"
                    977:        if [ "${runcmd}" = "echo" ]; then
                    978:                echo 'cat <<EOF >'${makewrapper}
1.84      lukem     979:                makewrapout=
                    980:        else
1.98      lukem     981:                makewrapout=">>\${makewrapper}"
1.84      lukem     982:        fi
1.18      tv        983:
1.139     isaki     984:        case "${KSH_VERSION:-${SH_VERSION}}" in
1.149     jnemeth   985:        *PD\ KSH*|*MIRBSD\ KSH*)
1.135     isaki     986:                set +o braceexpand
                    987:                ;;
                    988:        esac
                    989:
1.98      lukem     990:        eval cat <<EOF ${makewrapout}
1.153     apb       991: #! ${HOST_SH}
1.4       tv        992: # Set proper variables to allow easy "make" building of a NetBSD subtree.
1.160   ! matt      993: # Generated from:  \$NetBSD: build.sh,v 1.159 2007/01/28 20:15:44 matt Exp $
1.130     jmc       994: # with these arguments: ${_args}
1.4       tv        995: #
1.18      tv        996: EOF
1.98      lukem     997:        for f in ${makeenv}; do
1.111     lukem     998:                if eval "[ -z \"\${$f}\" -a \"\${${f}-X}\" = \"X\" ]"; then
                    999:                        eval echo "unset ${f}" ${makewrapout}
                   1000:                else
                   1001:                        eval echo "${f}=\'\$$(echo ${f})\'\;\ export\ ${f}" ${makewrapout}
                   1002:                fi
1.84      lukem    1003:        done
1.18      tv       1004:
1.98      lukem    1005:        eval cat <<EOF ${makewrapout}
1.154     dyoung   1006: MAKEWRAPPERMACHINE=${makewrappermachine:-${MACHINE}}; export MAKEWRAPPERMACHINE
                   1007: USETOOLS=yes; export USETOOLS
1.18      tv       1008:
1.98      lukem    1009: exec "\${TOOLDIR}/bin/${toolprefix}make" \${1+"\$@"}
1.4       tv       1010: EOF
1.98      lukem    1011:        [ "${runcmd}" = "echo" ] && echo EOF
                   1012:        ${runcmd} chmod +x "${makewrapper}"
1.105     lukem    1013:        statusmsg "makewrapper:      ${makewrapper}"
1.98      lukem    1014:        statusmsg "Updated ${makewrapper}"
1.84      lukem    1015: }
                   1016:
                   1017: buildtools()
                   1018: {
1.98      lukem    1019:        if [ "${MKOBJDIRS}" != "no" ]; then
                   1020:                ${runcmd} "${makewrapper}" ${parallel} obj-tools ||
                   1021:                    bomb "Failed to make obj-tools"
1.84      lukem    1022:        fi
1.98      lukem    1023:        ${runcmd} cd tools
1.124     lukem    1024:        if [ "${MKUPDATE}" = "no" ]; then
1.144     dsl      1025:                ${runcmd} "${makewrapper}" ${parallel} cleandir ||
                   1026:                    bomb "Failed to make cleandir tools"
1.84      lukem    1027:        fi
1.144     dsl      1028:        ${runcmd} "${makewrapper}" ${parallel} dependall ||
                   1029:            bomb "Failed to make dependall tools"
                   1030:        ${runcmd} "${makewrapper}" ${parallel} install ||
                   1031:            bomb "Failed to make install tools"
1.98      lukem    1032:        statusmsg "Tools built to ${TOOLDIR}"
1.110     lukem    1033:        ${runcmd} cd "${TOP}"
1.84      lukem    1034: }
1.4       tv       1035:
1.105     lukem    1036: getkernelconf()
1.84      lukem    1037: {
1.105     lukem    1038:        kernelconf="$1"
1.114     lukem    1039:        if [ "${MKOBJDIRS}" != "no" ]; then
1.84      lukem    1040:                # The correct value of KERNOBJDIR might
                   1041:                # depend on a prior "make obj" in
                   1042:                # ${KERNSRCDIR}/${KERNARCHDIR}/compile.
                   1043:                #
1.98      lukem    1044:                KERNSRCDIR="$(getmakevar KERNSRCDIR)"
                   1045:                KERNARCHDIR="$(getmakevar KERNARCHDIR)"
                   1046:                ${runcmd} cd "${KERNSRCDIR}/${KERNARCHDIR}/compile"
1.143     dsl      1047:                ${runcmd} "${makewrapper}" ${parallel} obj ||
1.98      lukem    1048:                    bomb "Failed to make obj in ${KERNSRCDIR}/${KERNARCHDIR}/compile"
                   1049:                ${runcmd} cd "${TOP}"
1.84      lukem    1050:        fi
1.98      lukem    1051:        KERNCONFDIR="$(getmakevar KERNCONFDIR)"
                   1052:        KERNOBJDIR="$(getmakevar KERNOBJDIR)"
1.105     lukem    1053:        case "${kernelconf}" in
1.84      lukem    1054:        */*)
1.105     lukem    1055:                kernelconfpath="${kernelconf}"
                   1056:                kernelconfname="${kernelconf##*/}"
1.84      lukem    1057:                ;;
                   1058:        *)
1.105     lukem    1059:                kernelconfpath="${KERNCONFDIR}/${kernelconf}"
                   1060:                kernelconfname="${kernelconf}"
1.84      lukem    1061:                ;;
                   1062:        esac
1.105     lukem    1063:        kernelbuildpath="${KERNOBJDIR}/${kernelconfname}"
                   1064: }
                   1065:
                   1066: buildkernel()
                   1067: {
                   1068:        if ! ${do_tools} && ! ${buildkernelwarned:-false}; then
                   1069:                # Building tools every time we build a kernel is clearly
                   1070:                # unnecessary.  We could try to figure out whether rebuilding
                   1071:                # the tools is necessary this time, but it doesn't seem worth
                   1072:                # the trouble.  Instead, we say it's the user's responsibility
                   1073:                # to rebuild the tools if necessary.
                   1074:                #
                   1075:                statusmsg "Building kernel without building new tools"
                   1076:                buildkernelwarned=true
                   1077:        fi
                   1078:        getkernelconf $1
                   1079:        statusmsg "Building kernel:  ${kernelconf}"
                   1080:        statusmsg "Build directory:  ${kernelbuildpath}"
                   1081:        ${runcmd} mkdir -p "${kernelbuildpath}" ||
                   1082:            bomb "Cannot mkdir: ${kernelbuildpath}"
1.124     lukem    1083:        if [ "${MKUPDATE}" = "no" ]; then
1.105     lukem    1084:                ${runcmd} cd "${kernelbuildpath}"
1.143     dsl      1085:                ${runcmd} "${makewrapper}" ${parallel} cleandir ||
1.105     lukem    1086:                    bomb "Failed to make cleandir in ${kernelbuildpath}"
1.98      lukem    1087:                ${runcmd} cd "${TOP}"
1.16      thorpej  1088:        fi
1.157     rillig   1089:        [ -x "${TOOLDIR}/bin/${toolprefix}config" ] \
                   1090:        || bomb "${TOOLDIR}/bin/${toolprefix}config does not exist. You need to \"$0 tools\" first."
1.105     lukem    1091:        ${runcmd} "${TOOLDIR}/bin/${toolprefix}config" -b "${kernelbuildpath}" \
                   1092:                -s "${TOP}/sys" "${kernelconfpath}" ||
                   1093:            bomb "${toolprefix}config failed for ${kernelconf}"
                   1094:        ${runcmd} cd "${kernelbuildpath}"
1.143     dsl      1095:        ${runcmd} "${makewrapper}" ${parallel} depend ||
1.105     lukem    1096:            bomb "Failed to make depend in ${kernelbuildpath}"
1.98      lukem    1097:        ${runcmd} "${makewrapper}" ${parallel} all ||
1.105     lukem    1098:            bomb "Failed to make all in ${kernelbuildpath}"
1.98      lukem    1099:        ${runcmd} cd "${TOP}"
1.91      lukem    1100:
1.98      lukem    1101:        if [ "${runcmd}" != "echo" ]; then
1.105     lukem    1102:                statusmsg "Kernels built from ${kernelconf}:"
                   1103:                kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
1.91      lukem    1104:                for kern in ${kernlist:-netbsd}; do
1.105     lukem    1105:                        [ -f "${kernelbuildpath}/${kern}" ] && \
                   1106:                            echo "  ${kernelbuildpath}/${kern}"
1.98      lukem    1107:                done | tee -a "${results}"
1.91      lukem    1108:        fi
1.84      lukem    1109: }
                   1110:
1.105     lukem    1111: releasekernel()
                   1112: {
                   1113:        getkernelconf $1
                   1114:        kernelreldir="${RELEASEDIR}/${MACHINE}/binary/kernel"
                   1115:        ${runcmd} mkdir -p "${kernelreldir}"
                   1116:        kernlist=$(awk '$1 == "config" { print $2 }' ${kernelconfpath})
                   1117:        for kern in ${kernlist:-netbsd}; do
                   1118:                builtkern="${kernelbuildpath}/${kern}"
                   1119:                [ -f "${builtkern}" ] || continue
                   1120:                releasekern="${kernelreldir}/${kern}-${kernelconfname}.gz"
                   1121:                statusmsg "Kernel copy:      ${releasekern}"
                   1122:                ${runcmd} gzip -c -9 < "${builtkern}" > "${releasekern}"
                   1123:        done
                   1124: }
                   1125:
1.84      lukem    1126: installworld()
                   1127: {
                   1128:        dir="$1"
1.98      lukem    1129:        ${runcmd} "${makewrapper}" INSTALLWORLDDIR="${dir}" installworld ||
                   1130:            bomb "Failed to make installworld to ${dir}"
                   1131:        statusmsg "Successful installworld to ${dir}"
1.84      lukem    1132: }
                   1133:
                   1134:
                   1135: main()
                   1136: {
                   1137:        initdefaults
1.130     jmc      1138:        _args=$@
1.84      lukem    1139:        parseoptions "$@"
1.93      lukem    1140:
                   1141:        build_start=$(date)
1.98      lukem    1142:        statusmsg "${progname} command: $0 $@"
                   1143:        statusmsg "${progname} started: ${build_start}"
1.93      lukem    1144:
1.153     apb      1145:        statusmsg "HOST_SH:          ${HOST_SH}"
                   1146:
1.84      lukem    1147:        rebuildmake
                   1148:        validatemakeparams
                   1149:        createmakewrapper
                   1150:
                   1151:        # Perform the operations.
                   1152:        #
1.98      lukem    1153:        for op in ${operations}; do
                   1154:                case "${op}" in
1.86      lukem    1155:
                   1156:                makewrapper)
                   1157:                        # no-op
                   1158:                        ;;
1.84      lukem    1159:
                   1160:                tools)
                   1161:                        buildtools
                   1162:                        ;;
                   1163:
1.125     lukem    1164:                sets)
                   1165:                        statusmsg "Building sets from pre-populated ${DESTDIR}"
                   1166:                        ${runcmd} "${makewrapper}" ${parallel} ${op} ||
                   1167:                            bomb "Failed to make ${op}"
                   1168:                        statusmsg "Successful make ${op}"
                   1169:                        ;;
1.142     apb      1170:
1.145     apb      1171:                obj|build|distribution|iso-image|release|sourcesets|syspkgs|params)
1.98      lukem    1172:                        ${runcmd} "${makewrapper}" ${parallel} ${op} ||
                   1173:                            bomb "Failed to make ${op}"
                   1174:                        statusmsg "Successful make ${op}"
1.84      lukem    1175:                        ;;
                   1176:
                   1177:                kernel=*)
                   1178:                        arg=${op#*=}
                   1179:                        buildkernel "${arg}"
1.105     lukem    1180:                        ;;
                   1181:
                   1182:                releasekernel=*)
                   1183:                        arg=${op#*=}
                   1184:                        releasekernel "${arg}"
1.84      lukem    1185:                        ;;
                   1186:
                   1187:                install=*)
                   1188:                        arg=${op#*=}
1.85      lukem    1189:                        if [ "${arg}" = "/" ] && \
                   1190:                            (   [ "${uname_s}" != "NetBSD" ] || \
1.98      lukem    1191:                                [ "${uname_m}" != "${MACHINE}" ] ); then
1.85      lukem    1192:                                bomb "'${op}' must != / for cross builds."
                   1193:                        fi
1.84      lukem    1194:                        installworld "${arg}"
1.70      lukem    1195:                        ;;
1.84      lukem    1196:
1.70      lukem    1197:                *)
1.84      lukem    1198:                        bomb "Unknown operation \`${op}'"
1.70      lukem    1199:                        ;;
1.84      lukem    1200:
1.70      lukem    1201:                esac
1.84      lukem    1202:        done
1.93      lukem    1203:
1.104     lukem    1204:        statusmsg "${progname} started: ${build_start}"
1.98      lukem    1205:        statusmsg "${progname} ended:   $(date)"
                   1206:        if [ -s "${results}" ]; then
                   1207:                echo "===> Summary of results:"
                   1208:                sed -e 's/^===>//;s/^/  /' "${results}"
                   1209:                echo "===> ."
                   1210:        fi
1.84      lukem    1211: }
                   1212:
                   1213: main "$@"

CVSweb <webmaster@jp.NetBSD.org>