Fix text boot section at bin start
This commit is contained in:
parent
ad5210eb86
commit
3f3fb3b138
8
rpi3.ld
8
rpi3.ld
@ -7,7 +7,9 @@ MEMORY
|
|||||||
|
|
||||||
SECTIONS
|
SECTIONS
|
||||||
{
|
{
|
||||||
.text : { *(.text .text.*) }
|
.text : { *(.text.boot)
|
||||||
|
*(.text)
|
||||||
|
}
|
||||||
.rodata : { *(.rodata .rodata.*) }
|
.rodata : { *(.rodata .rodata.*) }
|
||||||
.data : { *(.data .data.*) }
|
.data : { *(.data .data.*) }
|
||||||
|
|
||||||
@ -27,6 +29,6 @@ SECTIONS
|
|||||||
{
|
{
|
||||||
*(.comment) *(.gnu) *(.note*) *(.eh_frame*)
|
*(.comment) *(.gnu) *(.note*) *(.eh_frame*)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
__bss_size = (__bss_end - __bss_start) >> 3;
|
__bss_size = (__bss_end - __bss_start) >> 3;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user