Merge pull request #10862 from BbolroC/enable-ibm-se-for-qemu-runtime-rs

runtime-rs: Enable IBM SE for QEMU
This commit is contained in:
Hyounggyu Choi
2025-03-06 05:38:13 +01:00
committed by GitHub
14 changed files with 811 additions and 16 deletions

View File

@@ -246,7 +246,7 @@ function get_kata_containers_config_path() {
# Map the runtime shim name to the appropriate configuration
# file directory.
case "$shim" in
cloud-hypervisor | dragonball | qemu-runtime-rs) config_path="$rust_config_path" ;;
cloud-hypervisor | dragonball | qemu-runtime-rs | qemu-se-runtime-rs) config_path="$rust_config_path" ;;
*) config_path="$golang_config_path" ;;
esac
@@ -258,7 +258,7 @@ function get_kata_containers_runtime_path() {
local runtime_path
case "$shim" in
cloud-hypervisor | dragonball | qemu-runtime-rs)
cloud-hypervisor | dragonball | qemu-runtime-rs | qemu-se-runtime-rs)
runtime_path="${dest_dir}/runtime-rs/bin/containerd-shim-kata-v2"
;;
*)