HV: Compiling in VCPI code for partition hypervisor
V3: - Compiling in VCPI code for partition hypervisor Reviewed-by: Anthony Xu <anthony.xu@intel.com> Acked-by: Anthony Xu <anthony.xu@intel.com> Signed-off-by: dongshen <dongsheng.x.zhang@intel.com>
This commit is contained in:
parent
f60fcb6b16
commit
65bd038650
|
@ -95,7 +95,9 @@ INCLUDE_PATH += include/arch/x86
|
|||
INCLUDE_PATH += include/arch/x86/guest
|
||||
INCLUDE_PATH += include/debug
|
||||
INCLUDE_PATH += include/public
|
||||
INCLUDE_PATH += include/common
|
||||
ifeq ($(CONFIG_PARTITION_MODE),y)
|
||||
INCLUDE_PATH += include/dm/vpci
|
||||
endif
|
||||
INCLUDE_PATH += bsp/include
|
||||
INCLUDE_PATH += bsp/$(CONFIG_PLATFORM)/include/bsp
|
||||
INCLUDE_PATH += boot/include
|
||||
|
@ -171,6 +173,11 @@ ifdef STACK_PROTECTOR
|
|||
C_SRCS += common/stack_protector.c
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_PARTITION_MODE),y)
|
||||
C_SRCS += $(wildcard dm/vpci/*.c)
|
||||
C_SRCS += $(wildcard partition/*.c)
|
||||
endif
|
||||
|
||||
C_SRCS += bsp/$(CONFIG_PLATFORM)/vm_description.c
|
||||
C_SRCS += bsp/$(CONFIG_PLATFORM)/$(CONFIG_PLATFORM).c
|
||||
C_SRCS += bsp/$(CONFIG_PLATFORM)/platform_acpi_info.c
|
||||
|
|
Loading…
Reference in New Issue