pvh 0.1.0

Xen's x86/HVM direct boot ABI (PVH).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Xen ELF note types.
///
/// For details, see [xen/include/public/elfnote.h].
///
/// [xen/include/public/elfnote.h]: https://xenbits.xen.org/gitweb/?p=xen.git;a=blob;f=xen/include/public/elfnote.h;h=2fd8f1b770fd34214313a4b811e910958116f0c7;hb=06af9ef22996cecc2024a2e6523cec77a655581e
#[doc(alias = "XEN_ELFNOTE")]
#[repr(u32)]
pub(super) enum XenElfNoteType {
    /// Physical entry point into the kernel.
    ///
    /// 32bit entry point into the kernel. When requested to launch the
    /// guest kernel in a HVM container, Xen will use this entry point to
    /// launch the guest in 32bit protected mode with paging disabled.
    /// Ignored otherwise.
    #[doc(alias = "XEN_ELFNOTE_PHYS32_ENTRY")]
    Phys32Entry = 18,
}