1#!/bin/bash 2# Copyright 2020-2020, Huawei Technologies Co. Ltd. 3# 4# ALL RIGHTS RESERVED 5# 6# Compile mpp/sample project, this is the entrance script 7 8# error out on errors 9set -e 10OUT_DIR="$1" 11BOARD_NAME="$2" 12HOS_KERNEL_TYPE="$3" 13 14function main(){ 15# do something 16} 17 18main "$@" 19