Fixed errors in ARM linker. Converted all files to Unix format.

This commit is contained in:
L. Bradley LaBoon 2013-12-06 14:20:46 -05:00
parent 74035befbf
commit bf60ad29f4
8 changed files with 386 additions and 386 deletions

View File

@ -3,10 +3,10 @@ ENTRY(Start)
SECTIONS SECTIONS
{ {
/* Starts at LOADER_ADDR */ /* Starts at LOADER_ADDR */
. = 0x8000 . = 0x8000;
_start = .; _start = .;
_text_start = .; _text_start = .;
.text: .text :
{ {
KEEP(*(.text.boot)) KEEP(*(.text.boot))
*(.text) *(.text)
@ -15,15 +15,15 @@ SECTIONS
_text_end = .; _text_end = .;
_rodata_start = .; _rodata_start = .;
.rodata: .rodata :
{ {
*(.rodata) *(.rodata)
} }
. = ALIGN(4096) . = ALIGN(4096);
_rodata_end = .; _rodata_end = .;
_data_start = .; _data_start = .;
.data: .data :
{ {
*(.data) *(.data)
} }
@ -31,12 +31,12 @@ SECTIONS
_data_end = .; _data_end = .;
_bss_start = .; _bss_start = .;
.bss: .bss :
{ {
bss = .; bss = .;
*(.bss) *(.bss)
} }
. = ALIGN(4096) . = ALIGN(4096);
_bss_end = .; _bss_end = .;
_end = .; _end = .;
} }