From: Dinh Nguyen <dingu...@opensource.altera.com> Update SPL linker file to use SRAM.
Signed-off-by: Dinh Nguyen <dingu...@opensource.altera.com> Acked-by: Pavel Machek <pa...@denx.de> --- arch/arm/cpu/armv7/socfpga/u-boot-spl.lds | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/cpu/armv7/socfpga/u-boot-spl.lds b/arch/arm/cpu/armv7/socfpga/u-boot-spl.lds index a868a36..730d154 100644 --- a/arch/arm/cpu/armv7/socfpga/u-boot-spl.lds +++ b/arch/arm/cpu/armv7/socfpga/u-boot-spl.lds @@ -21,13 +21,13 @@ SECTIONS *(.vectors) arch/arm/cpu/armv7/start.o (.text*) *(.text*) - } >.sdram + } >.sram . = ALIGN(4); - .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } >.sdram + .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } >.sram . = ALIGN(4); - .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sdram + .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram . = ALIGN(4); __image_copy_end = .; @@ -43,5 +43,5 @@ SECTIONS *(.bss*) . = ALIGN(4); __bss_end = .; - } >.sdram + } >.sram } -- 2.2.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot