|
@@ -20,6 +20,7 @@ PHDRS {
|
|
code PT_LOAD;
|
|
code PT_LOAD;
|
|
percpu PT_LOAD;
|
|
percpu PT_LOAD;
|
|
data PT_LOAD;
|
|
data PT_LOAD;
|
|
|
|
+ note PT_NOTE;
|
|
}
|
|
}
|
|
SECTIONS
|
|
SECTIONS
|
|
{
|
|
{
|
|
@@ -62,6 +63,9 @@ SECTIONS
|
|
|
|
|
|
/* Read-only data */
|
|
/* Read-only data */
|
|
|
|
|
|
|
|
+ NOTES :code :note /* put .notes in text and mark in PT_NOTE */
|
|
|
|
+ code_continues : {} :code /* switch back to regular program... */
|
|
|
|
+
|
|
/* Exception table */
|
|
/* Exception table */
|
|
. = ALIGN(16);
|
|
. = ALIGN(16);
|
|
__ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET)
|
|
__ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET)
|
|
@@ -276,10 +280,6 @@ SECTIONS
|
|
.debug_typenames 0 : { *(.debug_typenames) }
|
|
.debug_typenames 0 : { *(.debug_typenames) }
|
|
.debug_varnames 0 : { *(.debug_varnames) }
|
|
.debug_varnames 0 : { *(.debug_varnames) }
|
|
/* These must appear regardless of . */
|
|
/* These must appear regardless of . */
|
|
- /* Discard them for now since Intel SoftSDV cannot handle them.
|
|
|
|
- .comment 0 : { *(.comment) }
|
|
|
|
- .note 0 : { *(.note) }
|
|
|
|
- */
|
|
|
|
/DISCARD/ : { *(.comment) }
|
|
/DISCARD/ : { *(.comment) }
|
|
/DISCARD/ : { *(.note) }
|
|
/DISCARD/ : { *(.note) }
|
|
}
|
|
}
|