forked from M-Labs/zynq-rs
link.x: rm unneeded ALIGN(4)
This commit is contained in:
parent
d001593a36
commit
66c3470afd
3
link.x
3
link.x
|
@ -33,19 +33,16 @@ SECTIONS
|
||||||
{
|
{
|
||||||
*(.text.boot);
|
*(.text.boot);
|
||||||
*(.text .text.*);
|
*(.text .text.*);
|
||||||
. = ALIGN(4);
|
|
||||||
} > OCM
|
} > OCM
|
||||||
|
|
||||||
.rodata : ALIGN(4)
|
.rodata : ALIGN(4)
|
||||||
{
|
{
|
||||||
*(.rodata .rodata.*);
|
*(.rodata .rodata.*);
|
||||||
. = ALIGN(4);
|
|
||||||
} > OCM
|
} > OCM
|
||||||
|
|
||||||
.data : ALIGN(4)
|
.data : ALIGN(4)
|
||||||
{
|
{
|
||||||
*(.data .data.*);
|
*(.data .data.*);
|
||||||
. = ALIGN(4);
|
|
||||||
} > OCM
|
} > OCM
|
||||||
|
|
||||||
.bss (NOLOAD) : ALIGN(0x4000)
|
.bss (NOLOAD) : ALIGN(0x4000)
|
||||||
|
|
Loading…
Reference in New Issue