12fe4e5f8Sopenharmony_ci# Copyright (c) 2021 HiSilicon (Shanghai) Technologies CO., LIMITED. 22fe4e5f8Sopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License"); 32fe4e5f8Sopenharmony_ci# you may not use this file except in compliance with the License. 42fe4e5f8Sopenharmony_ci# You may obtain a copy of the License at 52fe4e5f8Sopenharmony_ci# 62fe4e5f8Sopenharmony_ci# http://www.apache.org/licenses/LICENSE-2.0 72fe4e5f8Sopenharmony_ci# 82fe4e5f8Sopenharmony_ci# Unless required by applicable law or agreed to in writing, software 92fe4e5f8Sopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS, 102fe4e5f8Sopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 112fe4e5f8Sopenharmony_ci# See the License for the specific language governing permissions and 122fe4e5f8Sopenharmony_ci# limitations under the License. 132fe4e5f8Sopenharmony_ci 142fe4e5f8Sopenharmony_ci# Kernel type, e.g. "linux", "liteos_a", "liteos_m". 152fe4e5f8Sopenharmony_cikernel_type = "liteos_a" 162fe4e5f8Sopenharmony_ci 172fe4e5f8Sopenharmony_ci# Kernel version. 182fe4e5f8Sopenharmony_cikernel_version = "" 192fe4e5f8Sopenharmony_ci 202fe4e5f8Sopenharmony_ci# Board CPU type, e.g. "cortex-a7", "riscv32". 212fe4e5f8Sopenharmony_ciboard_cpu = "cortex-a7" 222fe4e5f8Sopenharmony_ci 232fe4e5f8Sopenharmony_ci# Board arch, e.g. "armv7-a", "rv32imac". 242fe4e5f8Sopenharmony_ciboard_arch = "" 252fe4e5f8Sopenharmony_ci 262fe4e5f8Sopenharmony_ci# Toolchain name used for system compiling. 272fe4e5f8Sopenharmony_ci# E.g. gcc-arm-none-eabi, arm-linux-harmonyeabi-gcc, ohos-clang, riscv32-unknown-elf. 282fe4e5f8Sopenharmony_ci# Note: The default toolchain is "ohos-clang". It's not mandatory if you use the default toolchain. 292fe4e5f8Sopenharmony_ciboard_toolchain = "" 302fe4e5f8Sopenharmony_ci 312fe4e5f8Sopenharmony_ci# The toolchain path installed, it's not mandatory if you have added toolchain path to your ~/.bashrc. 322fe4e5f8Sopenharmony_ciboard_toolchain_path = "" 332fe4e5f8Sopenharmony_ci 342fe4e5f8Sopenharmony_ci# Compiler prefix. 352fe4e5f8Sopenharmony_ciboard_toolchain_prefix = "" 362fe4e5f8Sopenharmony_ci 372fe4e5f8Sopenharmony_ci# Compiler type, "gcc" or "clang". 382fe4e5f8Sopenharmony_ciboard_toolchain_type = "clang" 392fe4e5f8Sopenharmony_ci 402fe4e5f8Sopenharmony_ci# Board related common compile flags. 412fe4e5f8Sopenharmony_ciboard_cflags = [ 422fe4e5f8Sopenharmony_ci "-mfloat-abi=softfp", 432fe4e5f8Sopenharmony_ci "-mfpu=neon-vfpv4", 442fe4e5f8Sopenharmony_ci] 452fe4e5f8Sopenharmony_ciboard_cxx_flags = [ 462fe4e5f8Sopenharmony_ci "-mfloat-abi=softfp", 472fe4e5f8Sopenharmony_ci "-mfpu=neon-vfpv4", 482fe4e5f8Sopenharmony_ci] 492fe4e5f8Sopenharmony_ciboard_ld_flags = [] 502fe4e5f8Sopenharmony_ci 512fe4e5f8Sopenharmony_ci# Board related headfiles search path. 522fe4e5f8Sopenharmony_ciboard_include_dirs = [] 532fe4e5f8Sopenharmony_ci 542fe4e5f8Sopenharmony_ci# Board adapter dir for OHOS components. 552fe4e5f8Sopenharmony_ciboard_adapter_dir = "//device/soc/hisilicon/common/hal" 562fe4e5f8Sopenharmony_ci 572fe4e5f8Sopenharmony_ci# Sysroot path. 582fe4e5f8Sopenharmony_ciboard_configed_sysroot = "" 592fe4e5f8Sopenharmony_ci 602fe4e5f8Sopenharmony_ci# Board storage type, it used for file system generation. 612fe4e5f8Sopenharmony_cistorage_type = "spinor" 62