diff options
author | Stefano Babic <sbabic@denx.de> | 2011-04-03 00:01:49 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-04-27 19:38:07 +0200 |
commit | 7f5b2bb79bc71d413a4f605b40a34751b2dac908 (patch) | |
tree | cf5e0a2b7a3c152a0b9ed83d51bb0fc4e81aad56 /nand_spl/board/freescale | |
parent | 471eec58de136596d4cd1070178872136fcfd4c2 (diff) |
MX31: mx31pdk: fix nand_spl
Commit f326cbba98bae21d41df8daac0bd78121d557af1 breaks mx31pdk,
as the _end section in u-boot.lds is missing for the nand_spl
production.
Signed-off-by: Stefano Babic <sbabic@denx.de>
CC: Fabio Estevam <fabio.estevam@freescale.com>
Tested-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'nand_spl/board/freescale')
-rw-r--r-- | nand_spl/board/freescale/mx31pdk/u-boot.lds | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nand_spl/board/freescale/mx31pdk/u-boot.lds b/nand_spl/board/freescale/mx31pdk/u-boot.lds index 324a932fb22..d2b08f60c59 100644 --- a/nand_spl/board/freescale/mx31pdk/u-boot.lds +++ b/nand_spl/board/freescale/mx31pdk/u-boot.lds @@ -63,6 +63,8 @@ SECTIONS *(.dynsym) } + _end = .; + .bss __rel_dyn_start (OVERLAY) : { __bss_start = .; *(.bss) |