From 90b87ffa661d207f060cae47021acd418f53a3eb Mon Sep 17 00:00:00 2001 From: Jackie Huang Date: Mon, 30 Sep 2019 13:36:48 +0800 Subject: [PATCH] scripts/build_oran.sh: add wrapper script Issue-ID: INF-4 Signed-off-by: Jackie Huang Change-Id: Ie8298277f1b557d334256a7a785a228e700c1683 --- scripts/build_oran.sh | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100755 scripts/build_oran.sh diff --git a/scripts/build_oran.sh b/scripts/build_oran.sh new file mode 100755 index 0000000..ee1e1d2 --- /dev/null +++ b/scripts/build_oran.sh @@ -0,0 +1,87 @@ +#!/bin/sh + +help_info () { +cat << ENDHELP +Usage: +$(basename $0) WORKSPACE_DIR +where: + WORKSPACE_DIR is the path for the project +ENDHELP +} + +echo_info () { + echo "INFO: $1" +} + +echo_error () { + echo "ERROR: $1" +} + +echo_cmd () { + echo + echo "$1" + echo "CMD: ${RUN_CMD}" +} + +if [ $# -eq 0 ]; then + help_info + exit +fi + +SCRIPTS_DIR=`dirname $0` +SCRIPTS_DIR=`readlink -f $SCRIPTS_DIR` + +WORKSPACE=`readlink -f $1` + +SRC_WRL_DIR=${WORKSPACE}/src_wrl1018 +SRC_ORAN_DIR=${WORKSPACE}/src_oran +PRJ_BUILD_DIR=${WORKSPACE}/prj_oran-inf + +mkdir -p ${SRC_WRL_DIR} ${PRJ_BUILD_DIR} ${SRC_ORAN_DIR} + +echo_info "The following directories are created in your workspace(${WORKSPACE}):" +echo_info "For wrlinux1018 source: ${SRC_WRL_DIR}" +echo_info "For oran layer source: ${SRC_ORAN_DIR}" +echo_info "For build project: ${PRJ_BUILD_DIR}" + +# Clone the source of WRLinux BASE 10.18 from github and setup +RUN_CMD="git clone --branch WRLINUX_10_18_BASE git://github.com/WindRiver-Labs/wrlinux-x.git" +echo_cmd "Cloning wrlinux 1018 source from github:" +cd ${SRC_WRL_DIR} +${RUN_CMD} + +RUN_CMD="./wrlinux-x/setup.sh --machines intel-x86-64 --layers wrlinux-ovp meta-cloud-services" +echo_cmd "Setup wrlinux build project:" +${RUN_CMD} + +# Clone extra layers +echo_info "Cloning oran layer:" + +cd ${SRC_ORAN_DIR} +RUN_CMD="git clone http://stash.wrs.com/scm/~jhuang0/o-ran-pti-rtp.git" +echo_cmd "Cloing with:" +${RUN_CMD} + +# Source the build env +cd ${SRC_WRL_DIR} +. ./environment-setup-x86_64-wrlinuxsdk-linux +set ${PRJ_BUILD_DIR} +. ./oe-init-build-env ${PRJ_BUILD_DIR} + +# Add the meta-oran layer and required layers +cd ${PRJ_BUILD_DIR} +bitbake-layers add-layer ${SRC_ORAN_DIR}/o-ran-pti-rtp/meta-oran + +# Add extra configs into local.conf +cat << EOF >> conf/local.conf +######################## +# Configs for oran-inf # +######################## +DISTRO = "oran-inf" +BB_NO_NETWORK = '0' +EOF + +# Build the oran-inf-host image +mkdir -p logs +TIMESTAMP=`date +"%Y%m%d_%H%M%S"` +bitbake wrlinux-image-oran-host 2>&1|tee logs/bitbake_wrlinux-image-oran-host_${TIMESTAMP}.log -- 2.16.6