fix(xenclient): examples should use supported platform

This commit is contained in:
Alex Zenla
2024-12-14 18:33:53 -05:00
parent 4b0f3782bd
commit e0bbeb5d64
3 changed files with 10 additions and 7 deletions

View File

@ -42,7 +42,7 @@ async fn create_domain(client: &XenClient, kernel: Arc<Vec<u8>>, i: u32) -> Resu
let mut config = DomainConfig::new();
config.platform(PlatformDomainConfig {
uuid: Uuid::new_v4(),
platform: RuntimePlatformType::Pv,
platform: RuntimePlatformType::supported(),
kernel: PlatformKernelConfig {
data: kernel,
format: KernelFormat::ElfUncompressed,