diff options
author | Tom Rini <trini@konsulko.com> | 2016-03-15 17:56:29 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-03-16 15:27:55 -0400 |
commit | f8a4826383860318d90079bf40402447d369ad87 (patch) | |
tree | 4fb79176e7b73e91b1e7bce3a4bf7c297811cd9f /arch/arm/mach-at91 | |
parent | d08fedf691dcf4137df406110b7c6f6007f42ee3 (diff) | |
download | u-boot-imx-f8a4826383860318d90079bf40402447d369ad87.zip u-boot-imx-f8a4826383860318d90079bf40402447d369ad87.tar.gz u-boot-imx-f8a4826383860318d90079bf40402447d369ad87.tar.bz2 |
spl: arm: Make sure to include all of the u_boot_list entries
Starting with 96e5b03 we use a linker list for partition table
information. However since we use this in SPL we need to make sure that
the SPL linker scripts include these as well. While doing this, it's
best to simply include all linker lists to future proof ourselves.
Cc: Andreas Bießmann <andreas.devel@googlemail.com>
Acked-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reported-by: Nishanth Menon <nm@ti.com>
Tested-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r-- | arch/arm/mach-at91/arm926ejs/u-boot-spl.lds | 3 | ||||
-rw-r--r-- | arch/arm/mach-at91/armv7/u-boot-spl.lds | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds b/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds index acadd1d..1b04206 100644 --- a/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds +++ b/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds @@ -30,6 +30,9 @@ SECTIONS .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram . = ALIGN(4); + .u_boot_list : { KEEP(*(SORT(.u_boot_list*))) } > .sram + + . = ALIGN(4); __image_copy_end = .; .end : diff --git a/arch/arm/mach-at91/armv7/u-boot-spl.lds b/arch/arm/mach-at91/armv7/u-boot-spl.lds index eccca43..c667c55 100644 --- a/arch/arm/mach-at91/armv7/u-boot-spl.lds +++ b/arch/arm/mach-at91/armv7/u-boot-spl.lds @@ -37,6 +37,9 @@ SECTIONS .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram . = ALIGN(4); + .u_boot_list : { KEEP(*(SORT(.u_boot_list*))) } > .sram + + . = ALIGN(4); __image_copy_end = .; .end : |