From e7f9c2dd2f9f4ac95942b69c05ed8f5d0494edbf Mon Sep 17 00:00:00 2001 From: Sandeep Gundlupet Raju Date: Wed, 21 Feb 2024 18:32:30 -0700 Subject: xen-boot-cmd.inc: Fix initrd boot issue with 6.6 kernel Due to increase in 6.6 kernel image size xen ramdisk offset was overlapping with kernel image. This causes xen randisk image boot failures. Hence increase the ramdisk offset to fix initrd boot issue. Signed-off-by: Sandeep Gundlupet Raju Signed-off-by: Bruce Ashfield --- dynamic-layers/xilinx/recipes-bsp/u-boot/xen-boot-cmd.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dynamic-layers') diff --git a/dynamic-layers/xilinx/recipes-bsp/u-boot/xen-boot-cmd.inc b/dynamic-layers/xilinx/recipes-bsp/u-boot/xen-boot-cmd.inc index b2b76120..7a4e41a6 100644 --- a/dynamic-layers/xilinx/recipes-bsp/u-boot/xen-boot-cmd.inc +++ b/dynamic-layers/xilinx/recipes-bsp/u-boot/xen-boot-cmd.inc @@ -9,8 +9,8 @@ KERNEL_OFFSET:versal ?= "0xE00000" DEVICETREE_OFFSET:zynqmp ?= "0xC000000" DEVICETREE_OFFSET:versal ?= "0xC000000" -RAMDISK_OFFSET:zynqmp ?= "0x2400000" -RAMDISK_OFFSET:versal ?= "0x2400000" +RAMDISK_OFFSET:zynqmp ?= "0x2600000" +RAMDISK_OFFSET:versal ?= "0x2600000" XEN_OFFSET:zynqmp ?= "0xBA00000" XEN_OFFSET:versal ?= "0xBA00000" -- cgit v1.2.3-54-g00ecf