diff options
Diffstat (limited to 'nand_spl/board/sheldon/simpc8313/u-boot.lds')
-rw-r--r-- | nand_spl/board/sheldon/simpc8313/u-boot.lds | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nand_spl/board/sheldon/simpc8313/u-boot.lds b/nand_spl/board/sheldon/simpc8313/u-boot.lds index 1da4287673a..534a0c8654f 100644 --- a/nand_spl/board/sheldon/simpc8313/u-boot.lds +++ b/nand_spl/board/sheldon/simpc8313/u-boot.lds @@ -48,7 +48,7 @@ SECTIONS . = ALIGN(8); __bss_start = .; .bss (NOLOAD) : { *(.*bss) } - _end = .; + __bss_end__ = .; } ENTRY(_start) -ASSERT(_end <= 0xfff01000, "NAND bootstrap too big"); +ASSERT(__bss_end__ <= 0xfff01000, "NAND bootstrap too big"); |