Fixed errors in ARM linker. Converted all files to Unix format.
This commit is contained in:
parent
74035befbf
commit
bf60ad29f4
@ -3,7 +3,7 @@ ENTRY(Start)
|
||||
SECTIONS
|
||||
{
|
||||
/* Starts at LOADER_ADDR */
|
||||
. = 0x8000
|
||||
. = 0x8000;
|
||||
_start = .;
|
||||
_text_start = .;
|
||||
.text :
|
||||
@ -19,7 +19,7 @@ SECTIONS
|
||||
{
|
||||
*(.rodata)
|
||||
}
|
||||
. = ALIGN(4096)
|
||||
. = ALIGN(4096);
|
||||
_rodata_end = .;
|
||||
|
||||
_data_start = .;
|
||||
@ -36,7 +36,7 @@ SECTIONS
|
||||
bss = .;
|
||||
*(.bss)
|
||||
}
|
||||
. = ALIGN(4096)
|
||||
. = ALIGN(4096);
|
||||
_bss_end = .;
|
||||
_end = .;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user