2002-09-14 03:27:13 +04:00
|
|
|
#! /usr/bin/env sh
|
2003-05-12 07:01:16 +04:00
|
|
|
# $NetBSD: build.sh,v 1.102 2003/05/12 03:01:16 lukem Exp $
|
2003-01-23 19:24:08 +03:00
|
|
|
#
|
|
|
|
# Copyright (c) 2001-2003 The NetBSD Foundation, Inc.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
# by Todd Vierling and Luke Mewburn.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# 3. All advertising materials mentioning features or use of this software
|
|
|
|
# must display the following acknowledgement:
|
|
|
|
# This product includes software developed by the NetBSD
|
|
|
|
# Foundation, Inc. and its contributors.
|
|
|
|
# 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
2001-10-19 06:21:03 +04:00
|
|
|
#
|
|
|
|
# Top level build wrapper, for a system containing no tools.
|
|
|
|
#
|
|
|
|
# This script should run on any POSIX-compliant shell. For systems
|
2001-12-12 00:13:35 +03:00
|
|
|
# with a strange /bin/sh, "ksh" or "bash" may be an ample alternative.
|
2001-10-19 06:21:03 +04:00
|
|
|
#
|
2002-09-14 03:27:13 +04:00
|
|
|
# Note, however, that due to the way the interpreter is invoked above,
|
|
|
|
# if a POSIX-compliant shell is the first in the PATH, you won't have
|
|
|
|
# to take any further action.
|
|
|
|
#
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
progname=${0##*/}
|
Improvements from Alan Barrett (in private email), with minor tweaking:
(Thanks Alan!)
* Before attempting to use KERNOBJDIR, we now need to "make obj" in
${KERNSRCDIR}/${KERNARCHDIR}/compile, not in ${TOP}/etc as used to be
the case.
* Fix one place where getmakevar was invoked unconditionally. It needs
to be conditional on $runcmd != "echo", so that we can rely on the
existence of the new $make executable.
* Add a sanity check to getmakevar, to bomb if a similar error is
introduced in the future.
* Changed the bomb function to print to stderr instead of to stdout, and
to kill the top level shell process. Without this, an attempted bomb
from inside getmakevar did not work properly.
* Moved some duplicated code into a new safe_getmakevar function, which
calls getmakevar if that is safe, or else emits a literal '$' followed
by the variable name.
Improvements from me:
* Always 'trap "exit 1" 1 2 3 15', so the kill in bomb() doesn't cause ugly
output.
2003-01-15 04:49:03 +03:00
|
|
|
toppid=$$
|
2003-05-08 18:19:39 +04:00
|
|
|
results=/dev/null
|
2003-01-23 19:24:08 +03:00
|
|
|
trap "exit 1" 1 2 3 15
|
|
|
|
|
2003-01-03 02:11:07 +03:00
|
|
|
bomb()
|
|
|
|
{
|
Improvements from Alan Barrett (in private email), with minor tweaking:
(Thanks Alan!)
* Before attempting to use KERNOBJDIR, we now need to "make obj" in
${KERNSRCDIR}/${KERNARCHDIR}/compile, not in ${TOP}/etc as used to be
the case.
* Fix one place where getmakevar was invoked unconditionally. It needs
to be conditional on $runcmd != "echo", so that we can rely on the
existence of the new $make executable.
* Add a sanity check to getmakevar, to bomb if a similar error is
introduced in the future.
* Changed the bomb function to print to stderr instead of to stdout, and
to kill the top level shell process. Without this, an attempted bomb
from inside getmakevar did not work properly.
* Moved some duplicated code into a new safe_getmakevar function, which
calls getmakevar if that is safe, or else emits a literal '$' followed
by the variable name.
Improvements from me:
* Always 'trap "exit 1" 1 2 3 15', so the kill in bomb() doesn't cause ugly
output.
2003-01-15 04:49:03 +03:00
|
|
|
cat >&2 <<ERRORMESSAGE
|
|
|
|
|
|
|
|
ERROR: $@
|
|
|
|
*** BUILD ABORTED ***
|
|
|
|
ERRORMESSAGE
|
2003-05-08 18:19:39 +04:00
|
|
|
kill ${toppid} # in case we were invoked from a subshell
|
2001-10-19 06:21:03 +04:00
|
|
|
exit 1
|
|
|
|
}
|
2003-01-02 08:11:12 +03:00
|
|
|
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
statusmsg()
|
|
|
|
{
|
|
|
|
${runcmd} echo "===> $@" | tee -a "${results}"
|
|
|
|
}
|
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
initdefaults()
|
|
|
|
{
|
|
|
|
cd "$(dirname $0)"
|
|
|
|
[ -d usr.bin/make ] ||
|
|
|
|
bomb "build.sh must be run from the top source level"
|
|
|
|
[ -f share/mk/bsd.own.mk ] ||
|
|
|
|
bomb "src/share/mk is missing; please re-fetch the source tree"
|
|
|
|
|
|
|
|
uname_s=$(uname -s 2>/dev/null)
|
|
|
|
uname_m=$(uname -m 2>/dev/null)
|
|
|
|
|
|
|
|
# If $PWD is a valid name of the current directory, POSIX mandates
|
|
|
|
# that pwd return it by default which causes problems in the
|
|
|
|
# presence of symlinks. Unsetting PWD is simpler than changing
|
|
|
|
# every occurrence of pwd to use -P.
|
|
|
|
#
|
|
|
|
# XXX Except that doesn't work on Solaris.
|
2003-05-08 18:19:39 +04:00
|
|
|
#
|
2003-01-23 19:24:08 +03:00
|
|
|
unset PWD
|
|
|
|
if [ "${uname_s}" = "SunOS" ]; then
|
|
|
|
TOP=$(pwd -P)
|
|
|
|
else
|
|
|
|
TOP=$(pwd)
|
|
|
|
fi
|
2002-12-25 03:42:50 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
# Set defaults.
|
2003-05-08 18:19:39 +04:00
|
|
|
#
|
2003-01-23 19:24:08 +03:00
|
|
|
toolprefix=nb
|
2003-05-08 18:19:39 +04:00
|
|
|
|
2003-03-14 08:22:50 +03:00
|
|
|
# Some systems have a small ARG_MAX. -X prevents make(1) from
|
|
|
|
# exporting variables in the environment redundantly.
|
2003-05-08 18:19:39 +04:00
|
|
|
#
|
2003-03-14 08:22:50 +03:00
|
|
|
case "${uname_s}" in
|
2003-05-08 16:49:45 +04:00
|
|
|
Darwin | FreeBSD | CYGWIN*)
|
2003-03-14 08:22:50 +03:00
|
|
|
MAKEFLAGS=-X
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
MAKEFLAGS=
|
|
|
|
;;
|
|
|
|
esac
|
2003-05-08 18:19:39 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
makeenv=
|
|
|
|
makewrapper=
|
2003-05-12 07:01:16 +04:00
|
|
|
makewrappermachine=
|
2003-01-23 19:24:08 +03:00
|
|
|
runcmd=
|
|
|
|
operations=
|
|
|
|
removedirs=
|
|
|
|
do_expertmode=false
|
|
|
|
do_rebuildmake=false
|
|
|
|
do_removedirs=false
|
|
|
|
|
|
|
|
# do_{operation}=true if given operation is requested.
|
|
|
|
#
|
|
|
|
do_tools=false
|
|
|
|
do_obj=false
|
|
|
|
do_build=false
|
|
|
|
do_distribution=false
|
|
|
|
do_release=false
|
|
|
|
do_kernel=false
|
|
|
|
do_install=false
|
2003-01-26 09:19:12 +03:00
|
|
|
do_sets=false
|
2003-05-10 11:12:37 +04:00
|
|
|
do_sourcesets=false
|
2003-05-08 18:19:39 +04:00
|
|
|
|
|
|
|
# Create scratch directory
|
|
|
|
#
|
|
|
|
tmpdir="${TMPDIR-/tmp}/nbbuild$$"
|
|
|
|
mkdir "${tmpdir}" || bomb "Cannot mkdir: ${tmpdir}"
|
|
|
|
trap "cd /; rm -r -f \"${tmpdir}\"" 0
|
|
|
|
results="${tmpdir}/build.sh.results"
|
2003-01-23 19:24:08 +03:00
|
|
|
}
|
2001-12-03 11:18:00 +03:00
|
|
|
|
2003-01-03 02:11:07 +03:00
|
|
|
getarch()
|
|
|
|
{
|
2001-10-19 06:21:03 +04:00
|
|
|
# Translate a MACHINE into a default MACHINE_ARCH.
|
2003-01-23 19:24:08 +03:00
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
case "${MACHINE}" in
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
acorn26|acorn32|cats|evbarm|hpcarm|netwinder|shark)
|
2003-01-23 19:24:08 +03:00
|
|
|
MACHINE_ARCH=arm
|
|
|
|
;;
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
hp700)
|
|
|
|
MACHINE_ARCH=hppa
|
|
|
|
;;
|
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
sun2)
|
|
|
|
MACHINE_ARCH=m68000
|
|
|
|
;;
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
amiga|atari|cesfic|hp300|luna68k|mac68k|mvme68k|news68k|next68k|sun3|x68k)
|
2003-01-23 19:24:08 +03:00
|
|
|
MACHINE_ARCH=m68k
|
|
|
|
;;
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-05-12 06:33:17 +04:00
|
|
|
evbmips-e[bl]|sbmips-e[bl])
|
|
|
|
MACHINE_ARCH=mips${MACHINE##*-}
|
2003-05-12 07:01:16 +04:00
|
|
|
makewrappermachine=${MACHINE}
|
2003-05-12 06:33:17 +04:00
|
|
|
MACHINE=${MACHINE%-e[bl]}
|
|
|
|
;;
|
|
|
|
|
|
|
|
evbmips|sbmips) # no default MACHINE_ARCH
|
|
|
|
;;
|
|
|
|
|
|
|
|
mipsco|newsmips|sgimips)
|
2003-01-23 19:24:08 +03:00
|
|
|
MACHINE_ARCH=mipseb
|
|
|
|
;;
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-05-12 06:33:17 +04:00
|
|
|
algor|arc|cobalt|hpcmips|playstation2|pmax)
|
2003-01-23 19:24:08 +03:00
|
|
|
MACHINE_ARCH=mipsel
|
|
|
|
;;
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
pc532)
|
|
|
|
MACHINE_ARCH=ns32k
|
|
|
|
;;
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
amigappc|bebox|evbppc|macppc|mvmeppc|ofppc|pmppc|prep|sandpoint)
|
2003-01-23 19:24:08 +03:00
|
|
|
MACHINE_ARCH=powerpc
|
|
|
|
;;
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
evbsh3|mmeye)
|
|
|
|
MACHINE_ARCH=sh3eb
|
|
|
|
;;
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
dreamcast|hpcsh)
|
|
|
|
MACHINE_ARCH=sh3el
|
|
|
|
;;
|
2002-06-10 18:08:05 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
evbsh5)
|
|
|
|
MACHINE_ARCH=sh5el
|
|
|
|
;;
|
2003-04-26 22:42:34 +04:00
|
|
|
amd64)
|
|
|
|
MACHINE_ARCH=x86_64
|
|
|
|
;;
|
2002-10-02 20:57:29 +04:00
|
|
|
|
2003-04-26 22:42:34 +04:00
|
|
|
alpha|i386|sparc|sparc64|vax)
|
2003-05-08 18:19:39 +04:00
|
|
|
MACHINE_ARCH=${MACHINE}
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
2003-05-08 18:19:39 +04:00
|
|
|
bomb "Unknown target MACHINE: ${MACHINE}"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
2001-10-24 06:39:56 +04:00
|
|
|
|
2001-10-19 06:21:03 +04:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2003-01-03 02:11:07 +03:00
|
|
|
validatearch()
|
|
|
|
{
|
2002-03-02 00:06:40 +03:00
|
|
|
# Ensure that the MACHINE_ARCH exists (and is supported by build.sh).
|
2003-01-23 19:24:08 +03:00
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
case "${MACHINE_ARCH}" in
|
2002-03-02 00:06:40 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
alpha|arm|armeb|hppa|i386|m68000|m68k|mipse[bl]|ns32k|powerpc|sh[35]e[bl]|sparc|sparc64|vax|x86_64)
|
|
|
|
;;
|
|
|
|
|
2003-05-12 06:33:17 +04:00
|
|
|
"")
|
|
|
|
bomb "No MACHINE_ARCH provided"
|
|
|
|
;;
|
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
*)
|
2003-05-08 18:19:39 +04:00
|
|
|
bomb "Unknown target MACHINE_ARCH: ${MACHINE_ARCH}"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
|
|
|
|
2002-03-02 00:06:40 +03:00
|
|
|
esac
|
2003-05-08 18:19:39 +04:00
|
|
|
|
|
|
|
# Determine valid MACHINE_ARCHs for MACHINE
|
|
|
|
#
|
|
|
|
case "${MACHINE}" in
|
|
|
|
|
|
|
|
evbarm)
|
|
|
|
arches="arm armeb"
|
|
|
|
;;
|
|
|
|
|
|
|
|
evbmips|sbmips)
|
|
|
|
arches="mipseb mipsel"
|
|
|
|
;;
|
|
|
|
|
|
|
|
evbsh3)
|
|
|
|
arches="sh3eb sh3el"
|
|
|
|
;;
|
|
|
|
|
|
|
|
evbsh5)
|
|
|
|
arches="sh5eb sh5el"
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
oma="${MACHINE_ARCH}"
|
|
|
|
getarch
|
|
|
|
arches="${MACHINE_ARCH}"
|
|
|
|
MACHINE_ARCH="${oma}"
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Ensure that MACHINE_ARCH supports MACHINE
|
|
|
|
#
|
|
|
|
archok=false
|
|
|
|
for a in ${arches}; do
|
|
|
|
if [ "${a}" = "${MACHINE_ARCH}" ]; then
|
|
|
|
archok=true
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
${archok} ||
|
|
|
|
bomb "MACHINE_ARCH '${MACHINE_ARCH}' does not support MACHINE '${MACHINE}'"
|
2002-03-02 00:06:40 +03:00
|
|
|
}
|
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
raw_getmakevar()
|
2003-01-03 02:11:07 +03:00
|
|
|
{
|
2003-05-08 18:19:39 +04:00
|
|
|
[ -x "${make}" ] || bomb "raw_getmakevar $1: ${make} is not executable"
|
|
|
|
"${make}" -m ${TOP}/share/mk -s -f- _x_ <<EOF
|
Major cleanup and overhaul:
* Allow MACHINE to be set automatically on NetBSD native builds.
Require -m only if the host is not NetBSD.
* Fail if DESTDIR is set to root (/) and the build is not NetBSD native,
or the build is attempting a "make release" (option -R).
* Warn the user if DESTDIR is set to root (/) that the kernel must be up
to date, or else the build might hose the system. Also, do not remove
DESTDIR on -r if it is set to root.
* Fail if TOOLDIR is set to / or empty after checking with nbmake.
* Allow DESTDIR and TOOLDIR to be set in mk.conf and/or by the new default
from <bsd.own.mk>. Note that if -T is not used to set TOOLDIR, and
TOOLDIR is not set in the environment, then nbmake will always be
bootstrapped (rather than looking at nbmake's timestamp). This is
because /bin/sh doesn't know how to get TOOLDIR from mk.conf without
first having nbmake (...which lives in TOOLDIR).
* Do a pass of "make obj" through src/tools before installing nbmake (so
long as -o/MKOBJDIRS=no is not specified). This ensures that objdirs
exist if they are desired, and paves the way for using build.sh to
build all the src/tools without building everything else.
* Add "-w" option, which allows the builder to specify where the nbmake
wrapper shell script should be created. If not specified,
$TOOLDIR/bin/nbmake-$MACHINE is still created as a default.
* Print the values of DESTDIR and TOOLDIR after bootstrapping nbmake,
for informational purposes.
It should now be possible to type just "./build.sh" on a NetBSD-current
host and get a new build in / for the appropriate architecture.
However, building in-place like this has *not* been extensively tested
yet, so be careful.
2001-10-31 22:59:43 +03:00
|
|
|
_x_:
|
|
|
|
echo \${$1}
|
|
|
|
.include <bsd.prog.mk>
|
2002-10-20 19:48:01 +04:00
|
|
|
.include <bsd.kernobj.mk>
|
Major cleanup and overhaul:
* Allow MACHINE to be set automatically on NetBSD native builds.
Require -m only if the host is not NetBSD.
* Fail if DESTDIR is set to root (/) and the build is not NetBSD native,
or the build is attempting a "make release" (option -R).
* Warn the user if DESTDIR is set to root (/) that the kernel must be up
to date, or else the build might hose the system. Also, do not remove
DESTDIR on -r if it is set to root.
* Fail if TOOLDIR is set to / or empty after checking with nbmake.
* Allow DESTDIR and TOOLDIR to be set in mk.conf and/or by the new default
from <bsd.own.mk>. Note that if -T is not used to set TOOLDIR, and
TOOLDIR is not set in the environment, then nbmake will always be
bootstrapped (rather than looking at nbmake's timestamp). This is
because /bin/sh doesn't know how to get TOOLDIR from mk.conf without
first having nbmake (...which lives in TOOLDIR).
* Do a pass of "make obj" through src/tools before installing nbmake (so
long as -o/MKOBJDIRS=no is not specified). This ensures that objdirs
exist if they are desired, and paves the way for using build.sh to
build all the src/tools without building everything else.
* Add "-w" option, which allows the builder to specify where the nbmake
wrapper shell script should be created. If not specified,
$TOOLDIR/bin/nbmake-$MACHINE is still created as a default.
* Print the values of DESTDIR and TOOLDIR after bootstrapping nbmake,
for informational purposes.
It should now be possible to type just "./build.sh" on a NetBSD-current
host and get a new build in / for the appropriate architecture.
However, building in-place like this has *not* been extensively tested
yet, so be careful.
2001-10-31 22:59:43 +03:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
getmakevar()
|
Improvements from Alan Barrett (in private email), with minor tweaking:
(Thanks Alan!)
* Before attempting to use KERNOBJDIR, we now need to "make obj" in
${KERNSRCDIR}/${KERNARCHDIR}/compile, not in ${TOP}/etc as used to be
the case.
* Fix one place where getmakevar was invoked unconditionally. It needs
to be conditional on $runcmd != "echo", so that we can rely on the
existence of the new $make executable.
* Add a sanity check to getmakevar, to bomb if a similar error is
introduced in the future.
* Changed the bomb function to print to stderr instead of to stdout, and
to kill the top level shell process. Without this, an attempted bomb
from inside getmakevar did not work properly.
* Moved some duplicated code into a new safe_getmakevar function, which
calls getmakevar if that is safe, or else emits a literal '$' followed
by the variable name.
Improvements from me:
* Always 'trap "exit 1" 1 2 3 15', so the kill in bomb() doesn't cause ugly
output.
2003-01-15 04:49:03 +03:00
|
|
|
{
|
2003-05-08 18:19:39 +04:00
|
|
|
# raw_getmakevar() doesn't work properly if $make hasn't yet been
|
|
|
|
# built, which can happen when running with the "-n" option.
|
|
|
|
# getmakevar() deals with this by emitting a literal '$'
|
2003-01-23 19:24:08 +03:00
|
|
|
# followed by the variable name, instead of trying to find the
|
|
|
|
# variable's value.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
if [ -x "${make}" ]; then
|
|
|
|
raw_getmakevar "$1"
|
Improvements from Alan Barrett (in private email), with minor tweaking:
(Thanks Alan!)
* Before attempting to use KERNOBJDIR, we now need to "make obj" in
${KERNSRCDIR}/${KERNARCHDIR}/compile, not in ${TOP}/etc as used to be
the case.
* Fix one place where getmakevar was invoked unconditionally. It needs
to be conditional on $runcmd != "echo", so that we can rely on the
existence of the new $make executable.
* Add a sanity check to getmakevar, to bomb if a similar error is
introduced in the future.
* Changed the bomb function to print to stderr instead of to stdout, and
to kill the top level shell process. Without this, an attempted bomb
from inside getmakevar did not work properly.
* Moved some duplicated code into a new safe_getmakevar function, which
calls getmakevar if that is safe, or else emits a literal '$' followed
by the variable name.
Improvements from me:
* Always 'trap "exit 1" 1 2 3 15', so the kill in bomb() doesn't cause ugly
output.
2003-01-15 04:49:03 +03:00
|
|
|
else
|
|
|
|
echo "\$$1"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2003-01-03 02:11:07 +03:00
|
|
|
resolvepath()
|
|
|
|
{
|
2003-05-08 18:19:39 +04:00
|
|
|
case "${OPTARG}" in
|
2003-01-23 19:24:08 +03:00
|
|
|
/*)
|
|
|
|
;;
|
|
|
|
*)
|
2003-05-08 18:19:39 +04:00
|
|
|
OPTARG="${TOP}/${OPTARG}"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
2001-10-31 01:33:00 +03:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2003-01-03 02:11:07 +03:00
|
|
|
usage()
|
|
|
|
{
|
2003-01-23 19:24:08 +03:00
|
|
|
if [ -n "$*" ]; then
|
|
|
|
echo ""
|
|
|
|
echo "${progname}: $*"
|
|
|
|
fi
|
2002-10-20 19:48:01 +04:00
|
|
|
cat <<_usage_
|
2003-01-23 19:24:08 +03:00
|
|
|
|
|
|
|
Usage: ${progname} [-EnorUu] [-a arch] [-B buildid] [-D dest] [-j njob] [-M obj]
|
2003-05-08 18:19:39 +04:00
|
|
|
[-m mach] [-O obj] [-R release] [-T tools] [-V var=[value]]
|
|
|
|
[-w wrapper] operation [...]
|
2003-01-23 19:24:08 +03:00
|
|
|
|
2003-01-26 08:34:32 +03:00
|
|
|
Build operations (all imply "obj" and "tools"):
|
2003-05-08 18:19:39 +04:00
|
|
|
build Run "make build"
|
|
|
|
distribution Run "make distribution" (includes DESTDIR/etc/ files)
|
|
|
|
release Run "make release" (includes kernels & distrib media)
|
2003-01-23 19:24:08 +03:00
|
|
|
|
|
|
|
Other operations:
|
2003-05-08 18:19:39 +04:00
|
|
|
help Show this message (and exit)
|
|
|
|
makewrapper Create ${toolprefix}make-\${MACHINE} wrapper and ${toolprefix}make.
|
|
|
|
(Always done)
|
|
|
|
obj Run "make obj" (default unless -o is used)
|
|
|
|
tools Build and install tools
|
|
|
|
kernel=conf Build kernel with config file \`conf'
|
|
|
|
install=idir Run "make installworld" to \`idir'
|
|
|
|
(useful after 'distribution' or 'release')
|
2003-05-10 11:12:37 +04:00
|
|
|
sets Create binary sets in RELEASEDIR/MACHINE/binary/sets
|
|
|
|
sourcesets Create source sets in RELEASEDIR/source/sets
|
2003-01-23 19:24:08 +03:00
|
|
|
|
|
|
|
Options:
|
2003-05-08 18:19:39 +04:00
|
|
|
-a arch Set MACHINE_ARCH to arch (otherwise deduced from MACHINE)
|
|
|
|
-B buildId Set BUILDID to buildId
|
2003-05-12 07:01:16 +04:00
|
|
|
-D dest Set DESTDIR to dest. (Default: destdir.MACHINE)
|
2003-05-08 18:19:39 +04:00
|
|
|
-E Set "expert" mode; disables various safety checks.
|
|
|
|
Should not be used without expert knowledge of the build system
|
|
|
|
-j njob Run up to njob jobs in parallel; see make(1)
|
|
|
|
-M obj Set obj root directory to obj (sets MAKEOBJDIRPREFIX)
|
|
|
|
-m mach Set MACHINE to mach (not required if NetBSD native)
|
|
|
|
-n Show commands that would be executed, but do not execute them
|
|
|
|
-O obj Set obj root directory to obj (sets a MAKEOBJDIR pattern)
|
|
|
|
-o Set MKOBJDIRS=no (do not create objdirs at start of build)
|
2003-05-12 07:01:16 +04:00
|
|
|
-R release Set RELEASEDIR to release. (Default: releasedir)
|
2003-05-08 18:19:39 +04:00
|
|
|
-r Remove contents of TOOLDIR and DESTDIR before building
|
|
|
|
-T tools Set TOOLDIR to tools. If unset, and TOOLDIR is not set in
|
|
|
|
the environment, ${toolprefix}make will be (re)built unconditionally
|
|
|
|
-U Set UNPRIVED (build without requiring root privileges)
|
|
|
|
-u Set UPDATE (do not run "make clean" first).
|
|
|
|
Without this, everything is rebuilt, including the tools.
|
|
|
|
-V v=[val] Set variable \`v' to \`val'
|
|
|
|
-w wrapper Create ${toolprefix}make script as wrapper
|
|
|
|
(Default: \${TOOLDIR}/bin/${toolprefix}make-\${MACHINE})
|
2003-01-22 14:26:11 +03:00
|
|
|
|
2002-10-20 19:48:01 +04:00
|
|
|
_usage_
|
2001-10-19 06:21:03 +04:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
parseoptions()
|
|
|
|
{
|
|
|
|
opts='a:B:bD:dEhi:j:k:M:m:nO:oR:rT:tUuV:w:'
|
|
|
|
opt_a=no
|
|
|
|
|
|
|
|
if type getopts >/dev/null 2>&1; then
|
|
|
|
# Use POSIX getopts.
|
2003-05-08 18:19:39 +04:00
|
|
|
#
|
|
|
|
getoptcmd='getopts ${opts} opt && opt=-${opt}'
|
2003-01-23 19:24:08 +03:00
|
|
|
optargcmd=':'
|
2003-05-08 18:19:39 +04:00
|
|
|
optremcmd='shift $((${OPTIND} -1))'
|
2003-01-23 19:24:08 +03:00
|
|
|
else
|
|
|
|
type getopt >/dev/null 2>&1 ||
|
|
|
|
bomb "/bin/sh shell is too old; try ksh or bash"
|
2001-10-19 06:25:48 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
# Use old-style getopt(1) (doesn't handle whitespace in args).
|
2003-05-08 18:19:39 +04:00
|
|
|
#
|
|
|
|
args="$(getopt ${opts} $*)"
|
2003-01-23 19:24:08 +03:00
|
|
|
[ $? = 0 ] || usage
|
2003-05-08 18:19:39 +04:00
|
|
|
set -- ${args}
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
getoptcmd='[ $# -gt 0 ] && opt="$1" && shift'
|
|
|
|
optargcmd='OPTARG="$1"; shift'
|
|
|
|
optremcmd=':'
|
|
|
|
fi
|
2001-10-24 06:39:56 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
# Parse command line options.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
while eval ${getoptcmd}; do
|
|
|
|
case ${opt} in
|
2001-10-31 01:33:00 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-a)
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optargcmd}
|
|
|
|
MACHINE_ARCH=${OPTARG}
|
2003-01-23 19:24:08 +03:00
|
|
|
opt_a=yes
|
|
|
|
;;
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-B)
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optargcmd}
|
|
|
|
BUILDID=${OPTARG}
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
2002-03-14 21:33:04 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-b)
|
2003-01-26 08:34:32 +03:00
|
|
|
usage "'-b' has been replaced by 'makewrapper'"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
2001-10-31 00:04:05 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-D)
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optargcmd}; resolvepath
|
|
|
|
DESTDIR="${OPTARG}"
|
2003-01-23 19:24:08 +03:00
|
|
|
export DESTDIR
|
2003-05-08 18:19:39 +04:00
|
|
|
makeenv="${makeenv} DESTDIR"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
2002-12-08 11:42:51 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-d)
|
|
|
|
usage "'-d' has been replaced by 'distribution'"
|
|
|
|
;;
|
2001-11-25 21:35:06 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-E)
|
|
|
|
do_expertmode=true
|
|
|
|
;;
|
2002-12-09 01:14:00 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-i)
|
|
|
|
usage "'-i idir' has been replaced by 'install=idir'"
|
|
|
|
;;
|
2002-12-25 03:42:50 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-j)
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optargcmd}
|
|
|
|
parallel="-j ${OPTARG}"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-k)
|
|
|
|
usage "'-k conf' has been replaced by 'kernel=conf'"
|
|
|
|
;;
|
2002-10-20 19:48:01 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-M)
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optargcmd}; resolvepath
|
|
|
|
MAKEOBJDIRPREFIX="${OPTARG}"
|
2003-01-23 19:24:08 +03:00
|
|
|
export MAKEOBJDIRPREFIX
|
2003-05-08 18:19:39 +04:00
|
|
|
makeobjdir="${OPTARG}"
|
|
|
|
makeenv="${makeenv} MAKEOBJDIRPREFIX"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
2002-12-08 11:42:51 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
# -m overrides MACHINE_ARCH unless "-a" is specified
|
|
|
|
-m)
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optargcmd}
|
|
|
|
MACHINE="${OPTARG}"
|
|
|
|
[ "${opt_a}" != "yes" ] && getarch
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
2001-10-19 20:43:47 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-n)
|
|
|
|
runcmd=echo
|
|
|
|
;;
|
2001-10-31 01:33:00 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-O)
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optargcmd}; resolvepath
|
2003-01-23 19:24:08 +03:00
|
|
|
MAKEOBJDIR="\${.CURDIR:C,^$TOP,$OPTARG,}"
|
|
|
|
export MAKEOBJDIR
|
2003-05-08 18:19:39 +04:00
|
|
|
makeobjdir="${OPTARG}"
|
|
|
|
makeenv="${makeenv} MAKEOBJDIR"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
2002-12-08 11:42:51 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-o)
|
|
|
|
MKOBJDIRS=no
|
|
|
|
;;
|
2001-10-31 04:56:10 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-R)
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optargcmd}; resolvepath
|
|
|
|
RELEASEDIR="${OPTARG}"
|
2003-01-23 19:24:08 +03:00
|
|
|
export RELEASEDIR
|
2003-05-08 18:19:39 +04:00
|
|
|
makeenv="${makeenv} RELEASEDIR"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
2002-12-08 11:42:51 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-r)
|
|
|
|
do_removedirs=true
|
|
|
|
do_rebuildmake=true
|
|
|
|
;;
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-T)
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optargcmd}; resolvepath
|
|
|
|
TOOLDIR="${OPTARG}"
|
2003-01-23 19:24:08 +03:00
|
|
|
export TOOLDIR
|
|
|
|
;;
|
2002-12-08 11:42:51 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-t)
|
|
|
|
usage "'-t' has been replaced by 'tools'"
|
|
|
|
;;
|
2001-11-01 03:14:17 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-U)
|
|
|
|
UNPRIVED=yes
|
|
|
|
export UNPRIVED
|
2003-05-08 18:19:39 +04:00
|
|
|
makeenv="${makeenv} UNPRIVED"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
2002-02-27 16:55:28 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-u)
|
|
|
|
UPDATE=yes
|
|
|
|
export UPDATE
|
2003-05-08 18:19:39 +04:00
|
|
|
makeenv="${makeenv} UPDATE"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
Major cleanup and overhaul:
* Allow MACHINE to be set automatically on NetBSD native builds.
Require -m only if the host is not NetBSD.
* Fail if DESTDIR is set to root (/) and the build is not NetBSD native,
or the build is attempting a "make release" (option -R).
* Warn the user if DESTDIR is set to root (/) that the kernel must be up
to date, or else the build might hose the system. Also, do not remove
DESTDIR on -r if it is set to root.
* Fail if TOOLDIR is set to / or empty after checking with nbmake.
* Allow DESTDIR and TOOLDIR to be set in mk.conf and/or by the new default
from <bsd.own.mk>. Note that if -T is not used to set TOOLDIR, and
TOOLDIR is not set in the environment, then nbmake will always be
bootstrapped (rather than looking at nbmake's timestamp). This is
because /bin/sh doesn't know how to get TOOLDIR from mk.conf without
first having nbmake (...which lives in TOOLDIR).
* Do a pass of "make obj" through src/tools before installing nbmake (so
long as -o/MKOBJDIRS=no is not specified). This ensures that objdirs
exist if they are desired, and paves the way for using build.sh to
build all the src/tools without building everything else.
* Add "-w" option, which allows the builder to specify where the nbmake
wrapper shell script should be created. If not specified,
$TOOLDIR/bin/nbmake-$MACHINE is still created as a default.
* Print the values of DESTDIR and TOOLDIR after bootstrapping nbmake,
for informational purposes.
It should now be possible to type just "./build.sh" on a NetBSD-current
host and get a new build in / for the appropriate architecture.
However, building in-place like this has *not* been extensively tested
yet, so be careful.
2001-10-31 22:59:43 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
-V)
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optargcmd}
|
2003-01-23 19:24:08 +03:00
|
|
|
case "${OPTARG}" in
|
2003-01-04 15:55:32 +03:00
|
|
|
# XXX: consider restricting which variables can be changed?
|
2003-01-23 19:24:08 +03:00
|
|
|
[a-zA-Z_][a-zA-Z_0-9]*=*)
|
|
|
|
var=${OPTARG%%=*}
|
|
|
|
value=${OPTARG#*=}
|
|
|
|
eval "${var}=\"${value}\"; export ${var}"
|
2003-05-08 18:19:39 +04:00
|
|
|
makeenv="${makeenv} ${var}"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage "-V argument must be of the form 'var=[value]'"
|
|
|
|
;;
|
|
|
|
esac
|
2003-01-04 15:55:32 +03:00
|
|
|
;;
|
2003-01-23 19:24:08 +03:00
|
|
|
|
|
|
|
-w)
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optargcmd}; resolvepath
|
|
|
|
makewrapper="${OPTARG}"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
|
|
|
|
|
|
|
--)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
|
|
|
|
-'?'|-h)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
# Validate operations.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
eval ${optremcmd}
|
2003-01-23 19:24:08 +03:00
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
op=$1; shift
|
2003-05-08 18:19:39 +04:00
|
|
|
operations="${operations} ${op}"
|
2003-01-23 19:24:08 +03:00
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
case "${op}" in
|
2003-01-23 19:24:08 +03:00
|
|
|
|
2003-01-26 09:19:12 +03:00
|
|
|
help)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
|
2003-05-10 11:12:37 +04:00
|
|
|
makewrapper|obj|tools|build|distribution|release|sets|sourcesets)
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
|
|
|
|
|
|
|
kernel=*)
|
|
|
|
arg=${op#*=}
|
|
|
|
op=${op%%=*}
|
2003-05-08 18:19:39 +04:00
|
|
|
[ -n "${arg}" ] ||
|
|
|
|
bomb "Must supply a kernel name with \`kernel=...'"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
|
|
|
|
|
|
|
install=*)
|
|
|
|
arg=${op#*=}
|
|
|
|
op=${op%%=*}
|
2003-05-08 18:19:39 +04:00
|
|
|
[ -n "${arg}" ] ||
|
|
|
|
bomb "Must supply a directory with \`install=...'"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
|
|
|
|
2003-01-04 15:55:32 +03:00
|
|
|
*)
|
2003-01-23 19:24:08 +03:00
|
|
|
usage "Unknown operation \`${op}'"
|
|
|
|
;;
|
|
|
|
|
2003-01-04 15:55:32 +03:00
|
|
|
esac
|
2003-05-08 18:19:39 +04:00
|
|
|
eval do_${op}=true
|
2003-01-23 19:24:08 +03:00
|
|
|
done
|
2003-05-08 18:19:39 +04:00
|
|
|
[ -n "${operations}" ] || usage "Missing operation to perform."
|
2003-01-04 15:55:32 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
# Set up MACHINE*. On a NetBSD host, these are allowed to be unset.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
if [ -z "${MACHINE}" ]; then
|
|
|
|
[ "${uname_s}" = "NetBSD" ] ||
|
|
|
|
bomb "MACHINE must be set, or -m must be used, for cross builds."
|
2003-01-23 19:24:08 +03:00
|
|
|
MACHINE=${uname_m}
|
|
|
|
fi
|
2003-05-08 18:19:39 +04:00
|
|
|
[ -n "${MACHINE_ARCH}" ] || getarch
|
2003-01-23 19:24:08 +03:00
|
|
|
validatearch
|
2001-10-31 04:56:10 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
# Set up default make(1) environment.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
makeenv="${makeenv} TOOLDIR MACHINE MACHINE_ARCH MAKEFLAGS"
|
|
|
|
[ -z "${BUILDID}" ] || makeenv="${makeenv} BUILDID"
|
|
|
|
MAKEFLAGS="-m ${TOP}/share/mk ${MAKEFLAGS} MKOBJDIRS=${MKOBJDIRS-yes}"
|
2003-01-23 19:24:08 +03:00
|
|
|
export MAKEFLAGS MACHINE MACHINE_ARCH
|
|
|
|
}
|
2001-10-19 06:21:03 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
rebuildmake()
|
|
|
|
{
|
|
|
|
# Test make source file timestamps against installed ${toolprefix}make
|
|
|
|
# binary, if TOOLDIR is pre-set.
|
|
|
|
#
|
|
|
|
# Note that we do NOT try to grovel "mk.conf" here to find out if
|
|
|
|
# TOOLDIR is set there, because it can contain make variable
|
|
|
|
# expansions and other stuff only parseable *after* we have a working
|
|
|
|
# ${toolprefix}make. So this logic can only work if the user has
|
|
|
|
# pre-set TOOLDIR in the environment or used the -T option to build.sh.
|
|
|
|
#
|
|
|
|
make="${TOOLDIR-nonexistent}/bin/${toolprefix}make"
|
2003-05-08 18:19:39 +04:00
|
|
|
if [ -x "${make}" ]; then
|
2003-01-23 19:24:08 +03:00
|
|
|
for f in usr.bin/make/*.[ch] usr.bin/make/lst.lib/*.[ch]; do
|
2003-05-08 18:19:39 +04:00
|
|
|
if [ "${f}" -nt "${make}" ]; then
|
2003-01-23 19:24:08 +03:00
|
|
|
do_rebuildmake=true
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
|
|
|
do_rebuildmake=true
|
2001-10-24 06:39:56 +04:00
|
|
|
fi
|
2001-12-04 07:28:23 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
# Build bootstrap ${toolprefix}make if needed.
|
2003-05-08 18:19:39 +04:00
|
|
|
if ${do_rebuildmake}; then
|
|
|
|
statusmsg "Bootstrapping ${toolprefix}make"
|
|
|
|
${runcmd} cd "${tmpdir}"
|
|
|
|
${runcmd} env CC="${HOST_CC-cc}" CPPFLAGS="${HOST_CPPFLAGS}" \
|
2003-01-23 19:24:08 +03:00
|
|
|
CFLAGS="${HOST_CFLAGS--O}" LDFLAGS="${HOST_LDFLAGS}" \
|
2003-05-08 18:19:39 +04:00
|
|
|
"${TOP}/tools/make/configure" ||
|
|
|
|
bomb "Configure of ${toolprefix}make failed"
|
|
|
|
${runcmd} sh buildmake.sh ||
|
|
|
|
bomb "Build of ${toolprefix}make failed"
|
|
|
|
make="${tmpdir}/${toolprefix}make"
|
|
|
|
${runcmd} cd "${TOP}"
|
|
|
|
${runcmd} rm -f usr.bin/make/*.o usr.bin/make/lst.lib/*.o
|
2003-01-23 19:24:08 +03:00
|
|
|
fi
|
|
|
|
}
|
Major cleanup and overhaul:
* Allow MACHINE to be set automatically on NetBSD native builds.
Require -m only if the host is not NetBSD.
* Fail if DESTDIR is set to root (/) and the build is not NetBSD native,
or the build is attempting a "make release" (option -R).
* Warn the user if DESTDIR is set to root (/) that the kernel must be up
to date, or else the build might hose the system. Also, do not remove
DESTDIR on -r if it is set to root.
* Fail if TOOLDIR is set to / or empty after checking with nbmake.
* Allow DESTDIR and TOOLDIR to be set in mk.conf and/or by the new default
from <bsd.own.mk>. Note that if -T is not used to set TOOLDIR, and
TOOLDIR is not set in the environment, then nbmake will always be
bootstrapped (rather than looking at nbmake's timestamp). This is
because /bin/sh doesn't know how to get TOOLDIR from mk.conf without
first having nbmake (...which lives in TOOLDIR).
* Do a pass of "make obj" through src/tools before installing nbmake (so
long as -o/MKOBJDIRS=no is not specified). This ensures that objdirs
exist if they are desired, and paves the way for using build.sh to
build all the src/tools without building everything else.
* Add "-w" option, which allows the builder to specify where the nbmake
wrapper shell script should be created. If not specified,
$TOOLDIR/bin/nbmake-$MACHINE is still created as a default.
* Print the values of DESTDIR and TOOLDIR after bootstrapping nbmake,
for informational purposes.
It should now be possible to type just "./build.sh" on a NetBSD-current
host and get a new build in / for the appropriate architecture.
However, building in-place like this has *not* been extensively tested
yet, so be careful.
2001-10-31 22:59:43 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
validatemakeparams()
|
|
|
|
{
|
2003-05-08 18:19:39 +04:00
|
|
|
if [ "${runcmd}" = "echo" ]; then
|
2003-01-23 19:24:08 +03:00
|
|
|
TOOLCHAIN_MISSING=no
|
|
|
|
EXTERNAL_TOOLCHAIN=""
|
|
|
|
else
|
2003-05-08 18:19:39 +04:00
|
|
|
TOOLCHAIN_MISSING=$(raw_getmakevar TOOLCHAIN_MISSING)
|
|
|
|
EXTERNAL_TOOLCHAIN=$(raw_getmakevar EXTERNAL_TOOLCHAIN)
|
2003-01-23 19:24:08 +03:00
|
|
|
fi
|
|
|
|
if [ "${TOOLCHAIN_MISSING}" = "yes" ] && \
|
2003-01-26 08:34:32 +03:00
|
|
|
[ -z "${EXTERNAL_TOOLCHAIN}" ]; then
|
2003-05-08 18:19:39 +04:00
|
|
|
${runcmd} echo "ERROR: build.sh (in-tree cross-toolchain) is not yet available for"
|
|
|
|
${runcmd} echo " MACHINE: ${MACHINE}"
|
|
|
|
${runcmd} echo " MACHINE_ARCH: ${MACHINE_ARCH}"
|
|
|
|
${runcmd} echo ""
|
|
|
|
${runcmd} echo "All builds for this platform should be done via a traditional make"
|
|
|
|
${runcmd} echo "If you wish to use an external cross-toolchain, set"
|
|
|
|
${runcmd} echo " EXTERNAL_TOOLCHAIN=<path to toolchain root>"
|
|
|
|
${runcmd} echo "in either the environment or mk.conf and rerun"
|
|
|
|
${runcmd} echo " ${progname} $*"
|
2003-01-23 19:24:08 +03:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If TOOLDIR isn't already set, make objdirs in "tools" in case the
|
|
|
|
# default setting from <bsd.own.mk> is used.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
if [ -z "${TOOLDIR}" ] && [ "${MKOBJDIRS}" != "no" ]; then
|
|
|
|
${runcmd} cd tools
|
|
|
|
${runcmd} "${make}" -m ${TOP}/share/mk obj NOSUBDIR= ||
|
|
|
|
bomb "Failed to make obj in tools"
|
|
|
|
${runcmd} cd "${TOP}"
|
2003-01-23 19:24:08 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If setting -M or -O to root an obj dir make sure the base directory
|
|
|
|
# is made before continuing as bsd.own.mk will need this to pick up
|
|
|
|
# _SRC_TOP_OBJ_
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
if [ "${MKOBJDIRS}" != "no" ] && [ ! -z "${makeobjdir}" ]; then
|
|
|
|
${runcmd} mkdir -p "${makeobjdir}"
|
2003-01-23 19:24:08 +03:00
|
|
|
fi
|
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
statusmsg "MACHINE: ${MACHINE}"
|
|
|
|
statusmsg "MACHINE_ARCH: ${MACHINE_ARCH}"
|
|
|
|
|
|
|
|
# Find TOOLDIR, DESTDIR, and RELEASEDIR.
|
2003-01-23 19:24:08 +03:00
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
TOOLDIR=$(getmakevar TOOLDIR)
|
|
|
|
statusmsg "TOOLDIR path: ${TOOLDIR}"
|
|
|
|
DESTDIR=$(getmakevar DESTDIR)
|
|
|
|
RELEASEDIR=$(getmakevar RELEASEDIR)
|
|
|
|
if ! $do_expertmode; then
|
|
|
|
_SRCTOPOBJ_=$(getmakevar _SRC_TOP_OBJ_)
|
|
|
|
: ${DESTDIR:=${_SRCTOPOBJ_}/destdir.${MACHINE}}
|
|
|
|
: ${RELEASEDIR:=${_SRCTOPOBJ_}/releasedir}
|
2003-05-09 13:10:06 +04:00
|
|
|
makeenv="${makeenv} DESTDIR RELEASEDIR"
|
2003-05-08 18:19:39 +04:00
|
|
|
fi
|
2003-05-09 13:10:06 +04:00
|
|
|
export TOOLDIR DESTDIR RELEASEDIR
|
2003-05-08 18:19:39 +04:00
|
|
|
statusmsg "DESTDIR path: ${DESTDIR}"
|
|
|
|
statusmsg "RELEASEDIR path: ${RELEASEDIR}"
|
2003-01-23 19:24:08 +03:00
|
|
|
|
|
|
|
# Check validity of TOOLDIR and DESTDIR.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
if [ -z "${TOOLDIR}" ] || [ "${TOOLDIR}" = "/" ]; then
|
|
|
|
bomb "TOOLDIR '${TOOLDIR}' invalid"
|
2003-01-23 19:24:08 +03:00
|
|
|
fi
|
2003-05-08 18:19:39 +04:00
|
|
|
removedirs="${TOOLDIR}"
|
2003-01-23 19:24:08 +03:00
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
if [ -z "${DESTDIR}" ] || [ "${DESTDIR}" = "/" ]; then
|
|
|
|
if ${do_build} || ${do_distribution} || ${do_release}; then
|
|
|
|
if ! ${do_build} || \
|
2003-01-23 19:24:08 +03:00
|
|
|
[ "${uname_s}" != "NetBSD" ] || \
|
2003-05-08 18:19:39 +04:00
|
|
|
[ "${uname_m}" != "${MACHINE}" ]; then
|
2003-01-23 19:24:08 +03:00
|
|
|
bomb "DESTDIR must != / for cross builds, or ${progname} 'distribution' or 'release'."
|
|
|
|
fi
|
2003-05-08 18:19:39 +04:00
|
|
|
if ! ${do_expertmode}; then
|
2003-01-23 19:24:08 +03:00
|
|
|
bomb "DESTDIR must != / for non -E (expert) builds"
|
|
|
|
fi
|
2003-05-08 18:19:39 +04:00
|
|
|
statusmsg "WARNING: Building to /, in expert mode."
|
|
|
|
statusmsg " This may cause your system to break! Reasons include:"
|
|
|
|
statusmsg " - your kernel is not up to date"
|
|
|
|
statusmsg " - the libraries or toolchain have changed"
|
|
|
|
statusmsg " YOU HAVE BEEN WARNED!"
|
2002-12-09 01:14:00 +03:00
|
|
|
fi
|
2003-01-23 19:24:08 +03:00
|
|
|
else
|
2003-05-08 18:19:39 +04:00
|
|
|
removedirs="${removedirs} ${DESTDIR}"
|
Major cleanup and overhaul:
* Allow MACHINE to be set automatically on NetBSD native builds.
Require -m only if the host is not NetBSD.
* Fail if DESTDIR is set to root (/) and the build is not NetBSD native,
or the build is attempting a "make release" (option -R).
* Warn the user if DESTDIR is set to root (/) that the kernel must be up
to date, or else the build might hose the system. Also, do not remove
DESTDIR on -r if it is set to root.
* Fail if TOOLDIR is set to / or empty after checking with nbmake.
* Allow DESTDIR and TOOLDIR to be set in mk.conf and/or by the new default
from <bsd.own.mk>. Note that if -T is not used to set TOOLDIR, and
TOOLDIR is not set in the environment, then nbmake will always be
bootstrapped (rather than looking at nbmake's timestamp). This is
because /bin/sh doesn't know how to get TOOLDIR from mk.conf without
first having nbmake (...which lives in TOOLDIR).
* Do a pass of "make obj" through src/tools before installing nbmake (so
long as -o/MKOBJDIRS=no is not specified). This ensures that objdirs
exist if they are desired, and paves the way for using build.sh to
build all the src/tools without building everything else.
* Add "-w" option, which allows the builder to specify where the nbmake
wrapper shell script should be created. If not specified,
$TOOLDIR/bin/nbmake-$MACHINE is still created as a default.
* Print the values of DESTDIR and TOOLDIR after bootstrapping nbmake,
for informational purposes.
It should now be possible to type just "./build.sh" on a NetBSD-current
host and get a new build in / for the appropriate architecture.
However, building in-place like this has *not* been extensively tested
yet, so be careful.
2001-10-31 22:59:43 +03:00
|
|
|
fi
|
2003-05-08 18:19:39 +04:00
|
|
|
if ${do_build} || ${do_distribution} || ${do_release}; then
|
|
|
|
if ! ${do_expertmode} && \
|
2003-01-26 08:34:32 +03:00
|
|
|
[ $(id -u 2>/dev/null) -ne 0 ] &&\
|
2003-05-08 18:19:39 +04:00
|
|
|
[ -z "${UNPRIVED}" ] ; then
|
2003-01-26 08:34:32 +03:00
|
|
|
bomb "-U or -E must be set for build as an unprivileged user."
|
|
|
|
fi
|
|
|
|
fi
|
2003-01-23 19:24:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
createmakewrapper()
|
|
|
|
{
|
|
|
|
# Remove the target directories.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
if ${do_removedirs}; then
|
|
|
|
for f in ${removedirs}; do
|
|
|
|
statusmsg "Removing ${f}"
|
|
|
|
${runcmd} rm -r -f "${f}"
|
2003-01-23 19:24:08 +03:00
|
|
|
done
|
2002-12-25 03:42:50 +03:00
|
|
|
fi
|
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
# Recreate $TOOLDIR.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
${runcmd} mkdir -p "${TOOLDIR}/bin" ||
|
|
|
|
bomb "mkdir of '${TOOLDIR}/bin' failed"
|
2003-01-23 19:24:08 +03:00
|
|
|
|
|
|
|
# Install ${toolprefix}make if it was built.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
if ${do_rebuildmake}; then
|
|
|
|
${runcmd} rm -f "${TOOLDIR}/bin/${toolprefix}make"
|
|
|
|
${runcmd} cp "${make}" "${TOOLDIR}/bin/${toolprefix}make" ||
|
|
|
|
bomb "Failed to install \$TOOLDIR/bin/${toolprefix}make"
|
|
|
|
make="${TOOLDIR}/bin/${toolprefix}make"
|
|
|
|
statusmsg "Created ${make}"
|
2002-03-14 21:33:04 +03:00
|
|
|
fi
|
2001-10-24 06:39:56 +04:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
# Build a ${toolprefix}make wrapper script, usable by hand as
|
|
|
|
# well as by build.sh.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
if [ -z "${makewrapper}" ]; then
|
2003-05-12 07:01:16 +04:00
|
|
|
makewrapper="${TOOLDIR}/bin/${toolprefix}make-${makewrappermachine:-${MACHINE}}"
|
2003-05-08 18:19:39 +04:00
|
|
|
[ -z "${BUILDID}" ] || makewrapper="${makewrapper}-${BUILDID}"
|
2003-01-23 19:24:08 +03:00
|
|
|
fi
|
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
${runcmd} rm -f "${makewrapper}"
|
|
|
|
if [ "${runcmd}" = "echo" ]; then
|
|
|
|
echo 'cat <<EOF >'${makewrapper}
|
2003-01-23 19:24:08 +03:00
|
|
|
makewrapout=
|
|
|
|
else
|
2003-05-08 18:19:39 +04:00
|
|
|
makewrapout=">>\${makewrapper}"
|
2003-01-23 19:24:08 +03:00
|
|
|
fi
|
2001-11-02 08:07:22 +03:00
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
eval cat <<EOF ${makewrapout}
|
2001-10-24 06:39:56 +04:00
|
|
|
#! /bin/sh
|
|
|
|
# Set proper variables to allow easy "make" building of a NetBSD subtree.
|
2003-05-12 07:01:16 +04:00
|
|
|
# Generated from: \$NetBSD: build.sh,v 1.102 2003/05/12 03:01:16 lukem Exp $
|
2001-10-24 06:39:56 +04:00
|
|
|
#
|
2001-11-02 08:07:22 +03:00
|
|
|
|
|
|
|
EOF
|
2003-05-08 18:19:39 +04:00
|
|
|
for f in ${makeenv}; do
|
|
|
|
eval echo "${f}=\'\$$(echo ${f})\'\;\ export\ ${f}" ${makewrapout}
|
2003-01-23 19:24:08 +03:00
|
|
|
done
|
2003-05-08 18:19:39 +04:00
|
|
|
eval echo "USETOOLS=yes\; export USETOOLS" ${makewrapout}
|
2001-11-02 08:07:22 +03:00
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
eval cat <<EOF ${makewrapout}
|
2001-11-02 08:07:22 +03:00
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
exec "\${TOOLDIR}/bin/${toolprefix}make" \${1+"\$@"}
|
2001-10-24 06:39:56 +04:00
|
|
|
EOF
|
2003-05-08 18:19:39 +04:00
|
|
|
[ "${runcmd}" = "echo" ] && echo EOF
|
|
|
|
${runcmd} chmod +x "${makewrapper}"
|
|
|
|
statusmsg "Updated ${makewrapper}"
|
2003-01-23 19:24:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
buildtools()
|
|
|
|
{
|
2003-05-08 18:19:39 +04:00
|
|
|
if [ "${MKOBJDIRS}" != "no" ]; then
|
|
|
|
${runcmd} "${makewrapper}" ${parallel} obj-tools ||
|
|
|
|
bomb "Failed to make obj-tools"
|
2001-11-01 03:14:17 +03:00
|
|
|
fi
|
2003-05-08 18:19:39 +04:00
|
|
|
${runcmd} cd tools
|
|
|
|
if [ -z "${UPDATE}" ]; then
|
2003-01-23 19:24:08 +03:00
|
|
|
cleandir=cleandir
|
|
|
|
else
|
|
|
|
cleandir=
|
|
|
|
fi
|
2003-05-08 18:19:39 +04:00
|
|
|
${runcmd} "${makewrapper}" ${cleandir} dependall install ||
|
|
|
|
bomb "Failed to make tools"
|
|
|
|
statusmsg "Tools built to ${TOOLDIR}"
|
2003-01-23 19:24:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
buildkernel()
|
|
|
|
{
|
|
|
|
kernconf="$1"
|
2003-05-08 18:19:39 +04:00
|
|
|
if ! ${do_tools}; then
|
2003-01-23 19:24:08 +03:00
|
|
|
# Building tools every time we build a kernel is clearly
|
|
|
|
# unnecessary. We could try to figure out whether rebuilding
|
|
|
|
# the tools is necessary this time, but it doesn't seem worth
|
|
|
|
# the trouble. Instead, we say it's the user's responsibility
|
|
|
|
# to rebuild the tools if necessary.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
statusmsg "Building kernel without building new tools"
|
2003-01-23 19:24:08 +03:00
|
|
|
fi
|
2003-05-08 18:19:39 +04:00
|
|
|
statusmsg "Building kernel ${kernconf}"
|
|
|
|
if [ "${MKOBJDIRS}" != "no" ] && [ ! -z "${makeobjdir}" ]; then
|
2003-01-23 19:24:08 +03:00
|
|
|
# The correct value of KERNOBJDIR might
|
|
|
|
# depend on a prior "make obj" in
|
|
|
|
# ${KERNSRCDIR}/${KERNARCHDIR}/compile.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
KERNSRCDIR="$(getmakevar KERNSRCDIR)"
|
|
|
|
KERNARCHDIR="$(getmakevar KERNARCHDIR)"
|
|
|
|
${runcmd} cd "${KERNSRCDIR}/${KERNARCHDIR}/compile"
|
|
|
|
${runcmd} "${makewrapper}" obj ||
|
|
|
|
bomb "Failed to make obj in ${KERNSRCDIR}/${KERNARCHDIR}/compile"
|
|
|
|
${runcmd} cd "${TOP}"
|
2003-01-23 19:24:08 +03:00
|
|
|
fi
|
2003-05-08 18:19:39 +04:00
|
|
|
KERNCONFDIR="$(getmakevar KERNCONFDIR)"
|
|
|
|
KERNOBJDIR="$(getmakevar KERNOBJDIR)"
|
2003-01-23 19:24:08 +03:00
|
|
|
case "${kernconf}" in
|
|
|
|
*/*)
|
|
|
|
kernconfpath="${kernconf}"
|
|
|
|
kernconfbase="$(basename "${kernconf}")"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
kernconfpath="${KERNCONFDIR}/${kernconf}"
|
|
|
|
kernconfbase="${kernconf}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
kernbuilddir="${KERNOBJDIR}/${kernconfbase}"
|
2003-05-08 18:19:39 +04:00
|
|
|
statusmsg "Kernel build directory: ${kernbuilddir}"
|
|
|
|
${runcmd} mkdir -p "${kernbuilddir}" ||
|
|
|
|
bomb "Cannot mkdir: ${kernbuilddir}"
|
|
|
|
if [ -z "${UPDATE}" ]; then
|
|
|
|
${runcmd} cd "${kernbuilddir}"
|
|
|
|
${runcmd} "${makewrapper}" cleandir ||
|
|
|
|
bomb "Failed to make cleandir in ${kernbuilddir}"
|
|
|
|
${runcmd} cd "${TOP}"
|
2003-01-23 19:24:08 +03:00
|
|
|
fi
|
2003-05-08 18:19:39 +04:00
|
|
|
${runcmd} "${TOOLDIR}/bin/${toolprefix}config" -b "${kernbuilddir}" \
|
2003-01-23 19:24:08 +03:00
|
|
|
-s "${TOP}/sys" "${kernconfpath}" ||
|
|
|
|
bomb "${toolprefix}config failed for ${kernconf}"
|
2003-05-08 18:19:39 +04:00
|
|
|
${runcmd} cd "${kernbuilddir}"
|
|
|
|
${runcmd} "${makewrapper}" depend ||
|
|
|
|
bomb "Failed to make depend in ${kernbuilddir}"
|
|
|
|
${runcmd} "${makewrapper}" ${parallel} all ||
|
|
|
|
bomb "Failed to make all in ${kernbuilddir}"
|
|
|
|
${runcmd} cd "${TOP}"
|
|
|
|
|
|
|
|
if [ "${runcmd}" != "echo" ]; then
|
|
|
|
statusmsg "Kernels built from ${kernconf}:"
|
2003-02-16 07:35:03 +03:00
|
|
|
kernlist=$(awk '$1 == "config" { print $2 }' ${kernconfpath})
|
|
|
|
for kern in ${kernlist:-netbsd}; do
|
|
|
|
[ -f "${kernbuilddir}/${kern}" ] && \
|
|
|
|
echo " ${kernbuilddir}/${kern}"
|
2003-05-08 18:19:39 +04:00
|
|
|
done | tee -a "${results}"
|
2003-02-16 07:35:03 +03:00
|
|
|
fi
|
2003-01-23 19:24:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
installworld()
|
|
|
|
{
|
|
|
|
dir="$1"
|
2003-05-08 18:19:39 +04:00
|
|
|
${runcmd} "${makewrapper}" INSTALLWORLDDIR="${dir}" installworld ||
|
|
|
|
bomb "Failed to make installworld to ${dir}"
|
|
|
|
statusmsg "Successful installworld to ${dir}"
|
2003-01-23 19:24:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
initdefaults
|
|
|
|
parseoptions "$@"
|
2003-03-04 05:20:28 +03:00
|
|
|
|
|
|
|
build_start=$(date)
|
2003-05-08 18:19:39 +04:00
|
|
|
statusmsg "${progname} command: $0 $@"
|
|
|
|
statusmsg "${progname} started: ${build_start}"
|
2003-03-04 05:20:28 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
rebuildmake
|
|
|
|
validatemakeparams
|
|
|
|
createmakewrapper
|
|
|
|
|
|
|
|
# Perform the operations.
|
|
|
|
#
|
2003-05-08 18:19:39 +04:00
|
|
|
for op in ${operations}; do
|
|
|
|
case "${op}" in
|
2003-01-23 19:24:08 +03:00
|
|
|
|
2003-01-26 08:34:32 +03:00
|
|
|
makewrapper)
|
|
|
|
# no-op
|
|
|
|
;;
|
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
tools)
|
|
|
|
buildtools
|
2002-10-20 19:48:01 +04:00
|
|
|
;;
|
2003-01-23 19:24:08 +03:00
|
|
|
|
2003-05-10 11:12:37 +04:00
|
|
|
obj|build|distribution|release|sets|sourcesets)
|
2003-05-08 18:19:39 +04:00
|
|
|
${runcmd} "${makewrapper}" ${parallel} ${op} ||
|
|
|
|
bomb "Failed to make ${op}"
|
|
|
|
statusmsg "Successful make ${op}"
|
2003-01-23 19:24:08 +03:00
|
|
|
;;
|
|
|
|
|
|
|
|
kernel=*)
|
|
|
|
arg=${op#*=}
|
|
|
|
buildkernel "${arg}"
|
|
|
|
;;
|
|
|
|
|
|
|
|
install=*)
|
|
|
|
arg=${op#*=}
|
2003-01-24 04:17:52 +03:00
|
|
|
if [ "${arg}" = "/" ] && \
|
|
|
|
( [ "${uname_s}" != "NetBSD" ] || \
|
2003-05-08 18:19:39 +04:00
|
|
|
[ "${uname_m}" != "${MACHINE}" ] ); then
|
2003-01-24 04:17:52 +03:00
|
|
|
bomb "'${op}' must != / for cross builds."
|
|
|
|
fi
|
2003-01-23 19:24:08 +03:00
|
|
|
installworld "${arg}"
|
|
|
|
;;
|
|
|
|
|
2002-10-20 19:48:01 +04:00
|
|
|
*)
|
2003-01-23 19:24:08 +03:00
|
|
|
bomb "Unknown operation \`${op}'"
|
2002-10-20 19:48:01 +04:00
|
|
|
;;
|
2003-01-23 19:24:08 +03:00
|
|
|
|
2002-10-20 19:48:01 +04:00
|
|
|
esac
|
2003-01-23 19:24:08 +03:00
|
|
|
done
|
2002-12-25 03:42:50 +03:00
|
|
|
|
2003-05-08 18:19:39 +04:00
|
|
|
statusmsg "${progname} ended: $(date)"
|
|
|
|
if [ -s "${results}" ]; then
|
|
|
|
echo "===> Summary of results:"
|
|
|
|
sed -e 's/^===>//;s/^/ /' "${results}"
|
|
|
|
echo "===> ."
|
|
|
|
fi
|
2003-03-04 05:20:28 +03:00
|
|
|
}
|
2003-02-19 02:59:06 +03:00
|
|
|
|
2003-01-23 19:24:08 +03:00
|
|
|
main "$@"
|