diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-07-05 00:16:22 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-07-05 04:17:17 +0000 |
commit | 8105d7659f343d89e67f0be0f28fe95d0decdac1 (patch) | |
tree | 4caebf5daf850ef8e923f71a8838ec8dee694264 | |
parent | cd9906847b7a8eaccc4e5927200cd75db99d219f (diff) | |
download | rockbox-8105d76.tar.gz rockbox-8105d76.zip |
imx233: Fix bootloader link regression caused by cd9906
Change-Id: I6341069aa3855a8a3ea9ed021c27aaa742cab698
-rw-r--r-- | firmware/target/arm/imx233/boot.lds | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/imx233/boot.lds b/firmware/target/arm/imx233/boot.lds index eef8be7a4b..6022c9ed86 100644 --- a/firmware/target/arm/imx233/boot.lds +++ b/firmware/target/arm/imx233/boot.lds @@ -31,7 +31,7 @@ SECTIONS { _dramcopystart = .; } > DRAM - + .text : { *(.text*) @@ -90,7 +90,7 @@ SECTIONS . = ALIGN(CACHEALIGN_SIZE); } AT> DRAM - .bssendadr . (NOLOAD) : + .bssendadr (NOLOAD) : { _end = .; } > DRAM |