1#!/bin/bash 2# 3# Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved. 4# Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without modification, 7# are permitted provided that the following conditions are met: 8# 9# 1. Redistributions of source code must retain the above copyright notice, this list of 10# conditions and the following disclaimer. 11# 12# 2. Redistributions in binary form must reproduce the above copyright notice, this list 13# of conditions and the following disclaimer in the documentation and/or other materials 14# provided with the distribution. 15# 16# 3. Neither the name of the copyright holder nor the names of its contributors may be used 17# to endorse or promote products derived from this software without specific prior written 18# permission. 19# 20# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 22# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 23# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 24# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 25# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 26# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 27# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 28# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 29# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 30# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31set -e 32 33board_name=${1} 34ohos_build_compiler=${2} 35root_build_dir=${3} 36ohos_build_type=${4} 37tee_enable=${5} 38device_company=${6} 39product_path=${7} 40outdir=${8} 41ohos_version=${9} 42sysroot_path=${10} 43arch_cflags=${11} 44device_path=${12} 45compile_prefix=${13} 46liteos_config_file=${14} 47 48echo "sh param:" "$@" 49 50if [ "x" != "x${sysroot_path}" ]; then 51 export SYSROOT_PATH=${sysroot_path} 52fi 53 54if [ "x" != "x${arch_cflags}" ]; then 55 export ARCH_CFLAGS="${arch_cflags}" 56fi 57 58export PRODUCT_PATH="${product_path}" 59export DEVICE_PATH="${device_path}" 60 61export OUTDIR="${outdir}" 62export KCONFIG_CONFIG="${liteos_config_file}" 63export LITEOS_MENUCONFIG_H="${outdir}/config.h" 64export LITEOS_CONFIG_FILE="${outdir}/.config" 65export LITEOS_COMPILER_PATH="${compile_prefix%/*}/" 66export CROSS_COMPILE="${compile_prefix##*/}" 67 68mkdir -p "${outdir}" 69make -j all VERSION="${ohos_version}" 70