openhcl_boot/arch/x86_64/
vp.rs

1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Setting up VTL2 VPs

use crate::host_params::PartitionInfo;

pub fn setup_vtl2_vp(_partition_info: &PartitionInfo) {
    // X64 doesn't require any special VTL2 VP setup in the boot loader at the
    // moment.
}