|
Last change
on this file was 368, checked in by cfuguet, 13 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
|
| Line | |
|---|
| 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 = 0x00100000;
|
|---|
| 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.