From f11973cf59b377686ba19784633c70a63af49b8a Mon Sep 17 00:00:00 2001 From: "Lokanathan, Raaj" Date: Tue, 1 Nov 2022 00:56:30 +0800 Subject: 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 --- arch/arm/mach-socfpga/u-boot-spl-soc64.lds | 6 +++--- 1 file 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 : { -- cgit v1.2.1