Merge pull request #12862 from fidencio/topic/runtime-rs-enable-measured-rootfs-tests

runtime-rs: enable measured rootfs for qemu-coco-dev-runtime-rs
This commit is contained in:
Fabiano Fidêncio
2026-04-17 18:48:47 +02:00
committed by GitHub
2 changed files with 5 additions and 2 deletions

View File

@@ -72,6 +72,11 @@ valid_hypervisor_paths = @QEMUVALIDHYPERVISORPATHS@
# container and look for 'default-kernel-parameters' log entries.
kernel_params = "@KERNELPARAMS@"
# Optional dm-verity parameters (comma-separated key=value list):
# root_hash=...,salt=...,data_blocks=...,data_block_size=...,hash_block_size=...
# These are used by the runtime to assemble dm-verity kernel params.
kernel_verity_params = "@KERNELVERITYPARAMS@"
# Path to the firmware.
# If you want that qemu uses the default firmware leave this option empty
firmware = "@FIRMWAREPATH@"

View File

@@ -22,8 +22,6 @@ check_and_skip() {
if is_confidential_runtime_class "${KATA_HYPERVISOR}"; then
if [[ "$(uname -m)" == "s390x" ]]; then
skip "measured rootfs tests not implemented for s390x"
elif [[ "${KATA_HYPERVISOR}" == "qemu-coco-dev-runtime-rs" ]]; then
skip "measured rootfs not working on qemu-coco-dev-runtime-rs: https://github.com/kata-containers/kata-containers/issues/12851"
fi
return
else