@@ -22,18 +22,18 @@ phys_cpu_sets = [1, 4]
22
22
entry_point = 0x20_4008_0000
23
23
# The location of image: "memory" | "fs".
24
24
# Load from file system.
25
- image_location = " fs "
25
+ image_location = " memory "
26
26
# The load address of the kernel image.
27
27
kernel_load_addr = 0x20_4008_0000
28
28
# # The file path of the kernel image.
29
- kernel_path = " /guest /Image"
29
+ kernel_path = " /path/to /Image"
30
30
# # The file path of the device tree blob (DTB).
31
31
dtb_load_addr = 0x20_4000_0000
32
- dtb_path = " /guest /linux-aarch64-e2000_smp2.dtb"
32
+ dtb_path = " /path/to/axvisor/configs/vms /linux-aarch64-e2000_smp2.dtb"
33
33
# Memory regions with format (`base_paddr`, `size`, `flags`, `map_type`).
34
34
# For `map_type`, 0 means `MAP_ALLOC`, 1 means `MAP_IDENTICAL`.
35
35
memory_regions = [
36
- # [0x20_4000_0000, 0x4000_0000, 0x7, 1], # System RAM MAP_IDENTICAL
36
+ [0x20_4000_0000 , 0x4000_0000 , 0x7 , 1 ], # System RAM MAP_IDENTICAL
37
37
# [0xa000_0000, 0x2000_0000, 0x7, 1], # System RAM 1G MAP_IDENTICAL
38
38
]
39
39
@@ -43,6 +43,7 @@ memory_regions = [
43
43
[devices ]
44
44
# Emu_devices.
45
45
# Name Base-Ipa Ipa_len Alloc-Irq Emu-Type EmuConfig.
46
+ interrupt_mode = " passthrough"
46
47
emu_devices = []
47
48
48
49
# Pass-through devices.
0 commit comments