File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 5
5
6
6
The ` linux-loader ` crate offers support for loading raw ELF (` vmlinux ` ) and
7
7
compressed big zImage (` bzImage ` ) format kernel images on ` x86_64 ` and PE
8
- (` Image ` ) kernel images on ` aarch64 ` . ELF support includes the
8
+ (` Image ` ) kernel images on ` aarch64 ` and ` riscv64 ` . ELF support includes the
9
9
[ Linux] ( https://www.kernel.org/doc/Documentation/x86/boot.txt ) and
10
10
[ PVH] ( https://xenbits.xen.org/docs/unstable/misc/pvh.html ) boot protocols.
11
11
@@ -17,8 +17,9 @@ much of the boot process remains the VMM's responsibility. See [Usage] for detai
17
17
- Parsing and loading kernel images into guest memory.
18
18
- ` x86_64 ` : ` vmlinux ` (raw ELF image), ` bzImage `
19
19
- ` aarch64 ` : ` Image `
20
+ - ` riscv64 ` : ` Image `
20
21
- Parsing and building the kernel command line.
21
- - Loading device tree blobs (` aarch64 ` ).
22
+ - Loading device tree blobs (` aarch64 ` and ` riscv64 ` ).
22
23
- Configuring boot parameters using the exported primitives.
23
24
- ` x86_64 ` Linux boot:
24
25
- [ ` setup_header ` ] ( https://elixir.bootlin.com/linux/latest/source/arch/x86/include/uapi/asm/bootparam.h#L65 )
@@ -29,6 +30,8 @@ much of the boot process remains the VMM's responsibility. See [Usage] for detai
29
30
- [ ` hvm_memmap_table_entry ` ] ( https://elixir.bootlin.com/linux/latest/source/include/xen/interface/hvm/start_info.h#L152 )
30
31
- ` aarch64 ` boot:
31
32
- [ ` arm64_image_header ` ] ( https://elixir.bootlin.com/linux/latest/source/arch/arm64/include/asm/image.h#L44 )
33
+ - ` riscv64 ` boot:
34
+ - [ ` riscv64_image_header ` ] ( https://elixir.bootlin.com/linux/latest/source/arch/riscv/include/asm/image.h#L51 )
32
35
33
36
## Usage
34
37
You can’t perform that action at this time.
0 commit comments