mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 04:33:00 +02:00
rpi64: uboot: Fix addresses dtb and ramdisk to not overlap with kernel
Device tree was overwritten by the kernel while unpacking.
This commit is contained in:
@@ -12,6 +12,15 @@
|
||||
boot_targets = "mmc0";
|
||||
ethprime = "eth0";
|
||||
|
||||
/* Memory layout for kernel boot:
|
||||
* 0x00200000: Kernel relocation address
|
||||
* 0x04000000: FDT (64MB, gives enough space for kernels up to ~60MB)
|
||||
* 0x10000000: Ramdisk (Memsize - 256MB)
|
||||
*/
|
||||
kernel_addr_r = "0x00200000";
|
||||
fdt_addr_r = "0x04000000";
|
||||
ramdisk_addr_r = "0x10000000";
|
||||
|
||||
stdout = "serial";
|
||||
stderr = "serial";
|
||||
stdin = "serial";
|
||||
|
||||
Reference in New Issue
Block a user