Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Tested-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Reviewed-by: Tom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>

+18 -8
+1 -5
drivers/virt/Kconfig
··· 48 48 49 49 source "drivers/virt/acrn/Kconfig" 50 50 51 - source "drivers/virt/coco/efi_secret/Kconfig" 52 - 53 - source "drivers/virt/coco/sev-guest/Kconfig" 54 - 55 - source "drivers/virt/coco/tdx-guest/Kconfig" 51 + source "drivers/virt/coco/Kconfig" 56 52 57 53 endif
+1 -3
drivers/virt/Makefile
··· 9 9 10 10 obj-$(CONFIG_NITRO_ENCLAVES) += nitro_enclaves/ 11 11 obj-$(CONFIG_ACRN_HSM) += acrn/ 12 - obj-$(CONFIG_EFI_SECRET) += coco/efi_secret/ 13 - obj-$(CONFIG_SEV_GUEST) += coco/sev-guest/ 14 - obj-$(CONFIG_INTEL_TDX_GUEST) += coco/tdx-guest/ 12 + obj-y += coco/
+9
drivers/virt/coco/Kconfig
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + # 3 + # Confidential computing related collateral 4 + # 5 + source "drivers/virt/coco/efi_secret/Kconfig" 6 + 7 + source "drivers/virt/coco/sev-guest/Kconfig" 8 + 9 + source "drivers/virt/coco/tdx-guest/Kconfig"
+7
drivers/virt/coco/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + # 3 + # Confidential computing related collateral 4 + # 5 + obj-$(CONFIG_EFI_SECRET) += efi_secret/ 6 + obj-$(CONFIG_SEV_GUEST) += sev-guest/ 7 + obj-$(CONFIG_INTEL_TDX_GUEST) += tdx-guest/