|
Last change
on this file since 729 was
724,
checked in by cfuguet, 12 years ago
|
|
branches/fault_tolerance:
- Recreating fault_tolerance branch with all new modifications from
trunk.
- Introducing distributed boot rom in the tsar_generic_iob platform
|
|
File size:
771 bytes
|
| Line | |
|---|
| 1 | /********************************************************** |
|---|
| 2 | File : ldscript |
|---|
| 3 | Author : Cesar Fuguet |
|---|
| 4 | Date : June 2011 |
|---|
| 5 | **********************************************************/ |
|---|
| 6 | |
|---|
| 7 | /* Definition of the base address for code segment */ |
|---|
| 8 | |
|---|
| 9 | seg_reset_boot_base = 0xBFC00000; /* le code de boot */ |
|---|
| 10 | |
|---|
| 11 | seg_reset_stack_base = 0x10000000 - 0x8000 - 0x4; |
|---|
| 12 | seg_reset_stack_base = 0x00008000; |
|---|
| 13 | |
|---|
| 14 | /* Grouping sections into segments */ |
|---|
| 15 | |
|---|
| 16 | ENTRY(reset) |
|---|
| 17 | |
|---|
| 18 | SECTIONS |
|---|
| 19 | { |
|---|
| 20 | . = seg_reset_code_base; |
|---|
| 21 | .text : |
|---|
| 22 | { |
|---|
| 23 | *(.reset) |
|---|
| 24 | *(.rodata) |
|---|
| 25 | *(.rodata.*) |
|---|
| 26 | . = ALIGN(0x4); |
|---|
| 27 | dtb_addr = .; |
|---|
| 28 | INCLUDE "build/platform.ld"; |
|---|
| 29 | } |
|---|
| 30 | |
|---|
| 31 | . = seg_reset_stack_base; |
|---|
| 32 | .bss ALIGN(0x4) (NOLOAD) : |
|---|
| 33 | { |
|---|
| 34 | *(.data) |
|---|
| 35 | *(.bss) |
|---|
| 36 | } |
|---|
| 37 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.