From 0bbebc5a903609e9a24eebea8ba2485a9068e6d0 Mon Sep 17 00:00:00 2001 From: Tony Cheneau Date: Thu, 8 Feb 2024 19:11:18 +0100 Subject: [PATCH] Increase space between kernel and ramdisk adress space As Linux kernls keep growing bigger, the current space can be filled, leading to the following error: ERROR: RD image overlaps OS image (OS=0x2200000..0x60a0000) This patch is heavily inspired from this thread: https://lore.kernel.org/lkml/87h6u9vpc4.fsf@wireframe/T/ --- include/configs/rk3399_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/rk3399_common.h b/include/configs/rk3399_common.h index b37ed5cce0a..b770986c647 100644 --- a/include/configs/rk3399_common.h +++ b/include/configs/rk3399_common.h @@ -52,9 +52,9 @@ "pxefile_addr_r=0x00600000\0" \ "fdt_addr_r=0x01f00000\0" \ "kernel_addr_r=0x02080000\0" \ - "ramdisk_addr_r=0x06000000\0" \ - "kernel_comp_addr_r=0x08000000\0" \ - "kernel_comp_size=0x2000000\0" + "ramdisk_addr_r=0x06a00000\0" \ + "kernel_comp_addr_r=0x08a00000\0" \ + "kernel_comp_size=0x2a00000\0" #ifndef ROCKCHIP_DEVICE_SETTINGS #define ROCKCHIP_DEVICE_SETTINGS