Skip to content

Commit 07d04b5

Browse files
committed
AArch64: bump ram_min to hold kernel image
Reserved 64M for payload to hold kernel image. So, bump ram_min to 0x44400000 Signed-off-by: Jianyong Wu <[email protected]>
1 parent fa7ac4f commit 07d04b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aarch64-unknown-none.ld

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ ENTRY(ram64_start)
44
DRAM: [0x4000_0000-0xfc00_0000]
55
FDT: [0x4000_0000-0x401f_ffff)
66
ACPI: [0x4020_0000-0x403f_ffff)
7-
payload:[0x4040_0000-0x405f_ffff)
8-
RHF: [0x40600000-]
7+
payload:[0x4040_0000-0x443f_ffff)
8+
RHF: [0x44400000-]
99
Assuming 2MB is enough to load payload.
1010
The stack start is at the end of the RHF region. */
11-
ram_min = 0x40600000;
11+
ram_min = 0x44400000;
1212

1313
/* This value must be identical with arch::aarch64::layout::map::dram::KERNEL_START. */
1414
PAYLOAD_START = 0x40400000;

0 commit comments

Comments
 (0)