From 856be14f8ad700619aa836244352b52d20f082a5 Mon Sep 17 00:00:00 2001 From: Bikash Singha <138746529+bisingha-xilinx@users.noreply.github.com> Date: Mon, 10 Jun 2024 13:44:13 +0530 Subject: [PATCH] CR-1199344: boot scr offset made to 0x0 (#8172) (#8227) There is a uboot dependency discussed at https://jira.xilinx.com/browse/CR-1199344 latest 2024.1 petalinux and 2024.2 petalinux looks for the boot scr blindly at 0x0 offset Signed-off-by: bisingha (cherry picked from commit f55b4d02e44eaaa39503b07fee1ff4fe8d80175f) --- src/runtime_src/tools/scripts/pkgapu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime_src/tools/scripts/pkgapu.sh b/src/runtime_src/tools/scripts/pkgapu.sh index e412a5401e8..aafabbb9a3b 100755 --- a/src/runtime_src/tools/scripts/pkgapu.sh +++ b/src/runtime_src/tools/scripts/pkgapu.sh @@ -110,7 +110,7 @@ EOF } SYSTEM_DTB_ADDR="0x40000" -BT_SCR_ADDR="0x20000000" +BT_SCR_ADDR="0x0" KERNEL_ADDR="0x20100000" ROOTFS_ADDR="0x21000000"