Commit ec51ffcf authored by Dan Williams's avatar Dan Williams
Browse files

virt: coco: Add a coco/Makefile and coco/Kconfig



In preparation for adding another coco build target, relieve
drivers/virt/Makefile of the responsibility to track new compilation
unit additions to drivers/virt/coco/, and do the same for
drivers/virt/Kconfig.

Reviewed-by: default avatarKuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Tested-by: default avatarKuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Reviewed-by: default avatarTom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent db10cb9b
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -48,10 +48,6 @@ source "drivers/virt/nitro_enclaves/Kconfig"

source "drivers/virt/acrn/Kconfig"

source "drivers/virt/coco/efi_secret/Kconfig"

source "drivers/virt/coco/sev-guest/Kconfig"

source "drivers/virt/coco/tdx-guest/Kconfig"
source "drivers/virt/coco/Kconfig"

endif
+1 −3
Original line number Diff line number Diff line
@@ -9,6 +9,4 @@ obj-y += vboxguest/

obj-$(CONFIG_NITRO_ENCLAVES)	+= nitro_enclaves/
obj-$(CONFIG_ACRN_HSM)		+= acrn/
obj-$(CONFIG_EFI_SECRET)	+= coco/efi_secret/
obj-$(CONFIG_SEV_GUEST)		+= coco/sev-guest/
obj-$(CONFIG_INTEL_TDX_GUEST)	+= coco/tdx-guest/
obj-y				+= coco/
+9 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# Confidential computing related collateral
#
source "drivers/virt/coco/efi_secret/Kconfig"

source "drivers/virt/coco/sev-guest/Kconfig"

source "drivers/virt/coco/tdx-guest/Kconfig"
+7 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# Confidential computing related collateral
#
obj-$(CONFIG_EFI_SECRET)	+= efi_secret/
obj-$(CONFIG_SEV_GUEST)		+= sev-guest/
obj-$(CONFIG_INTEL_TDX_GUEST)	+= tdx-guest/