sh: allow romImage data between head.S and the zero page

Extend the romImage code to allow putting data between
the head.S file and the empty_zero_page. Needed in the
case of more advanced loader code in a separate C file.

Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
Magnus Damm
2010-05-18 14:42:40 +00:00
committed by Paul Mundt
parent 1238c68432
commit b34bce4553
2 changed files with 10 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
SECTIONS
{
.text : {
zero_page_pos = .;
*(.data)
}
}