diff options
author | David Hendricks <dhendrix@chromium.org> | 2013-02-09 14:53:47 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-02-10 01:28:06 +0100 |
commit | f5a302378aa062916b5838a81c26567b59f93a8f (patch) | |
tree | 5f7c94933b28bb657ddc4e9121448cae5a8450ed /src/arch/armv7/bootblock.lds | |
parent | 74e27b419dc9da8ea7c7ceb9cc0ad203176d24f9 (diff) | |
download | coreboot-f5a302378aa062916b5838a81c26567b59f93a8f.tar.xz |
armv7: make bootblock linker script more explicit
This adds a .bl1 and .start symbol that is placed at the beginning
of the .rom section.
The goal is to move the .id section in between the reset vector and
bootblock_main.
Change-Id: Ie732ce656d697c059cc0fa40c844b39f53fc214c
Signed-off-by: David Hendricks <dhendrix@chromium.org>
Reviewed-on: http://review.coreboot.org/2344
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/arch/armv7/bootblock.lds')
-rw-r--r-- | src/arch/armv7/bootblock.lds | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/armv7/bootblock.lds b/src/arch/armv7/bootblock.lds index 9482cef34d..f45e6c072d 100644 --- a/src/arch/armv7/bootblock.lds +++ b/src/arch/armv7/bootblock.lds @@ -30,6 +30,8 @@ SECTIONS /* This section might be better named .setup */ .rom ROMLOC : { _rom = .; + *(.bl1); + *(.start); *(.text); *(.text.*); *(.rom.text); |