Last change
on this file since 371 was
368,
checked in by cfuguet, 12 years ago
|
Modification in tsar/trunk/softs/tsar_boot
Writing the carriage return ('\r')character whenever the
line feed character ('\n') is written on the tty.
This modification has been implemented in the boot_putc
function.
Relocating the ldscript of the tsar_boot into each platform
conf directory.
|
File size:
616 bytes
|
Rev | Line | |
---|
[368] | 1 | /********************************************************** |
---|
| 2 | File : ldscript |
---|
| 3 | Author : Cesar Fuguet |
---|
| 4 | Date : June 2011 |
---|
| 5 | **********************************************************/ |
---|
| 6 | |
---|
| 7 | /* Definition of the base address for all segments */ |
---|
| 8 | |
---|
| 9 | seg_stack_base = 0x00108000; |
---|
| 10 | seg_boot_base = 0xBFC00000; /* le code de boot */ |
---|
| 11 | |
---|
| 12 | /* Grouping sections into segments */ |
---|
| 13 | |
---|
| 14 | ENTRY(boot) |
---|
| 15 | SECTIONS |
---|
| 16 | { |
---|
| 17 | . = seg_boot_base; |
---|
| 18 | .text : { |
---|
| 19 | *(.boot) |
---|
| 20 | *(.reset) |
---|
| 21 | } |
---|
| 22 | |
---|
| 23 | .data ALIGN(0x4) : { |
---|
| 24 | *(.reset_data) |
---|
| 25 | . = ALIGN(0x4); |
---|
| 26 | dtb_addr = .; |
---|
| 27 | INCLUDE "build/platform.ld"; |
---|
| 28 | } |
---|
| 29 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.