mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-08-13 13:56:19 +00:00
The folders for config xmls and scenario setting source code are moved to misc/vm_configs/xmls and misc/vm_configs/board, misc/vm_configs/scenario, so this patch is to update config path for these folders. Tracked-On: #5077 Signed-off-by: Shuang Zheng <shuang.zheng@intel.com>
14 lines
304 B
Python
14 lines
304 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__)), '..', '..', 'vm_configs', 'xmls', 'config-xmls')
|