#!/bin/bash


function build_softsim(){
    BUILD_QCOM_BRANCH="TZ.BF.4.0"

    pushd ${QSEE_ROOT_PATH}/build/ms
    if [ -e setenv.sh ]; then
        source ./setenv.sh
        export SIGN_RUNTYPE=qc_secimg40_softsim
        export QSEE_USES_SECTOOLS="yes"
        python build_all.py -v -b $BUILD_QCOM_BRANCH CHIPSET=$TZ_CHIPSET PRODUCT_NAME=c10plte_chn_open ${MY_TZAPP} $*
    fi
    popd
}
