|
@@ -31,10 +31,9 @@ PHDRS {
|
|
|
SECTIONS
|
|
SECTIONS
|
|
|
{
|
|
{
|
|
|
. = 0x100000;
|
|
. = 0x100000;
|
|
|
- _stext = .; /* Start of text section */
|
|
|
|
|
.text : {
|
|
.text : {
|
|
|
- /* Text and read-only data */
|
|
|
|
|
- _text = .;
|
|
|
|
|
|
|
+ _stext = .; /* Start of text section */
|
|
|
|
|
+ _text = .; /* Text and read-only data */
|
|
|
HEAD_TEXT
|
|
HEAD_TEXT
|
|
|
TEXT_TEXT
|
|
TEXT_TEXT
|
|
|
SCHED_TEXT
|
|
SCHED_TEXT
|
|
@@ -46,11 +45,10 @@ SECTIONS
|
|
|
*(.text.*_indirect_*)
|
|
*(.text.*_indirect_*)
|
|
|
*(.fixup)
|
|
*(.fixup)
|
|
|
*(.gnu.warning)
|
|
*(.gnu.warning)
|
|
|
|
|
+ . = ALIGN(PAGE_SIZE);
|
|
|
|
|
+ _etext = .; /* End of text section */
|
|
|
} :text = 0x0700
|
|
} :text = 0x0700
|
|
|
|
|
|
|
|
- . = ALIGN(PAGE_SIZE);
|
|
|
|
|
- _etext = .; /* End of text section */
|
|
|
|
|
-
|
|
|
|
|
NOTES :text :note
|
|
NOTES :text :note
|
|
|
|
|
|
|
|
.dummy : { *(.dummy) } :data
|
|
.dummy : { *(.dummy) } :data
|