summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>2024-02-21 18:32:30 -0700
committerBruce Ashfield <bruce.ashfield@gmail.com>2024-02-22 17:15:22 +0000
commite7f9c2dd2f9f4ac95942b69c05ed8f5d0494edbf (patch)
tree1a98abb1f2637a48657d04f7b0c1cfaef8e0e779
parentf27566f573ae70a19c735d3326aa477d863a3447 (diff)
downloadmeta-virtualization-e7f9c2dd2f9f4ac95942b69c05ed8f5d0494edbf.tar.gz
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 <sandeep.gundlupet-raju@amd.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--dynamic-layers/xilinx/recipes-bsp/u-boot/xen-boot-cmd.inc4
1 files changed, 2 insertions, 2 deletions
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"
9DEVICETREE_OFFSET:zynqmp ?= "0xC000000" 9DEVICETREE_OFFSET:zynqmp ?= "0xC000000"
10DEVICETREE_OFFSET:versal ?= "0xC000000" 10DEVICETREE_OFFSET:versal ?= "0xC000000"
11 11
12RAMDISK_OFFSET:zynqmp ?= "0x2400000" 12RAMDISK_OFFSET:zynqmp ?= "0x2600000"
13RAMDISK_OFFSET:versal ?= "0x2400000" 13RAMDISK_OFFSET:versal ?= "0x2600000"
14 14
15XEN_OFFSET:zynqmp ?= "0xBA00000" 15XEN_OFFSET:zynqmp ?= "0xBA00000"
16XEN_OFFSET:versal ?= "0xBA00000" 16XEN_OFFSET:versal ?= "0xBA00000"