diff options
author | Magnus Damm <damm@opensource.se> | 2010-05-18 18:42:40 +0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-05-31 08:11:34 +0400 |
commit | b34bce45530ca897aea35915e0e42eb3c8047b52 (patch) | |
tree | b59dfbab04aa5225a6c3e26cc7358ecf7c825ea5 /arch/sh/boot/romimage/vmlinux.scr | |
parent | 1238c684325d9710544af6f0d11bf7cd6efd5925 (diff) | |
download | linux-b34bce45530ca897aea35915e0e42eb3c8047b52.tar.xz |
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>
Diffstat (limited to 'arch/sh/boot/romimage/vmlinux.scr')
-rw-r--r-- | arch/sh/boot/romimage/vmlinux.scr | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sh/boot/romimage/vmlinux.scr b/arch/sh/boot/romimage/vmlinux.scr index 287c08f8b4bb..ea27298a99a7 100644 --- a/arch/sh/boot/romimage/vmlinux.scr +++ b/arch/sh/boot/romimage/vmlinux.scr @@ -1,6 +1,7 @@ SECTIONS { .text : { + zero_page_pos = .; *(.data) } } |