1#!/bin/sh
2#-
3# Copyright (c) 2013, 2014 The FreeBSD Foundation
4# Copyright (c) 2013 Glen Barber
5# Copyright (c) 2011 Nathan Whitehorn
6# All rights reserved.
7#
8# Portions of this software were developed by Glen Barber
9# under sponsorship from the FreeBSD Foundation.
10#
11# Redistribution and use in source and binary forms, with or without
12# modification, are permitted provided that the following conditions
13# are met:
14# 1. Redistributions of source code must retain the above copyright
15#    notice, this list of conditions and the following disclaimer.
16# 2. Redistributions in binary form must reproduce the above copyright
17#    notice, this list of conditions and the following disclaimer in the
18#    documentation and/or other materials provided with the distribution.
19#
20# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30# SUCH DAMAGE.
31#
32# release.sh: check out source trees, and build release components with
33#  totally clean, fresh trees.
34# Based on release/generate-release.sh written by Nathan Whitehorn
35#
36# $FreeBSD$
37#
38
39PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin"
40export PATH
41
42# The directory within which the release will be built.
43CHROOTDIR="/scratch"
44RELENGDIR="$(realpath $(dirname $(basename ${0})))"
45
46# The default version control system command to obtain the sources.
47VCSCMD="svn checkout"
48
49# The default svn checkout server, and svn branches for src/, doc/,
50# and ports/.
51SVNROOT="svn://svn.FreeBSD.org/"
52SRCBRANCH="base/head@rHEAD"
53DOCBRANCH="doc/head@rHEAD"
54PORTBRANCH="ports/head@rHEAD"
55
56# Set for embedded device builds.
57EMBEDDEDBUILD=
58
59# Sometimes one needs to checkout src with --force svn option.
60# If custom kernel configs copied to src tree before checkout, e.g.
61SRC_FORCE_CHECKOUT=
62
63# The default make.conf and src.conf to use.  Set to /dev/null
64# by default to avoid polluting the chroot(8) environment with
65# non-default settings.
66MAKE_CONF="/dev/null"
67SRC_CONF="/dev/null"
68
69# The number of make(1) jobs, defaults to the number of CPUs available for
70# buildworld, and half of number of CPUs available for buildkernel.
71WORLD_FLAGS="-j$(sysctl -n hw.ncpu)"
72KERNEL_FLAGS="-j$(( $(( $(sysctl -n hw.ncpu) + 1 )) / 2))"
73
74MAKE_FLAGS="-s"
75
76# The name of the kernel to build, defaults to GENERIC.
77KERNEL="GENERIC"
78
79# Set to non-empty value to disable checkout of doc/ and/or ports/.  Disabling
80# ports/ checkout also forces NODOC to be set.
81NODOC=
82NOPORTS=
83
84# Set to non-empty value to build dvd1.iso as part of the release.
85WITH_DVD=
86WITH_COMPRESSED_IMAGES=
87
88# Set to non-empty value to build virtual machine images as part of
89# the release.
90WITH_VMIMAGES=
91WITH_COMPRESSED_VMIMAGES=
92
93usage() {
94	echo "Usage: $0 [-c release.conf]"
95	exit 1
96}
97
98while getopts c: opt; do
99	case ${opt} in
100	c)
101		RELEASECONF="${OPTARG}"
102		if [ ! -e "${RELEASECONF}" ]; then
103			echo "ERROR: Configuration file ${RELEASECONF} does not exist."
104			exit 1
105		fi
106		# Source the specified configuration file for overrides
107		. ${RELEASECONF}
108		;;
109	\?)
110		usage
111		;;
112	esac
113done
114shift $(($OPTIND - 1))
115
116# Fix for backwards-compatibility with release.conf that does not have the
117# trailing '/'.
118case ${SVNROOT} in
119	*svn*)
120		SVNROOT="${SVNROOT}/"
121		;;
122	*)
123		;;
124esac
125
126# Prefix the branches with the SVNROOT for the full checkout URL.
127SRCBRANCH="${SVNROOT}${SRCBRANCH}"
128DOCBRANCH="${SVNROOT}${DOCBRANCH}"
129PORTBRANCH="${SVNROOT}${PORTBRANCH}"
130
131if [ -n "${EMBEDDEDBUILD}" ]; then
132	if [ -z "${XDEV}" ] || [ -z "${XDEV_ARCH}" ]; then
133		echo "ERROR: XDEV and XDEV_ARCH must be set in ${RELEASECONF}."
134		exit 1
135	fi
136	WITH_DVD=
137	WITH_COMPRESSED_IMAGES=
138	NODOC=yes
139fi
140
141# If PORTS is set and NODOC is unset, force NODOC=yes because the ports tree
142# is required to build the documentation set.
143if [ -n "${NOPORTS}" ] && [ -z "${NODOC}" ]; then
144	echo "*** NOTICE: Setting NODOC=1 since ports tree is required"
145	echo "            and NOPORTS is set."
146	NODOC=yes
147fi
148
149# If NOPORTS and/or NODOC are unset, they must not pass to make as variables.
150# The release makefile verifies definedness of NOPORTS/NODOC variables
151# instead of their values.
152DOCPORTS=
153if [ -n "${NOPORTS}" ]; then
154	DOCPORTS="NOPORTS=yes "
155fi
156if [ -n "${NODOC}" ]; then
157	DOCPORTS="${DOCPORTS}NODOC=yes"
158fi
159
160# The aggregated build-time flags based upon variables defined within
161# this file, unless overridden by release.conf.  In most cases, these
162# will not need to be changed.
163CONF_FILES="__MAKE_CONF=${MAKE_CONF} SRCCONF=${SRC_CONF}"
164if [ -n "${TARGET}" ] && [ -n "${TARGET_ARCH}" ]; then
165	ARCH_FLAGS="TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH}"
166else
167	ARCH_FLAGS=
168fi
169CHROOT_MAKEENV="${CHROOT_MAKEENV} MAKEOBJDIRPREFIX=${CHROOTDIR}/tmp/obj"
170CHROOT_WMAKEFLAGS="${MAKE_FLAGS} ${WORLD_FLAGS} ${CONF_FILES}"
171CHROOT_IMAKEFLAGS="${CONF_FILES}"
172CHROOT_DMAKEFLAGS="${CONF_FILES}"
173RELEASE_WMAKEFLAGS="${MAKE_FLAGS} ${WORLD_FLAGS} ${ARCH_FLAGS} ${CONF_FILES}"
174RELEASE_KMAKEFLAGS="${MAKE_FLAGS} ${KERNEL_FLAGS} KERNCONF=\"${KERNEL}\" ${ARCH_FLAGS} ${CONF_FILES}"
175RELEASE_RMAKEFLAGS="${ARCH_FLAGS} KERNCONF=\"${KERNEL}\" ${CONF_FILES} \
176	${DOCPORTS} WITH_DVD=${WITH_DVD} WITH_VMIMAGES=${WITH_VMIMAGES}"
177
178# Force src checkout if configured
179FORCE_SRC_KEY=
180if [ -n "${SRC_FORCE_CHECKOUT}" ]; then
181	FORCE_SRC_KEY="--force"
182fi
183
184if [ -z "${CHROOTDIR}" ]; then
185	echo "Please set CHROOTDIR."
186	exit 1
187fi
188
189if [ $(id -u) -ne 0 ]; then
190	echo "Needs to be run as root."
191	exit 1
192fi
193
194set -e # Everything must succeed
195
196mkdir -p ${CHROOTDIR}/usr
197
198if [ -z "${SRC_UPDATE_SKIP}" ]; then
199	${VCSCMD} ${FORCE_SRC_KEY} ${SRCBRANCH} ${CHROOTDIR}/usr/src
200fi
201if [ -z "${NODOC}" ] && [ -z "${DOC_UPDATE_SKIP}" ]; then
202	${VCSCMD} ${DOCBRANCH} ${CHROOTDIR}/usr/doc
203fi
204if [ -z "${NOPORTS}" ] && [ -z "${PORTS_UPDATE_SKIP}" ]; then
205	${VCSCMD} ${PORTBRANCH} ${CHROOTDIR}/usr/ports
206fi
207
208if [ -z "${CHROOTBUILD_SKIP}" ]; then
209	cd ${CHROOTDIR}/usr/src
210	env ${CHROOT_MAKEENV} make ${CHROOT_WMAKEFLAGS} buildworld
211	env ${CHROOT_MAKEENV} make ${CHROOT_IMAKEFLAGS} installworld \
212		DESTDIR=${CHROOTDIR}
213	env ${CHROOT_MAKEENV} make ${CHROOT_DMAKEFLAGS} distribution \
214		DESTDIR=${CHROOTDIR}
215fi
216mount -t devfs devfs ${CHROOTDIR}/dev
217cp /etc/resolv.conf ${CHROOTDIR}/etc/resolv.conf
218trap "umount ${CHROOTDIR}/dev" EXIT # Clean up devfs mount on exit
219
220# If MAKE_CONF and/or SRC_CONF are set and not character devices (/dev/null),
221# copy them to the chroot.
222if [ -e ${MAKE_CONF} ] && [ ! -c ${MAKE_CONF} ]; then
223	mkdir -p ${CHROOTDIR}/$(dirname ${MAKE_CONF})
224	cp ${MAKE_CONF} ${CHROOTDIR}/${MAKE_CONF}
225fi
226if [ -e ${SRC_CONF} ] && [ ! -c ${SRC_CONF} ]; then
227	mkdir -p ${CHROOTDIR}/$(dirname ${SRC_CONF})
228	cp ${SRC_CONF} ${CHROOTDIR}/${SRC_CONF}
229fi
230
231# Embedded builds do not use the 'make release' target.
232if [ -n "${EMBEDDEDBUILD}" ]; then
233	# If a crochet configuration file exists in *this* checkout of
234	# release/, copy it to the /tmp/external directory within the chroot.
235	# This allows building embedded releases without relying on updated
236	# scripts and/or configurations to exist in the branch being built.
237	if [ -e ${RELENGDIR}/tools/${XDEV}/crochet-${KERNEL}.conf ] && \
238		[ -e ${RELENGDIR}/${XDEV}/release.sh ]; then
239			mkdir -p ${CHROOTDIR}/tmp/external/${XDEV}/
240			cp ${RELENGDIR}/tools/${XDEV}/crochet-${KERNEL}.conf \
241				${CHROOTDIR}/tmp/external/${XDEV}/crochet-${KERNEL}.conf
242			/bin/sh ${RELENGDIR}/${XDEV}/release.sh
243	fi
244	# If the script does not exist for this architecture, exit.
245	# This probably should be checked earlier, but allowing the rest
246	# of the build process to get this far will at least set up the
247	# chroot environment for testing.
248	exit 0
249else
250	# Not embedded.
251	continue
252fi
253
254if [ -d ${CHROOTDIR}/usr/ports ]; then
255	# Run ldconfig(8) in the chroot directory so /var/run/ld-elf*.so.hints
256	# is created.  This is needed by ports-mgmt/pkg.
257	chroot ${CHROOTDIR} /etc/rc.d/ldconfig forcerestart
258
259	## Trick the ports 'run-autotools-fixup' target to do the right thing.
260	_OSVERSION=$(sysctl -n kern.osreldate)
261	REVISION=$(chroot ${CHROOTDIR} make -C /usr/src/release -V REVISION)
262	BRANCH=$(chroot ${CHROOTDIR} make -C /usr/src/release -V BRANCH)
263	UNAME_r=${REVISION}-${BRANCH}
264	if [ -d ${CHROOTDIR}/usr/doc ] && [ -z "${NODOC}" ]; then
265		PBUILD_FLAGS="OSVERSION=${_OSVERSION} BATCH=yes"
266		PBUILD_FLAGS="${PBUILD_FLAGS} UNAME_r=${UNAME_r}"
267		PBUILD_FLAGS="${PBUILD_FLAGS} OSREL=${REVISION}"
268		chroot ${CHROOTDIR} make -C /usr/ports/textproc/docproj \
269			${PBUILD_FLAGS} OPTIONS_UNSET="FOP IGOR" \
270			install clean distclean
271	fi
272fi
273
274eval chroot ${CHROOTDIR} make -C /usr/src ${RELEASE_WMAKEFLAGS} buildworld
275eval chroot ${CHROOTDIR} make -C /usr/src ${RELEASE_KMAKEFLAGS} buildkernel
276eval chroot ${CHROOTDIR} make -C /usr/src/release ${RELEASE_RMAKEFLAGS} \
277	release
278eval chroot ${CHROOTDIR} make -C /usr/src/release ${RELEASE_RMAKEFLAGS} \
279	install DESTDIR=/R WITH_COMPRESSED_IMAGES=${WITH_COMPRESSED_IMAGES} \
280	WITH_COMPRESSED_VMIMAGES=${WITH_COMPRESSED_VMIMAGES}
281