packaging: Drop the TDX cloud hypervisor target

We're currently building Cloud Hypervusor with thE TDX feature
regardless of using with TDX or not.

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
Fabiano Fidêncio
2022-12-02 10:20:29 +01:00
parent b9dc23033a
commit 7e8e54ce7d
3 changed files with 0 additions and 11 deletions

View File

@@ -121,9 +121,6 @@ cc-shim-v2-tarball:
cc-virtiofsd-tarball:
${MAKE} $@-build
cc-tdx-cloud-hypervisor-tarball:
${MAKE} $@-build
cc-tdx-kernel-tarball:
${MAKE} $@-build

View File

@@ -253,11 +253,6 @@ install_cc_virtiofsd() {
sudo install -D --owner root --group root --mode 0744 virtiofsd/virtiofsd "${destdir}/${cc_prefix}/libexec/virtiofsd"
}
# Install static CC cloud-hypervisor asset
install_tdx_cc_clh() {
install_cc_clh
}
#Install CC kernel assert, with TEE support
install_cc_tee_kernel() {
tee="${1}"
@@ -503,8 +498,6 @@ handle_build() {
cc-virtiofsd) install_cc_virtiofsd ;;
cc-tdx-cloud-hypervisor) install_tdx_cc_clh ;;
cc-tdx-kernel) install_cc_tdx_kernel ;;
cc-sev-kernel) install_cc_sev_kernel ;;

View File

@@ -30,7 +30,6 @@ cache_qemu_artifacts() {
cache_clh_artifacts() {
local clh_tarball_name="kata-static-cc-cloud-hypervisor.tar.xz"
[ -n "${TEE}" ] && clh_tarball_name="kata-static-cc-tdx-cloud-hypervisor.tar.xz"
local current_clh_version=$(get_from_kata_deps "assets.hypervisor.cloud_hypervisor.version")
create_cache_asset "${clh_tarball_name}" "${current_clh_version}" ""
}