blob: 67d42bbd4b7ac5fd3512f60fa7d3c0952cad5194 [file] [log] [blame]
Alanny Lopez56fc36a2017-07-27 13:55:44 -05001#!/bin/bash
Alanny Lopezb0a12dd2017-04-24 16:21:47 -05002###############################################################################
Chris Smart02651712015-11-11 11:09:00 +11003#
Michael Shepos3939e952019-01-16 16:00:35 -06004# This build script is for running the OpenBMC builds as Docker containers.
Alanny Lopez3fbaa512017-04-24 15:46:52 -05005#
Alanny Lopezb0a12dd2017-04-24 16:21:47 -05006###############################################################################
7#
Alanny Lopeze08e8702018-02-24 18:07:13 -06008# Script Variables:
9# build_scripts_dir The path of the openbmc-build-scripts directory.
10# Default: The directory containing this script
11# http_proxy The HTTP address of the proxy server to connect to.
12# Default: "", proxy is not setup if this is not set
13# WORKSPACE Path of the workspace directory where some intermediate
14# files and the images will be saved to.
15# Default: "~/{RandomNumber}"
Andrew Geisslerdc1e7022018-03-26 07:54:48 -070016# num_cpu Number of cpu's to give bitbake, default is total amount
17# in system
Lei YU237bd082020-09-22 11:15:08 +080018# UBUNTU_MIRROR [optional] The URL of a mirror of Ubuntu to override the
19# default ones in /etc/apt/sources.list
Lei YU39587ad2020-06-17 19:55:54 +080020# default is empty, and no mirror is used.
Lei YU237bd082020-09-22 11:15:08 +080021# ENV_LOCAL_CONF [optional] The environment variables to inject into the
22# build, which will be written into local.conf.
23# default is empty.
Andrew Geissler0edb68c2024-06-24 16:01:38 -040024# CONTAINER_ONLY Set to "true" if you only want to build the docker
25# container. The bitbake will not occur in this case.
Andrew Geisslerb80ea072024-10-07 15:43:34 -040026# DOCKER_REG: <optional, the URL of a docker registry to utilize
Andrew Geisslerfb45daa2024-10-09 12:26:56 -040027# instead of our default (public.ecr.aws/ubuntu)
28# (ex. docker.io or public.ecr.aws/docker/library)
Alanny Lopezb0a12dd2017-04-24 16:21:47 -050029#
Alanny Lopeze08e8702018-02-24 18:07:13 -060030# Docker Image Build Variables:
Alanny Lopez1246b032018-02-24 23:34:55 -060031# BITBAKE_OPTS Set to "-c populate_sdk" or whatever other BitBake options
Alanny Lopeze08e8702018-02-24 18:07:13 -060032# you'd like to pass into the build.
33# Default: "", no options set
Alanny Lopez1246b032018-02-24 23:34:55 -060034# build_dir Path where the actual BitBake build occurs inside the
Alanny Lopeze08e8702018-02-24 18:07:13 -060035# container, path cannot be located on network storage.
Andrew Geisslerbd11f692020-09-04 09:36:28 -050036# Default: "$WORKSPACE/build"
Alanny Lopeze08e8702018-02-24 18:07:13 -060037# distro The distro used as the base image for the build image:
Andrew Geisslerfb45daa2024-10-09 12:26:56 -040038# fedora|ubuntu. Note that if you chose fedora, you will
39# need to also update DOCKER_REG to a supported fedora reg.
Alanny Lopeze08e8702018-02-24 18:07:13 -060040# Default: "ubuntu"
Alanny Lopez1246b032018-02-24 23:34:55 -060041# img_name The name given to the target build's docker image.
Alanny Lopeze08e8702018-02-24 18:07:13 -060042# Default: "openbmc/${distro}:${imgtag}-${target}-${ARCH}"
Alanny Lopez1246b032018-02-24 23:34:55 -060043# img_tag The base docker image distro tag:
Alanny Lopeze08e8702018-02-24 18:07:13 -060044# ubuntu: latest|16.04|14.04|trusty|xenial
45# fedora: 23|24|25
46# Default: "latest"
Patrick Williams01dd4362021-02-19 17:45:40 -060047# target The target we aim to build. Any system supported by
48# the openbmc/openbmc `setup` script is an option.
Ed Tanousd3c516b2021-08-19 11:39:09 -070049# repotest is a target to specifically run the CI checks
Patrick Williams1642d132021-02-19 15:18:20 -060050# Default: "qemuarm"
Andrew Geissler215e43c2019-04-23 10:57:48 -050051# no_tar Set to true if you do not want the debug tar built
52# Default: "false"
Manojkiran Edaa6ebc6e2024-06-17 11:51:45 +053053# nice_priority Set nice priority for bitbake command.
Michael Shepos33aeca42019-06-13 02:36:17 -050054# Nice:
55# Run with an adjusted niceness, which affects process
56# scheduling. Nice values range from -20 (most favorable
57# to the process) to 19 (least favorable to the process).
58# Default: "", nice is not used if nice_priority is not set
Alanny Lopez723fea62017-09-12 11:22:17 -050059#
Alanny Lopeze08e8702018-02-24 18:07:13 -060060# Deployment Variables:
Alanny Lopez1246b032018-02-24 23:34:55 -060061# obmc_dir Path of the OpenBMC repo directory used as a reference
Alanny Lopeze08e8702018-02-24 18:07:13 -060062# for the build inside the container.
63# Default: "${WORKSPACE}/openbmc"
Lei YUdf0e45c2020-09-03 11:25:57 +080064# ssc_dir Path of the OpenBMC shared directory that contains the
65# downloads dir and the sstate dir.
66# Default: "${HOME}"
Michael Shepos10afbb22019-02-06 13:33:07 -060067# xtrct_small_copy_dir
68# Directory within build_dir that should be copied to
69# xtrct_path. The directory and all parents up to, but not
70# including, build_dir will be copied. For example, if
71# build_dir is set to "/tmp/openbmc" and this is set to
72# "build/tmp", the directory at xtrct_path will have the
73# following directory structure:
74# xtrct_path
75# | - build
76# | - tmp
77# ...
78# Can also be set to the empty string to copy the entire
79# contents of build_dir to xtrct_path.
80# Default: "deploy/images".
Alanny Lopezb0a12dd2017-04-24 16:21:47 -050081#
82###############################################################################
Joel Stanley4b8b2392016-02-12 15:44:57 +103083# Trace bash processing. Set -e so when a step fails, we fail the build
Joel Stanley38c9d142016-02-16 12:31:55 +103084set -xeo pipefail
Chris Smart02651712015-11-11 11:09:00 +110085
Alanny Lopez46967702018-02-25 00:29:14 -060086# Script Variables:
87build_scripts_dir=${build_scripts_dir:-"$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"}
88http_proxy=${http_proxy:-}
89WORKSPACE=${WORKSPACE:-${HOME}/${RANDOM}${RANDOM}}
Andrew Geisslerdc1e7022018-03-26 07:54:48 -070090num_cpu=${num_cpu:-$(nproc)}
Lei YU39587ad2020-06-17 19:55:54 +080091UBUNTU_MIRROR=${UBUNTU_MIRROR:-""}
Lei YU237bd082020-09-22 11:15:08 +080092ENV_LOCAL_CONF=${ENV_LOCAL_CONF:-""}
Andrew Geissler0edb68c2024-06-24 16:01:38 -040093container_only=${CONTAINER_ONLY:-false}
Andrew Geisslerfb45daa2024-10-09 12:26:56 -040094docker_reg=${DOCKER_REG:-"public.ecr.aws/ubuntu"}
Alanny Lopez46967702018-02-25 00:29:14 -060095
96# Docker Image Build Variables:
Andrew Geisslerbd11f692020-09-04 09:36:28 -050097build_dir=${build_dir:-${WORKSPACE}/build}
Chris Smart02651712015-11-11 11:09:00 +110098distro=${distro:-ubuntu}
Alanny Lopez1246b032018-02-24 23:34:55 -060099img_tag=${img_tag:-latest}
Patrick Williams1642d132021-02-19 15:18:20 -0600100target=${target:-qemuarm}
Andrew Geissler215e43c2019-04-23 10:57:48 -0500101no_tar=${no_tar:-false}
Michael Shepos33aeca42019-06-13 02:36:17 -0500102nice_priority=${nice_priority:-}
Alanny Lopez46967702018-02-25 00:29:14 -0600103
104# Deployment variables
Alanny Lopez46967702018-02-25 00:29:14 -0600105obmc_dir=${obmc_dir:-${WORKSPACE}/openbmc}
Lei YUdf0e45c2020-09-03 11:25:57 +0800106ssc_dir=${ssc_dir:-${HOME}}
Michael Shepos10afbb22019-02-06 13:33:07 -0600107xtrct_small_copy_dir=${xtrct_small_copy_dir:-deploy/images}
Michael Shepos3939e952019-01-16 16:00:35 -0600108xtrct_path="${obmc_dir}/build/tmp"
109xtrct_copy_timeout="300"
Alanny Lopez46967702018-02-25 00:29:14 -0600110
Andrew Geissler2eb45d32019-09-18 21:56:44 -0500111bitbake_target="obmc-phosphor-image"
Chris Smartc3522542016-02-16 11:59:36 +1100112PROXY=""
Chris Smart02651712015-11-11 11:09:00 +1100113
Lei YU39587ad2020-06-17 19:55:54 +0800114MIRROR=""
115if [[ -n "${UBUNTU_MIRROR}" ]]; then
116 MIRROR="RUN echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME) main restricted universe multiverse\" > /etc/apt/sources.list && \
117 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-updates main restricted universe multiverse\" >> /etc/apt/sources.list && \
118 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-security main restricted universe multiverse\" >> /etc/apt/sources.list && \
119 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-proposed main restricted universe multiverse\" >> /etc/apt/sources.list && \
120 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-backports main restricted universe multiverse\" >> /etc/apt/sources.list"
121fi
122
Chris Smart02651712015-11-11 11:09:00 +1100123# Timestamp for job
124echo "Build started, $(date)"
125
Alanny Lopez1246b032018-02-24 23:34:55 -0600126# If the obmc_dir directory doesn't exist clone it in
Patrick Williams384d7412020-11-06 16:15:41 -0600127if [ ! -d "${obmc_dir}" ]; then
Patrick Williams476a7e92022-12-06 09:52:53 -0600128 echo "Clone in openbmc master to ${obmc_dir}"
129 git clone https://github.com/openbmc/openbmc "${obmc_dir}"
Andrew Geisslerc3c35202016-08-16 08:47:50 -0500130fi
131
Ed Tanousd3c516b2021-08-19 11:39:09 -0700132if [[ "$target" = repotest ]]; then
Patrick Williams476a7e92022-12-06 09:52:53 -0600133 DOCKER_IMAGE_NAME=$(./scripts/build-unit-test-docker)
134 docker run --cap-add=sys_admin --rm=true \
135 --network host \
136 --privileged=true \
137 -u "$USER" \
138 -w "${obmc_dir}" -v "${obmc_dir}:${obmc_dir}" \
139 -t "${DOCKER_IMAGE_NAME}" \
140 "${obmc_dir}"/meta-phosphor/scripts/run-repotest
141 exit
Ed Tanousd3c516b2021-08-19 11:39:09 -0700142fi
143
Alanny Lopez1246b032018-02-24 23:34:55 -0600144# Make and chown the xtrct_path directory to avoid permission errors
Patrick Williams384d7412020-11-06 16:15:41 -0600145if [ ! -d "${xtrct_path}" ]; then
Patrick Williams476a7e92022-12-06 09:52:53 -0600146 mkdir -p "${xtrct_path}"
Alanny Lopez723fea62017-09-12 11:22:17 -0500147fi
Patrick Williams384d7412020-11-06 16:15:41 -0600148chown "${UID}:${GROUPS[0]}" "${xtrct_path}"
Alanny Lopez723fea62017-09-12 11:22:17 -0500149
Patrick Williams01dd4362021-02-19 17:45:40 -0600150# Perform overrides for specific machines as required.
Adriana Kobylak1d2682b2021-04-01 18:40:42 +0000151DISTRO=${DISTRO:-}
Chris Smart02651712015-11-11 11:09:00 +1100152
Patrick Williams01dd4362021-02-19 17:45:40 -0600153# Set build target and BitBake command
154MACHINE="${target}"
Patrick Williamsf88e83f2021-02-19 15:15:06 -0600155BITBAKE_CMD="source ./setup ${MACHINE} ${build_dir}"
Brad Bishop7161a172018-10-05 16:48:06 -0400156
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500157# Configure Docker build
Chris Smart02651712015-11-11 11:09:00 +1100158if [[ "${distro}" == fedora ]];then
159
Patrick Williams476a7e92022-12-06 09:52:53 -0600160 if [[ -n "${http_proxy}" ]]; then
161 PROXY="RUN echo \"proxy=${http_proxy}\" >> /etc/dnf/dnf.conf"
162 fi
Chris Smart02651712015-11-11 11:09:00 +1100163
Patrick Williams476a7e92022-12-06 09:52:53 -0600164 Dockerfile=$(cat << EOF
Andrew Geisslerb80ea072024-10-07 15:43:34 -0400165 FROM ${docker_reg}/${distro}:${img_tag}
Chris Smart02651712015-11-11 11:09:00 +1100166
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500167 ${PROXY}
Chris Smart02651712015-11-11 11:09:00 +1100168
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500169 RUN dnf --refresh install -y \
170 bzip2 \
171 chrpath \
172 cpio \
173 diffstat \
Andrew Geissler36a12ec2022-05-04 16:46:56 -0400174 file \
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500175 findutils \
176 gcc \
177 gcc-c++ \
178 git \
Frederic Jacob865a0912023-07-07 19:05:53 -0700179 lz4 \
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500180 make \
181 patch \
182 perl-bignum \
183 perl-Data-Dumper \
184 perl-Thread-Queue \
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500185 python3-devel \
186 SDL-devel \
187 socat \
188 subversion \
189 tar \
190 texinfo \
191 wget \
Saqib Khan5158a322017-10-23 11:31:24 -0500192 which \
Andrew Geissler40c1c9c2020-09-04 10:50:36 -0500193 file \
194 hostname \
195 rpcgen \
196 glibc-langpack-en \
Frederic Jacob865a0912023-07-07 19:05:53 -0700197 glibc-locale-source \
198 zstd
Andrew Geissler40c1c9c2020-09-04 10:50:36 -0500199
200 # Set the locale
201 ENV LANG=en_US.utf8
202 RUN localedef -f UTF-8 -i en_US en_US.UTF-8
Chris Smart02651712015-11-11 11:09:00 +1100203
Patrick Williams384d7412020-11-06 16:15:41 -0600204 RUN grep -q ${GROUPS[0]} /etc/group || groupadd -g ${GROUPS[0]} ${USER}
205 RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS[0]} ${USER}
Chris Smart02651712015-11-11 11:09:00 +1100206
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500207 USER ${USER}
208 ENV HOME ${HOME}
Chris Smart02651712015-11-11 11:09:00 +1100209EOF
Patrick Williams476a7e92022-12-06 09:52:53 -0600210 )
Chris Smart02651712015-11-11 11:09:00 +1100211
Alanny Lopezccc650e2017-04-24 15:14:20 -0500212elif [[ "${distro}" == ubuntu ]]; then
213
Patrick Williams476a7e92022-12-06 09:52:53 -0600214 if [[ -n "${http_proxy}" ]]; then
215 PROXY="RUN echo \"Acquire::http::Proxy \\"\"${http_proxy}/\\"\";\" > /etc/apt/apt.conf.d/000apt-cacher-ng-proxy"
216 fi
Chris Smart02651712015-11-11 11:09:00 +1100217
Patrick Williams476a7e92022-12-06 09:52:53 -0600218 Dockerfile=$(cat << EOF
Andrew Geisslerb80ea072024-10-07 15:43:34 -0400219 FROM ${docker_reg}/${distro}:${img_tag}
Chris Smart02651712015-11-11 11:09:00 +1100220
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500221 ${PROXY}
Lei YU39587ad2020-06-17 19:55:54 +0800222 ${MIRROR}
Chris Smart02651712015-11-11 11:09:00 +1100223
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500224 ENV DEBIAN_FRONTEND noninteractive
Saqib Khan75635122017-03-23 10:57:34 -0500225
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500226 RUN apt-get update && apt-get install -yy \
227 build-essential \
228 chrpath \
Andrew Geisslerce47cad2021-09-03 08:45:03 -0500229 cpio \
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500230 debianutils \
231 diffstat \
Andrew Geissler36a12ec2022-05-04 16:46:56 -0400232 file \
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500233 gawk \
234 git \
Andrew Geisslerce47cad2021-09-03 08:45:03 -0500235 iputils-ping \
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500236 libdata-dumper-simple-perl \
Andrew Geisslerc75b5432024-12-10 15:30:03 -0600237 lz4 \
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500238 libsdl1.2-dev \
239 libthread-queue-any-perl \
Alanny Lopez27af3a02017-05-26 10:49:06 -0500240 locales \
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500241 python3 \
242 socat \
243 subversion \
244 texinfo \
Andrew Geisslerb7291422022-12-14 11:48:36 -0600245 vim \
Andrew Geissler0a82a762021-09-03 08:46:24 -0500246 wget \
247 zstd
Chris Smart02651712015-11-11 11:09:00 +1100248
Alanny Lopez27af3a02017-05-26 10:49:06 -0500249 # Set the locale
250 RUN locale-gen en_US.UTF-8
251 ENV LANG en_US.UTF-8
252 ENV LANGUAGE en_US:en
253 ENV LC_ALL en_US.UTF-8
254
Andrew Geissler58ad8012024-05-21 16:25:07 -0500255 # Latest Ubuntu added a default user (ubuntu), which takes 1000 UID.
256 # If the user calling this build script happens to also have a UID of 1000
257 # then the container no longer will work. Delete the new ubuntu user
258 # so there is no conflict
Andrew Geissler3adf1a32024-05-22 12:41:45 -0500259 RUN if id ubuntu > /dev/null 2>&1; then userdel -r ubuntu > /dev/null 2>&1; fi
Patrick Williams384d7412020-11-06 16:15:41 -0600260 RUN grep -q ${GROUPS[0]} /etc/group || groupadd -g ${GROUPS[0]} ${USER}
261 RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS[0]} ${USER}
Chris Smartd30c5902016-03-01 15:00:54 +1100262
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500263 USER ${USER}
264 ENV HOME ${HOME}
Chris Smart02651712015-11-11 11:09:00 +1100265EOF
Patrick Williams476a7e92022-12-06 09:52:53 -0600266 )
Chris Smart02651712015-11-11 11:09:00 +1100267fi
268
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500269# Create the Docker run script
Chris Smart02651712015-11-11 11:09:00 +1100270export PROXY_HOST=${http_proxy/#http*:\/\/}
271export PROXY_HOST=${PROXY_HOST/%:[0-9]*}
272export PROXY_PORT=${http_proxy/#http*:\/\/*:}
273
Patrick Williams384d7412020-11-06 16:15:41 -0600274mkdir -p "${WORKSPACE}"
Chris Smart02651712015-11-11 11:09:00 +1100275
Andrew Geissler215e43c2019-04-23 10:57:48 -0500276# Determine command for bitbake image build
Patrick Williams384d7412020-11-06 16:15:41 -0600277if [ "$no_tar" = "false" ]; then
Andrew Geissler2eb45d32019-09-18 21:56:44 -0500278 bitbake_target="${bitbake_target} obmc-phosphor-debug-tarball"
Andrew Geissler215e43c2019-04-23 10:57:48 -0500279fi
280
Chris Smart01d2b962015-11-11 18:05:30 +1100281cat > "${WORKSPACE}"/build.sh << EOF_SCRIPT
Chris Smart02651712015-11-11 11:09:00 +1100282#!/bin/bash
283
Joel Stanley38c9d142016-02-16 12:31:55 +1030284set -xeo pipefail
Chris Smart02651712015-11-11 11:09:00 +1100285
Alanny Lopez723fea62017-09-12 11:22:17 -0500286# Go into the OpenBMC directory, the build will handle changing directories
Alanny Lopez1246b032018-02-24 23:34:55 -0600287cd ${obmc_dir}
Chris Smart02651712015-11-11 11:09:00 +1100288
289# Set up proxies
290export ftp_proxy=${http_proxy}
291export http_proxy=${http_proxy}
292export https_proxy=${http_proxy}
293
Chris Smart01d2b962015-11-11 18:05:30 +1100294mkdir -p ${WORKSPACE}/bin
Chris Smart02651712015-11-11 11:09:00 +1100295
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500296# Configure proxies for BitBake
Chris Smart02651712015-11-11 11:09:00 +1100297if [[ -n "${http_proxy}" ]]; then
298
Chris Smartd30c5902016-03-01 15:00:54 +1100299 cat > ${WORKSPACE}/bin/git-proxy << \EOF_GIT
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500300 #!/bin/bash
301 # \$1 = hostname, \$2 = port
302 PROXY=${PROXY_HOST}
303 PROXY_PORT=${PROXY_PORT}
304 exec socat STDIO PROXY:\${PROXY}:\${1}:\${2},proxyport=\${PROXY_PORT}
Chris Smart02651712015-11-11 11:09:00 +1100305EOF_GIT
306
Chris Smart01d2b962015-11-11 18:05:30 +1100307 chmod a+x ${WORKSPACE}/bin/git-proxy
308 export PATH=${WORKSPACE}/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${PATH}
Chris Smart02651712015-11-11 11:09:00 +1100309
Lei YUa76d7ce2020-05-11 15:20:56 +0800310 lock=${HOME}/build-setup.lock
311 flock \${lock} git config --global core.gitProxy ${WORKSPACE}/bin/git-proxy
312 flock \${lock} git config --global http.proxy ${http_proxy}
Chris Smart02651712015-11-11 11:09:00 +1100313
Lei YUa76d7ce2020-05-11 15:20:56 +0800314 flock \${lock} mkdir -p ~/.subversion
315 flock \${lock} cat > ~/.subversion/servers << EOF_SVN
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500316 [global]
317 http-proxy-host = ${PROXY_HOST}
318 http-proxy-port = ${PROXY_PORT}
Chris Smart02651712015-11-11 11:09:00 +1100319EOF_SVN
Lei YU58cb3ad2020-04-30 13:04:58 +0800320
Lei YUa76d7ce2020-05-11 15:20:56 +0800321 flock \${lock} cat > ~/.wgetrc << EOF_WGETRC
Lei YU58cb3ad2020-04-30 13:04:58 +0800322 https_proxy = ${http_proxy}
323 http_proxy = ${http_proxy}
324 use_proxy = on
325EOF_WGETRC
326
Lei YUa76d7ce2020-05-11 15:20:56 +0800327 flock \${lock} cat > ~/.curlrc << EOF_CURLRC
Lei YU58cb3ad2020-04-30 13:04:58 +0800328 proxy = ${PROXY_HOST}:${PROXY_PORT}
329EOF_CURLRC
Chris Smart02651712015-11-11 11:09:00 +1100330fi
331
332# Source our build env
333${BITBAKE_CMD}
334
Andrew Geissler8565d2a2020-04-20 15:22:14 -0500335if [[ -z "${MACHINE}" ]]; then
336 echo "MACHINE is not configured for ${target}"
Brad Bishop91a200b2019-08-22 14:24:33 -0400337 exit 1
Michael Shepos2de03e92018-11-07 15:54:56 -0600338fi
339
Brad Bishop91a200b2019-08-22 14:24:33 -0400340export MACHINE="${MACHINE}"
Andrew Geissler8565d2a2020-04-20 15:22:14 -0500341if [[ -z "${DISTRO}" ]]; then
342 echo "DISTRO is not configured for ${target} so will use default"
343 unset DISTRO
344else
345 export DISTRO="${DISTRO}"
346fi
Brad Bishop91a200b2019-08-22 14:24:33 -0400347
Andrew Geisslerf87a7bc2021-01-29 09:28:40 -0600348# bitbake requires SDKMACHINE be x86
349export SDKMACHINE=x86_64
350
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500351# Custom BitBake config settings
Chris Smart02651712015-11-11 11:09:00 +1100352cat >> conf/local.conf << EOF_CONF
Andrew Geissler4b9df8d2023-01-06 15:29:39 -0600353BB_NUMBER_THREADS = "$num_cpu"
354PARALLEL_MAKE = "-j$num_cpu"
Chris Smart02651712015-11-11 11:09:00 +1100355INHERIT += "rm_work"
356BB_GENERATE_MIRROR_TARBALLS = "1"
Alanny Lopez1246b032018-02-24 23:34:55 -0600357DL_DIR="${ssc_dir}/bitbake_downloads"
358SSTATE_DIR="${ssc_dir}/bitbake_sharedstatecache"
Chris Smart02651712015-11-11 11:09:00 +1100359USER_CLASSES += "buildstats"
Patrick Williams120c99e2021-08-10 11:05:00 -0500360INHERIT:remove = "uninative"
Alanny Lopez1246b032018-02-24 23:34:55 -0600361TMPDIR="${build_dir}"
Lei YU237bd082020-09-22 11:15:08 +0800362${ENV_LOCAL_CONF}
Chris Smart02651712015-11-11 11:09:00 +1100363EOF_CONF
364
365# Kick off a build
Michael Shepos33aeca42019-06-13 02:36:17 -0500366if [[ -n "${nice_priority}" ]]; then
Patrick Williams625f2852022-04-27 21:56:02 -0500367 nice -${nice_priority} bitbake -k ${BITBAKE_OPTS} ${bitbake_target}
Michael Shepos33aeca42019-06-13 02:36:17 -0500368else
Patrick Williams625f2852022-04-27 21:56:02 -0500369 bitbake -k ${BITBAKE_OPTS} ${bitbake_target}
Michael Shepos33aeca42019-06-13 02:36:17 -0500370fi
Chris Smart02651712015-11-11 11:09:00 +1100371
Alanny Lopez1246b032018-02-24 23:34:55 -0600372# Copy internal build directory into xtrct_path directory
Charles Paul Hoferb249c2c2018-09-12 12:15:13 -0500373if [[ ${xtrct_small_copy_dir} ]]; then
374 mkdir -p ${xtrct_path}/${xtrct_small_copy_dir}
375 timeout ${xtrct_copy_timeout} cp -r ${build_dir}/${xtrct_small_copy_dir}/* ${xtrct_path}/${xtrct_small_copy_dir}
376else
377 timeout ${xtrct_copy_timeout} cp -r ${build_dir}/* ${xtrct_path}
378fi
Charles Paul Hoferbe8700e2018-09-05 09:28:08 -0500379
380if [[ 0 -ne $? ]]; then
381 echo "Received a non-zero exit code from timeout"
382 exit 1
383fi
384
Chris Smart02651712015-11-11 11:09:00 +1100385EOF_SCRIPT
386
Patrick Williams384d7412020-11-06 16:15:41 -0600387chmod a+x "${WORKSPACE}/build.sh"
Chris Smart02651712015-11-11 11:09:00 +1100388
Alanny Lopez51186882017-08-01 16:14:41 -0500389# Give the Docker image a name based on the distro,tag,arch,and target
Alanny Lopez1246b032018-02-24 23:34:55 -0600390img_name=${img_name:-openbmc/${distro}:${img_tag}-${target}-${ARCH}}
Alanny Lopez51186882017-08-01 16:14:41 -0500391
Andrew Geisslerd0dabc32023-04-04 08:09:21 -0600392# Ensure appropriate docker build output to see progress and identify
393# any issues
394export BUILDKIT_PROGRESS=plain
395
Alanny Lopez51186882017-08-01 16:14:41 -0500396# Build the Docker image
Frederic Jacob35b39a92023-07-07 19:16:10 -0700397docker build --network=host -t "${img_name}" - <<< "${Dockerfile}"
Alanny Lopez51186882017-08-01 16:14:41 -0500398
Andrew Geissler0edb68c2024-06-24 16:01:38 -0400399if [[ "$container_only" = "true" ]]; then
400 exit 0
401fi
402
Michael Shepos3939e952019-01-16 16:00:35 -0600403# If obmc_dir or ssc_dir are ${HOME} or a subdirectory they will not be mounted
404mount_obmc_dir="-v ""${obmc_dir}"":""${obmc_dir}"" "
405mount_ssc_dir="-v ""${ssc_dir}"":""${ssc_dir}"" "
Lei YUde2a3202020-04-28 11:34:23 +0800406mount_workspace_dir="-v ""${WORKSPACE}"":""${WORKSPACE}"" "
Michael Shepos3939e952019-01-16 16:00:35 -0600407if [[ "${obmc_dir}" = "${HOME}/"* || "${obmc_dir}" = "${HOME}" ]];then
Patrick Williams476a7e92022-12-06 09:52:53 -0600408 mount_obmc_dir=""
Alanny Lopez3fbaa512017-04-24 15:46:52 -0500409fi
Michael Shepos3939e952019-01-16 16:00:35 -0600410if [[ "${ssc_dir}" = "${HOME}/"* || "${ssc_dir}" = "${HOME}" ]];then
Patrick Williams476a7e92022-12-06 09:52:53 -0600411 mount_ssc_dir=""
Michael Shepos3939e952019-01-16 16:00:35 -0600412fi
Lei YUde2a3202020-04-28 11:34:23 +0800413if [[ "${WORKSPACE}" = "${HOME}/"* || "${WORKSPACE}" = "${HOME}" ]];then
Patrick Williams476a7e92022-12-06 09:52:53 -0600414 mount_workspace_dir=""
Lei YUde2a3202020-04-28 11:34:23 +0800415fi
Michael Shepos3939e952019-01-16 16:00:35 -0600416
Andrew Geisslerafdc0542023-03-31 15:55:22 -0600417# If we are building on a podman based machine, need to have this set in
418# the env to allow the home mount to work (no impact on non-podman systems)
419export PODMAN_USERNS="keep-id"
420
Michael Shepos3939e952019-01-16 16:00:35 -0600421# Run the Docker container, execute the build.sh script
Patrick Williams384d7412020-11-06 16:15:41 -0600422# shellcheck disable=SC2086 # mount commands word-split purposefully
Michael Shepos3939e952019-01-16 16:00:35 -0600423docker run \
Patrick Williams476a7e92022-12-06 09:52:53 -0600424 --cap-add=sys_admin \
425 --cap-add=sys_nice \
426 --net=host \
427 --rm=true \
428 -e WORKSPACE="${WORKSPACE}" \
429 -w "${HOME}" \
430 -v "${HOME}:${HOME}" \
431 ${mount_obmc_dir} \
432 ${mount_ssc_dir} \
433 ${mount_workspace_dir} \
Patrick Williams476a7e92022-12-06 09:52:53 -0600434 "${img_name}" \
435 "${WORKSPACE}/build.sh"
Chris Smart02651712015-11-11 11:09:00 +1100436
Alanny Lopezd32d3322017-07-18 15:21:39 -0500437# To maintain function of resources that used an older path, add a link
Patrick Williams384d7412020-11-06 16:15:41 -0600438ln -sf "${xtrct_path}/deploy" "${WORKSPACE}/deploy"
Alanny Lopezd32d3322017-07-18 15:21:39 -0500439
Chris Smart02651712015-11-11 11:09:00 +1100440# Timestamp for build
Alanny Lopez0e8ad992017-06-19 15:45:23 -0500441echo "Build completed, $(date)"