mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-06-06 17:21:22 +00:00
- add new struct member for acrn_vm_config; - add sharing_config.c file with initialized vm_config array; - add SOS VM config header for apl-mrb/apl-nuc/up2 and dnv-cb2 board; - and partition_config.c file with dummy vm_config array; Tracked-On: #2291 Signed-off-by: Victor Sun <victor.sun@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
18 lines
462 B
C
18 lines
462 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef SOS_VM_CONFIG_H
|
|
#define SOS_VM_CONFIG_H
|
|
|
|
#define SOS_VM_CONFIG_NAME "ACRN SOS VM for APL-UP2"
|
|
#define SOS_VM_CONFIG_MEM_SIZE 0x200000000UL
|
|
#define SOS_VM_CONFIG_PCPU_BITMAP (PLUG_CPU(0) | PLUG_CPU(1))
|
|
#define SOS_VM_CONFIG_GUEST_FLAGS IO_COMPLETION_POLLING
|
|
|
|
#define SOS_VM_CONFIG_OS_NAME "ClearLinux 26600"
|
|
|
|
#endif /* SOS_VM_CONFIG_H */
|