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
|
SECTIONS
|
||||||
{
|
{
|
||||||
/* Starts at LOADER_ADDR */
|
/* Starts at LOADER_ADDR */
|
||||||
. = 0x8000
|
. = 0x8000;
|
||||||
_start = .;
|
_start = .;
|
||||||
_text_start = .;
|
_text_start = .;
|
||||||
.text :
|
.text :
|
||||||
@ -19,7 +19,7 @@ SECTIONS
|
|||||||
{
|
{
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
}
|
}
|
||||||
. = ALIGN(4096)
|
. = ALIGN(4096);
|
||||||
_rodata_end = .;
|
_rodata_end = .;
|
||||||
|
|
||||||
_data_start = .;
|
_data_start = .;
|
||||||
@ -36,7 +36,7 @@ SECTIONS
|
|||||||
bss = .;
|
bss = .;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
}
|
}
|
||||||
. = ALIGN(4096)
|
. = ALIGN(4096);
|
||||||
_bss_end = .;
|
_bss_end = .;
|
||||||
_end = .;
|
_end = .;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user