Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class ConfigInfo:
name="maaxboard",
arch=KernelArch.AARCH64,
gcc_cpu="cortex-a53",
loader_link_address=0x40480000,
loader_link_address=0x50000000,
kernel_options={
"KernelPlatform": "maaxboard",
"KernelIsMCS": True,
Expand Down
2 changes: 1 addition & 1 deletion docs/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ The MaaXBoard is a low-cost ARM SBC based on the NXP i.MX8MQ system-on-chip.

Microkit produces a raw binary file, so when using U-Boot you must execute the image using:

=> go 0x40480000
=> go 0x50000000

## Odroid-C2

Expand Down
4 changes: 3 additions & 1 deletion tool/microkit/src/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,9 @@ impl<'a> Loader<'a> {
}
}

check_non_overlapping(&all_regions);
let mut all_regions_with_loader = all_regions.clone();
all_regions_with_loader.push((image_vaddr, &image));
check_non_overlapping(&all_regions_with_loader);

let flags = match config.hypervisor {
true => 1,
Expand Down