summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLokanathan, Raaj <raaj.lokanathan@intel.com>2022-11-01 00:56:30 +0800
committerLokanathan, Raaj <raaj.lokanathan@intel.com>2022-11-01 00:56:30 +0800
commitf11973cf59b377686ba19784633c70a63af49b8a (patch)
tree3bd7ee466d60eafa661c17f5344642d7ce5d9c4c
parent22ecde630a935dd551d502c1f499c45debae302d (diff)
downloadu-boot-socfpga-f11973cf59b377686ba19784633c70a63af49b8a.tar.gz
arm: socfpga: Modify the loader script to support changes from mainline.
Mainline have made some changes to the loader script where the .uboot_list and .__image_copy_start naming format has been changed. Signed-off-by: Lokanathan, Raaj <raaj.lokanathan@intel.com>
-rw-r--r--arch/arm/mach-socfpga/u-boot-spl-soc64.lds6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-socfpga/u-boot-spl-soc64.lds b/arch/arm/mach-socfpga/u-boot-spl-soc64.lds
index 05c441c088..8beef91d17 100644
--- a/arch/arm/mach-socfpga/u-boot-spl-soc64.lds
+++ b/arch/arm/mach-socfpga/u-boot-spl-soc64.lds
@@ -27,7 +27,7 @@ SECTIONS
{
.text : {
. = ALIGN(8);
- *(.__image_copy_start)
+ __image_copy_start = .;
CPUDIR/start.o (.text*)
*(.text*)
} >.sram
@@ -54,8 +54,8 @@ SECTIONS
__preserve_data_end = .;
. = ALIGN(8);
- .u_boot_list . : {
- KEEP(*(SORT(.u_boot_list*)));
+ __u_boot_list . : {
+ KEEP(*(SORT(__u_boot_list*)));
} >.sram
.image_copy_end : {