diff options
author | Dan Williams <dan.j.williams@intel.com> | 2023-08-13 03:21:00 +0300 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2023-10-20 04:11:38 +0300 |
commit | ec51ffcf263016111f090b9440a3c5a8338648e8 (patch) | |
tree | bf8ade1fc4f19eef31970d074d0b6aff0835406a /drivers/virt/Makefile | |
parent | db10cb9b574675402bfd8fe1a31aafdd45b002df (diff) | |
download | linux-ec51ffcf263016111f090b9440a3c5a8338648e8.tar.xz |
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>
Diffstat (limited to 'drivers/virt/Makefile')
-rw-r--r-- | drivers/virt/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/virt/Makefile b/drivers/virt/Makefile index e9aa6fc96fab..f29901bd7820 100644 --- a/drivers/virt/Makefile +++ b/drivers/virt/Makefile @@ -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/ |