replace last __bss_end__ occurrences with __bss_end

Simon Glass' commit 3929fb0a14,
which changed all occurrences of __bss__end__ into __bss_end,
left behind some untouched __bss_end__ occurrences in all 33
u-boot.lds.debug files, in board/mousse/u-boot.lds.ram and
in board/mousse/u-boot.lds.rom. These are replaced here.

Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
This commit is contained in:
Albert ARIBAUD
2013-03-30 00:19:53 +00:00
committed by Tom Rini
parent 8faefadb73
commit 5993053fa4
35 changed files with 35 additions and 35 deletions

View File

@@ -137,6 +137,6 @@ SECTIONS
*(.bss)
*(COMMON)
}
__bss_end__ = . ;
__bss_end = . ;
PROVIDE (end = .);
}