3 # Copyright (C) 2019 Wind River Systems, Inc.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 # Ensure we fail the job if any steps fail.
20 #########################################################################
22 #########################################################################
24 # Only one bsp is supported now, there will be more in the future
25 SUPPORTED_BSP="intel-corei7-64 "
27 SRC_ORAN_BRANCH="master"
28 SRC_STX_BRANCH="master"
29 SRC_YP_BRANCH="warrior"
31 SRC_ORAN_URL="https://gerrit.o-ran-sc.org/r/pti/rtp"
33 SRC_STX_URL="https://opendev.org/starlingx/meta-starlingx"
36 git://git.yoctoproject.org/poky;commit=HEAD \
37 git://git.openembedded.org/meta-openembedded;commit=HEAD \
38 git://git.openembedded.org/meta-python2;commit=HEAD \
39 git://git.yoctoproject.org/meta-virtualization;commit=HEAD \
40 git://git.yoctoproject.org/meta-cloud-services;commit=HEAD \
41 git://git.yoctoproject.org/meta-security;commit=HEAD \
42 git://git.yoctoproject.org/meta-intel;commit=HEAD \
43 git://git.yoctoproject.org/meta-selinux;commit=HEAD \
44 git://git.yoctoproject.org/meta-dpdk;commit=HEAD \
45 git://git.yoctoproject.org/meta-anaconda;commit=HEAD \
46 git://github.com/intel-iot-devkit/meta-iot-cloud;commit=HEAD \
61 SUB_LAYER_META_CLOUD_SERVICES="meta-openstack"
71 SUB_LAYER_META_OE_ANACONDA="\
80 SCRIPTS_DIR=$(dirname $(readlink -f $0))
81 TIMESTAMP=`date +"%Y%m%d_%H%M%S"`
83 #########################################################################
85 #########################################################################
90 $(basename $0) [-w WORKSPACE_DIR] [-b BSP] [-n] [-u] [-h] [-r Yes|No] [-e EXTRA_CONF]
92 -w WORKSPACE_DIR is the path for the project
93 -b BPS is one of supported BSP: "${SUPPORTED_BSP}"
94 (default is intel-corei7-64 if not specified.)
95 -n dry-run only for bitbake
96 -u update the repo if it exists
98 -e EXTRA_CONF is the pat for extra config file
99 -r whether to inherit rm_work (default is Yes)
102 $0 -w workspace_1234 -r no -e /path/to/extra_local.conf
107 [ -n "$1" ] && msg_step=$1
108 echo "#########################################################################################"
109 echo "## STEP START: ${msg_step}"
110 echo "#########################################################################################"
114 [ -n "$1" ] && msg_step=$1
115 echo "#########################################################################################"
116 echo "## STEP END: ${msg_step}"
117 echo "#########################################################################################"
132 echo "CMD: ${RUN_CMD}"
135 check_yn_rm_work () {
145 echo "Invalid arg for -r option."
154 for b in ${SUPPORTED_BSP}; do
155 if [ "${bsp}" == "${b}" ]; then
160 if [ -z "${BSP_VALID}" ]; then
161 echo_error "${bsp} is not a supported BSP, the supported BSPs are: ${SUPPORTED_BSP}"
167 clone_update_repo () {
173 if [ -d ${REPO_NAME}/.git ]; then
174 if [ "${SKIP_UPDATE}" == "Yes" ]; then
175 echo_info "The repo ${REPO_NAME} exists, skip updating for the branch ${REPO_BRANCH}"
177 echo_info "The repo ${REPO_NAME} exists, updating for the branch ${REPO_BRANCH}"
179 git checkout ${REPO_BRANCH}
184 RUN_CMD="git clone --branch ${REPO_BRANCH} ${REPO_URL} ${REPO_NAME}"
185 echo_cmd "Cloning the source of repo '${REPO_NAME}':"
188 if [ -n "${REPO_COMMIT}" ]; then
190 RUN_CMD="git checkout -b ${REPO_BRANCH}-${REPO_COMMIT} ${REPO_COMMIT}"
191 echo_cmd "Checkout the repo ${REPO_NAME} to specific commit: ${REPO_COMMIT}"
200 cd ${SRC_LAYER_DIR}/poky
202 source ./oe-init-build-env ${build_dir}
205 #########################################################################
207 #########################################################################
213 BSP="intel-corei7-64"
215 while getopts "w:b:e:r:unh" OPTION; do
218 WORKSPACE=`readlink -f ${OPTARG}`
221 check_valid_bsp ${OPTARG}
224 EXTRA_CONF=`readlink -f ${OPTARG}`
233 check_yn_rm_work ${OPTARG}
242 if [ -z ${WORKSPACE} ]; then
243 echo_info "No workspace specified, a directory 'workspace' will be created in current directory as the workspace"
244 WORKSPACE=`readlink -f workspace`
247 if [ -n "${BSP_VALID}" ]; then
251 #########################################################################
252 # Functions for each step
253 #########################################################################
254 SRC_LAYER_DIR=${WORKSPACE}/src_layers
255 SRC_ORAN_DIR=${SRC_LAYER_DIR}/oran
256 SRC_STX_DIR=${SRC_LAYER_DIR}/meta-starlingx
257 PRJ_BUILD_DIR=${WORKSPACE}/prj_oran_stx
258 PRJ_BUILD_DIR_ANACONDA=${WORKSPACE}/prj_oran_inf_anaconda
259 PRJ_SHARED_DIR=${WORKSPACE}/prj_shared
260 PRJ_SHARED_DL_DIR=${WORKSPACE}/prj_shared/downloads
261 PRJ_SHARED_SS_DIR=${WORKSPACE}/prj_shared/sstate-cache
262 SRC_META_PATCHES=${SRC_ORAN_DIR}/rtp/scripts/meta-patches/src_stx
263 SRC_CONFIGS=${SRC_ORAN_DIR}/rtp/scripts/configs
264 IMG_STX=stx-image-aio
265 IMG_ANACONDA=stx-image-aio-installer
266 IMG_INF=inf-image-aio-installer
267 ISO_STX=${PRJ_BUILD_DIR}/tmp/deploy/images/${BSP}/${IMG_STX}-${BSP}.iso
268 ISO_ANACONDA=${PRJ_BUILD_DIR_ANACONDA}/tmp-glibc/deploy/images/${BSP}/${IMG_ANACONDA}-${BSP}.iso
269 ISO_INF=${PRJ_BUILD_DIR_ANACONDA}/tmp-glibc/deploy/images/${BSP}/${IMG_INF}-${BSP}.iso
271 prepare_workspace () {
272 msg_step="Create workspace for the build"
275 mkdir -p ${PRJ_BUILD_DIR} ${SRC_ORAN_DIR} ${PRJ_BUILD_DIR_ANACONDA} ${PRJ_SHARED_DL_DIR} ${PRJ_SHARED_SS_DIR}
277 echo_info "The following directories are created in your workspace(${WORKSPACE}):"
278 echo_info "For all layers source: ${SRC_LAYER_DIR}"
279 echo_info "For StarlingX build project: ${PRJ_BUILD_DIR}"
280 echo_info "For anaconda (installer) build project: ${PRJ_BUILD_DIR_ANACONDA}"
286 msg_step="Get the source code repos"
289 # Clone the oran layer if it's not already cloned
290 # Check if the script is inside the repo
291 if cd ${SCRIPTS_DIR} && git rev-parse --is-inside-work-tree > /dev/null 2>&1; then
292 CLONED_ORAN_REPO=`dirname ${SCRIPTS_DIR}`
293 echo_info "Use the cloned oran repo: ${CLONED_ORAN_REPO}"
294 mkdir -p ${SRC_ORAN_DIR}/rtp
295 cd ${SRC_ORAN_DIR}/rtp
296 rm -rf meta-stx-oran scripts
297 ln -sf ${CLONED_ORAN_REPO}/scripts scripts
298 ln -sf ${CLONED_ORAN_REPO}/meta-stx-oran meta-stx-oran
300 echo_info "Cloning oran layer:"
302 clone_update_repo ${SRC_ORAN_BRANCH} ${SRC_ORAN_URL} rtp
305 echo_info "Cloning or update Yocto layers:"
308 for layer_url in ${SRC_YP_URL}; do
309 layer_name=$(basename ${layer_url%%;commit*})
310 layer_commit=$(basename ${layer_url##*;commit=})
311 clone_update_repo ${SRC_YP_BRANCH} ${layer_url%%;commit*} ${layer_name} ${layer_commit}
314 echo_info "Cloning or update meta-starlingx layers:"
315 clone_update_repo ${SRC_STX_BRANCH} ${SRC_STX_URL} $(basename ${SRC_STX_URL})
319 # Not andy meta-patch is needed for the time being, but new ones may be needed and added
320 # sometime in the future, so just leave these code commented out here.
321 # # Apply meta patches
322 # for l in $(ls -1 ${SRC_META_PATCHES}); do
323 # msg_step="Apply meta patches for ${l}"
325 # cd ${SRC_LAYER_DIR}/${l}
327 # # backup current branch
328 # local_branch=$(git rev-parse --abbrev-ref HEAD)
329 # git branch -m "${local_branch}_${TIMESTAMP}"
330 # git checkout -b ${local_branch} ${local_branch##*-}
332 # for p in $(ls -1 ${SRC_META_PATCHES}/${l}); do
333 # echo_info "Apllying patch: ${SRC_META_PATCHES}/${l}/${p}"
334 # git am ${SRC_META_PATCHES}/${l}/${p}
340 add_layer_stx_build () {
341 msg_step="Add required layers to the StarlingX build project"
344 source_env ${PRJ_BUILD_DIR}
346 for layer_url in ${SRC_YP_URL} ${SRC_STX_URL}; do
347 layer_name=$(basename ${layer_url%%;commit*})
348 case ${layer_name} in
353 for sub_layer in ${SUB_LAYER_META_OE}; do
354 SRC_LAYERS="${SRC_LAYERS} ${SRC_LAYER_DIR}/${layer_name}/${sub_layer}"
358 SRC_LAYERS="${SRC_LAYERS} ${SRC_LAYER_DIR}/${layer_name}"
359 for sub_layer in ${SUB_LAYER_META_CLOUD_SERVICES}; do
360 SRC_LAYERS="${SRC_LAYERS} ${SRC_LAYER_DIR}/${layer_name}/${sub_layer}"
364 for sub_layer in ${SUB_LAYER_STX}; do
365 SRC_LAYERS="${SRC_LAYERS} ${SRC_STX_DIR}/${sub_layer}"
369 SRC_LAYERS="${SRC_LAYERS} ${SRC_LAYER_DIR}/${layer_name}"
374 SRC_LAYERS="${SRC_LAYERS} ${SRC_ORAN_DIR}/rtp/meta-stx-oran"
377 for src_layer in ${SRC_LAYERS}; do
378 RUN_CMD="bitbake-layers add-layer ${src_layer}"
379 echo_cmd "Add the ${src_layer} layer into the build project"
386 add_configs_stx_build () {
387 msg_step="Add extra configs into local.conf for StarlingX build"
391 echo_info "Adding the following extra configs into local.conf"
392 cat ${SRC_CONFIGS}/local-stx.conf | \
393 sed -e "s/@BSP@/${BSP}/" | tee -a conf/local.conf
394 cat ${SRC_CONFIGS}/local-mirrors.conf | tee -a conf/local.conf
396 echo "DL_DIR = '${PRJ_SHARED_DL_DIR}'" | tee -a conf/local.conf
397 echo "SSTATE_DIR = '${PRJ_SHARED_SS_DIR}'" | tee -a conf/local.conf
399 if [ "${RM_WORK}" == "Yes" ]; then
400 echo "INHERIT += 'rm_work'" | tee -a conf/local.conf
401 echo "RM_WORK_EXCLUDE += '${IMG_STX}'" | tee -a conf/local.conf
405 if [ "${EXTRA_CONF}" != "" ] && [ -f "${EXTRA_CONF}" ]; then
406 cat ${EXTRA_CONF} | tee -a conf/local.conf
412 echo_step_start "Setup StarlingX build project"
417 if ! grep -q 'Configs for StarlingX' conf/local.conf; then
418 add_configs_stx_build
420 echo_info "Nothing is added into local.conf"
423 echo_step_end "Setup StarlingX build project"
427 msg_step="Build StarlingX images"
430 source_env ${PRJ_BUILD_DIR}
434 RUN_CMD="bitbake ${DRYRUN} ${IMG_STX}"
435 echo_cmd "Build the ${IMG_STX} image"
436 bitbake ${DRYRUN} ${IMG_STX} 2>&1|tee logs/bitbake_${IMG_STX}_${TIMESTAMP}.log
440 echo_info "Build succeeded, you can get the image in ${ISO_STX}"
443 add_layer_anaconda_build () {
444 msg_step="Add required layers to the anaconda (installer) build project"
447 source_env ${PRJ_BUILD_DIR_ANACONDA}
449 for sub_layer in ${SUB_LAYER_META_OE_ANACONDA}; do
450 SRC_LAYERS="${SRC_LAYERS} ${SRC_LAYER_DIR}/meta-openembedded/${sub_layer}"
452 SRC_LAYERS="${SRC_LAYERS} ${SRC_LAYER_DIR}/meta-intel"
453 SRC_LAYERS="${SRC_LAYERS} ${SRC_LAYER_DIR}/meta-anaconda"
454 SRC_LAYERS="${SRC_LAYERS} ${SRC_STX_DIR}/meta-stx-distro"
455 SRC_LAYERS="${SRC_LAYERS} ${SRC_STX_DIR}/meta-stx-integ"
456 SRC_LAYERS="${SRC_LAYERS} ${SRC_ORAN_DIR}/rtp/meta-stx-oran"
458 for src_layer in ${SRC_LAYERS}; do
459 RUN_CMD="bitbake-layers add-layer ${src_layer}"
460 echo_cmd "Add the ${src_layer} layer into the build project"
467 add_configs_anaconda_build () {
468 msg_step="Add extra configs into local.conf for anaconda (installer) build"
471 cd ${PRJ_BUILD_DIR_ANACONDA}
472 echo_info "Adding the following extra configs into local.conf"
473 cat ${SRC_CONFIGS}/local-anaconda.conf | \
474 sed -e "s/@BSP@/${BSP}/" \
475 -e "s|@TARGET_BUILD@|${PRJ_BUILD_DIR}|" \
476 | tee -a conf/local.conf
477 cat ${SRC_CONFIGS}/local-mirrors.conf | tee -a conf/local.conf
479 echo "DL_DIR = '${PRJ_SHARED_DL_DIR}'" | tee -a conf/local.conf
480 echo "SSTATE_DIR = '${PRJ_SHARED_SS_DIR}'" | tee -a conf/local.conf
482 if [ "${RM_WORK}" == "Yes" ]; then
483 echo "INHERIT += 'rm_work'" | tee -a conf/local.conf
484 echo "RM_WORK_EXCLUDE += '${IMG_ANACONDA}'" | tee -a conf/local.conf
487 if [ "${EXTRA_CONF}" != "" ] && [ -f "${EXTRA_CONF}" ]; then
488 cat ${EXTRA_CONF} | tee -a conf/local.conf
494 setup_anaconda_build () {
495 echo_step_start "Setup anaconda (installer) build project"
497 add_layer_anaconda_build
499 cd ${PRJ_BUILD_DIR_ANACONDA}
500 if ! grep -q 'Configs for anaconda' conf/local.conf; then
501 add_configs_anaconda_build
503 echo_info "Nothing is added into local.conf"
506 echo_step_end "Setup anaconda build project"
509 build_anaconda_image () {
510 echo_step_start "Build anaconda (installer) images"
511 source_env ${PRJ_BUILD_DIR_ANACONDA}
515 if [ -f ${ISO_ANACONDA} ]; then
516 bitbake ${DRYRUN} -c clean ${IMG_ANACONDA}
518 RUN_CMD="bitbake ${DRYRUN} ${IMG_ANACONDA}"
519 echo_cmd "Build the ${IMG_ANACONDA} image"
520 bitbake ${DRYRUN} ${IMG_ANACONDA} 2>&1|tee logs/bitbake_${IMG_ANACONDA}_${TIMESTAMP}.log
522 if [ -z "${DRYRUN}" ]; then
523 cp -Pf ${ISO_ANACONDA} ${ISO_INF}
528 echo_info "Build succeeded, you can get the image in ${ISO_INF}"
531 #########################################################################
533 #########################################################################