diff options
author | Walter Lozano <walter.lozano@collabora.com> | 2020-06-25 01:10:12 -0300 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-07-09 22:00:29 -0600 |
commit | df29730410ae2b1a861dcd094c14ea1a12892109 (patch) | |
tree | 006f5796f6a2eca0c6723a3e375ef00c1a8445ed | |
parent | fed0f891c6821d475710e1f7033253ec4723ee09 (diff) | |
download | u-boot-df29730410ae2b1a861dcd094c14ea1a12892109.tar.gz |
sandbox: Move section u_boot_list to make it RW
In order to be able to update data in u_boot_list, move this section to
make it RW.
Signed-off-by: Walter Lozano <walter.lozano@collabora.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/sandbox/cpu/u-boot-spl.lds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sandbox/cpu/u-boot-spl.lds b/arch/sandbox/cpu/u-boot-spl.lds index de65b01b33..c60eb109b1 100644 --- a/arch/sandbox/cpu/u-boot-spl.lds +++ b/arch/sandbox/cpu/u-boot-spl.lds @@ -20,4 +20,4 @@ SECTIONS __bss_start = .; } -INSERT BEFORE .data; +INSERT AFTER .data; |