blob: 8a37ace762a050d39ea77148b9dac58a47888a70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
|
#!/bin/sh
#
# build.sh
#
# part of pfSense (https://www.pfsense.org)
# Copyright (c) 2004-2016 Rubicon Communications, LLC (Netgate)
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set +e
usage() {
echo "Usage $0 [options] [ iso | ova | memstick | memstickserial | memstickadi | all | none ]"
echo " all = iso memstick memstickserial memstickadi"
echo " none = upgrade only pkg repo"
echo " [ options ]: "
echo " --no-buildworld|-c - Will set NO_BUILDWORLD NO_BUILDKERNEL to not build kernel and world"
echo " --no-cleanobjdir|-d - Will not clean FreeBSD object built dir to allow restarting a build with NO_CLEAN"
echo " --resume-image-build|-r - Includes -c -d and also will just move directly to image creation using pre-staged data"
echo " --setup - Install required repo and ports builder require to work"
echo " --update-sources - Refetch FreeBSD sources"
echo " --rsync-repos - rsync pkg repos"
echo " --rsync-snapshots - rsync snapshots images and pkg repos"
echo " --clean-builder - clean all builder used data/resources"
echo " --build-kernels - build all configured kernels"
echo " --build-kernel argument - build specified kernel. Example --build-kernel KERNEL_NAME"
echo " --install-extra-kernels argument - Put extra kernel(s) under /kernel image directory. Example --install-extra-kernels KERNEL_NAME_WRAP"
echo " --snapshots - Build snapshots"
echo " --poudriere-snapshots - Update poudriere packages and send them to PKG_RSYNC_HOSTNAME"
echo " --setup-poudriere - Install poudriere and create necessary jails and ports tree"
echo " --create-unified-patch - Create a big patch with all changes done on FreeBSD"
echo " --update-poudriere-jails [-a ARCH_LIST] - Update poudriere jails using current patch versions"
echo " --update-poudriere-ports [-a ARCH_LIST]- Update poudriere ports tree"
echo " --update-pkg-repo [-a ARCH_LIST]- Rebuild necessary ports on poudriere and update pkg repo"
echo " --upload|-U - Upload pkgs and/or snapshots"
echo " -V VARNAME - print value of variable VARNAME"
exit 1
}
export BUILDER_ROOT=$(realpath $(dirname ${0}))
export BUILDER_TOOLS="${BUILDER_ROOT}/tools"
unset _SKIP_REBUILD_PRESTAGE
unset _USE_OLD_DATESTRING
unset pfPORTTOBUILD
unset IMAGETYPE
unset UPLOAD
unset SNAPSHOTS
unset POUDRIERE_SNAPSHOTS
unset ARCH_LIST
BUILDACTION="images"
# Maybe use options for nocleans etc?
while test "$1" != ""; do
case "${1}" in
--no-buildworld|-c)
export NO_BUILDWORLD=YES
export NO_BUILDKERNEL=YES
;;
--no-cleanobjdir|-d)
export NO_CLEAN_FREEBSD_OBJ=YES
;;
--resume-image-build|-r)
export NO_BUILDWORLD=YES
export NO_BUILDKERNEL=YES
export NO_CLEAN_FREEBSD_OBJ=YES
export DO_NOT_SIGN_PKG_REPO=YES
_SKIP_REBUILD_PRESTAGE=YES
_USE_OLD_DATESTRING=YES
;;
--setup)
BUILDACTION="builder_setup"
;;
--rsync-repos)
BUILDACTION="rsync_repos"
export DO_NOT_SIGN_PKG_REPO=YES
;;
--rsync-snapshots)
BUILDACTION="rsync_snapshots"
export DO_NOT_SIGN_PKG_REPO=YES
;;
--build-kernels)
BUILDACTION="buildkernels"
;;
--install-extra-kernels)
shift
if [ $# -eq 0 ]; then
echo "--build-kernel needs extra parameter."
echo
usage
fi
export INSTALL_EXTRA_KERNELS="${1}"
;;
--snapshots)
export SNAPSHOTS=1
;;
--poudriere-snapshots)
export POUDRIERE_SNAPSHOTS=1
;;
--build-kernel)
BUILDACTION="buildkernel"
shift
if [ $# -eq 0 ]; then
echo "--build-kernel needs extra parameter."
echo
usage
fi
export BUILD_KERNELS="${1}"
;;
--update-sources)
BUILDACTION="updatesources"
;;
--clean-builder)
BUILDACTION="cleanbuilder"
;;
--setup-poudriere)
BUILDACTION="setup_poudriere"
;;
--create-unified-patch)
BUILDACTION="create_unified_patch"
;;
--update-poudriere-jails)
BUILDACTION="update_poudriere_jails"
;;
-a)
shift
if [ $# -eq 0 ]; then
echo "-a needs extra parameter."
echo
usage
fi
export ARCH_LIST="${1}"
;;
--update-poudriere-ports)
BUILDACTION="update_poudriere_ports"
;;
--update-pkg-repo)
BUILDACTION="update_pkg_repo"
;;
--upload|-U)
export UPLOAD=1
;;
all|none|*iso*|*ova*|*memstick*|*memstickserial*|*memstickadi*)
BUILDACTION="images"
IMAGETYPE="${1}"
;;
-V)
_USE_OLD_DATESTRING=YES
shift
[ -n "${1}" ] \
&& var_to_print="${1}"
;;
--snapshot-update-status)
shift
snapshot_status_message="${1}"
BUILDACTION="snapshot_status_message"
_USE_OLD_DATESTRING=YES
;;
*)
_USE_OLD_DATESTRING=YES
usage
esac
shift
done
# Suck in local vars
. ${BUILDER_TOOLS}/builder_defaults.sh
# Let user define ARCH_LIST in build.conf
[ -z "${ARCH_LIST}" -a -n "${DEFAULT_ARCH_LIST}" ] \
&& ARCH_LIST="${DEFAULT_ARCH_LIST}"
# Suck in script helper functions
. ${BUILDER_TOOLS}/builder_common.sh
# Print var required with -V and exit
if [ -n "${var_to_print}" ]; then
eval "echo \$${var_to_print}"
exit 0
fi
# Update snapshot status and exit
if [ "${BUILDACTION}" = "snapshot_status_message" ]; then
if [ -z "${POUDRIERE_SNAPSHOTS}" ]; then
export SNAPSHOTS=1
fi
snapshots_update_status "${snapshot_status_message}"
exit 0
fi
# This should be run first
launch
case $BUILDACTION in
builder_setup)
builder_setup
;;
buildkernels)
update_freebsd_sources
build_all_kernels
;;
buildkernel)
update_freebsd_sources
build_all_kernels
;;
cleanbuilder)
clean_builder
;;
images)
# It will be handled below
;;
updatesources)
update_freebsd_sources
;;
setup_poudriere)
poudriere_init
;;
create_unified_patch)
poudriere_create_patch
;;
update_poudriere_jails)
poudriere_update_jails
;;
update_poudriere_ports)
poudriere_update_ports
;;
rsync_repos)
unset SKIP_FINAL_RSYNC
export UPLOAD=1
pkg_repo_rsync "${CORE_PKG_PATH}"
;;
rsync_snapshots)
unset SKIP_FINAL_RSYNC
export UPLOAD=1
snapshots_scp_files
;;
update_pkg_repo)
if [ -n "${UPLOAD}" -a ! -f /usr/local/bin/rsync ]; then
echo "ERROR: rsync is not installed, aborting..."
exit 1
fi
poudriere_bulk
;;
*)
usage
;;
esac
if [ "${BUILDACTION}" != "images" ]; then
finish
exit 0
fi
if [ -n "${SNAPSHOTS}" -a -n "${UPLOAD}" ]; then
_required=" \
RSYNCIP \
RSYNCUSER \
RSYNCPATH \
PKG_RSYNC_HOSTNAME \
PKG_RSYNC_USERNAME \
PKG_RSYNC_SSH_PORT \
PKG_RSYNC_DESTDIR \
PKG_REPO_SERVER_DEVEL \
PKG_REPO_SERVER_RELEASE \
PKG_REPO_SERVER_STAGING \
PKG_REPO_BRANCH_DEVEL \
PKG_REPO_BRANCH_RELEASE"
for _var in ${_required}; do
eval "_value=\${$_var}"
if [ -z "${_value}" ]; then
echo ">>> ERROR: ${_var} is not defined"
exit 1
fi
done
if [ ! -f /usr/local/bin/rsync ]; then
echo "ERROR: rsync is not installed, aborting..."
exit 1
fi
fi
if [ $# -gt 1 ]; then
echo "ERROR: Too many arguments given."
echo
usage
fi
if [ -n "${SNAPSHOTS}" -a -z "${IMAGETYPE}" ]; then
IMAGETYPE="all"
fi
if [ -z "${IMAGETYPE}" ]; then
echo "ERROR: Need to specify image type to build."
echo
usage
fi
if [ "$IMAGETYPE" = "none" ]; then
_IMAGESTOBUILD=""
elif [ "$IMAGETYPE" = "all" ]; then
_IMAGESTOBUILD="iso memstick memstickserial"
if [ "${TARGET}" = "amd64" ]; then
_IMAGESTOBUILD="${_IMAGESTOBUILD} memstickadi"
if [ -n "${_IS_RELEASE}" ]; then
_IMAGESTOBUILD="${_IMAGESTOBUILD} ova"
fi
fi
else
_IMAGESTOBUILD="${IMAGETYPE}"
fi
echo ">>> Building image type(s): ${_IMAGESTOBUILD}"
if [ -n "${SNAPSHOTS}" ]; then
snapshots_update_status ">>> Starting snapshot build operations"
if pkg update -r ${PRODUCT_NAME} >/dev/null 2>&1; then
snapshots_update_status ">>> Updating builder packages... "
pkg upgrade -r ${PRODUCT_NAME} -y -q >/dev/null 2>&1
fi
fi
if [ -z "${_SKIP_REBUILD_PRESTAGE}" ]; then
[ -n "${CORE_PKG_PATH}" -a -d "${CORE_PKG_PATH}" ] \
&& rm -rf ${CORE_PKG_PATH}
# Cleanup environment before start
clean_builder
# Make sure source directories are present.
update_freebsd_sources
git_last_commit
# Ensure binaries are present that builder system requires
builder_setup
# Build world, kernel and install
make_world
# Build kernels
build_all_kernels
# Install kernel on installer
installkernel ${INSTALLER_CHROOT_DIR} ${PRODUCT_NAME}
# Prepare pre-final staging area
clone_to_staging_area
# Install packages needed for Product
install_pkg_install_ports
# Create core repo
core_pkg_create_repo
fi
# Send core repo to staging area
pkg_repo_rsync "${CORE_PKG_PATH}" ignore_final_rsync
export DEFAULT_KERNEL=${DEFAULT_KERNEL_ISO:-"${PRODUCT_NAME}"}
# XXX: Figure out why wait is failing and proper fix
# Global variable to keep track of process running in bg
export _bg_pids=""
for _IMGTOBUILD in $_IMAGESTOBUILD; do
# Clean up items that should be cleaned each run
staginareas_clean_each_run
case "${_IMGTOBUILD}" in
iso)
if [ -n "${ISO_VARIANTS}" ]; then
for _variant in ${ISO_VARIANTS}; do
create_iso_image ${_variant}
done
else
create_iso_image
fi
;;
memstick)
if [ -n "${MEMSTICK_VARIANTS}" ]; then
for _variant in ${MEMSTICK_VARIANTS}; do
create_memstick_image ${_variant}
done
else
create_memstick_image
fi
;;
memstickserial)
create_memstick_serial_image
;;
memstickadi)
create_memstick_adi_image
;;
ova)
old_custom_package_list="${custom_package_list}"
export custom_package_list="${custom_package_list} ${PRODUCT_NAME}-pkg-Open-VM-Tools"
install_pkg_install_ports
create_ova_image
export custom_package_list="${old_custom_package_list}"
install_pkg_install_ports
;;
esac
done
if [ -n "${_bg_pids}" ]; then
if [ -n "${SNAPSHOTS}" ]; then
snapshots_update_status ">>> NOTE: waiting for jobs: ${_bg_pids} to finish..."
else
echo ">>> NOTE: waiting for jobs: ${_bg_pids} to finish..."
fi
wait
# XXX: For some reason wait is failing, workaround it tracking all PIDs
while [ -n "${_bg_pids}" ]; do
_tmp_pids="${_bg_pids}"
unset _bg_pids
for p in ${_tmp_pids}; do
[ -z "${p}" ] \
&& continue
kill -0 ${p} >/dev/null 2>&1 \
&& _bg_pids="${_bg_pids}${_bg_pids:+ }${p}"
done
[ -n "${_bg_pids}" ] \
&& sleep 1
done
fi
if [ -n "${SNAPSHOTS}" ]; then
if [ "${IMAGETYPE}" = "none" -a -n "${UPLOAD}" ]; then
pkg_repo_rsync "${CORE_PKG_PATH}"
elif [ "${IMAGETYPE}" != "none" ]; then
snapshots_create_sha256
# SCP files to snapshot web hosting area
if [ -n "${UPLOAD}" ]; then
snapshots_scp_files
fi
fi
# Alert the world that we have some snapshots ready.
snapshots_update_status ">>> Builder run is complete."
fi
echo ">>> ${IMAGES_FINAL_DIR} now contains:"
(cd ${IMAGES_FINAL_DIR} && find ${IMAGES_FINAL_DIR} -type f)
set -e
# Run final finish routines
finish
|