mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-08 00:17:01 +00:00
update config folders used in config app based on config tool folders reorg; remove "Generate configuration files" button from config app since the function is deprecated. Tracked-On: #5644 Signed-off-by: Shuang Zheng <shuang.zheng@intel.com>
14 lines
269 B
Python
14 lines
269 B
Python
# Copyright (C) 2019 Intel Corporation.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
"""Configurations for config app.
|
|
|
|
"""
|
|
|
|
import os
|
|
|
|
BOARD_INFO = None
|
|
BOARD_TYPE = None
|
|
SCENARIO = None
|
|
CONFIG_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', 'data')
|