File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -324,7 +324,7 @@ impl Cmdline {
324
324
325
325
/// Returns a C compatible representation of the command line
326
326
/// The Linux kernel expects a null terminated cmdline according to the source:
327
- /// https://elixir.bootlin.com/linux/v5.10.139/source/kernel/params.c#L179
327
+ /// < https://elixir.bootlin.com/linux/v5.10.139/source/kernel/params.c#L179>
328
328
///
329
329
/// To get bytes of the cmdline to be written in guest's memory (including the
330
330
/// null terminator) from this representation, use CString::as_bytes_with_nul()
Original file line number Diff line number Diff line change @@ -147,12 +147,12 @@ pub struct KernelLoaderResult {
147
147
/// blob and initrd will be loaded adjacent to kernel image.
148
148
pub kernel_end : GuestUsize ,
149
149
/// Configuration for the VMM to use to fill zero page for bzImage direct boot.
150
- /// See https://www.kernel.org/doc/Documentation/x86/boot.txt.
150
+ /// See < https://www.kernel.org/doc/Documentation/x86/boot.txt> .
151
151
#[ cfg( any( target_arch = "x86" , target_arch = "x86_64" ) ) ]
152
152
pub setup_header : Option < bootparam:: setup_header > ,
153
153
/// Availability of a PVH entry point. Only used for ELF boot, indicates whether the kernel
154
154
/// supports the PVH boot protocol as described in:
155
- /// https://xenbits.xen.org/docs/unstable/misc/pvh.html
155
+ /// < https://xenbits.xen.org/docs/unstable/misc/pvh.html>
156
156
#[ cfg( all( feature = "elf" , any( target_arch = "x86" , target_arch = "x86_64" ) ) ) ]
157
157
pub pvh_boot_cap : elf:: PvhBootCapability ,
158
158
}
You can’t perform that action at this time.
0 commit comments