|
@@ -50,8 +50,10 @@ SECTIONS
|
|
. = KERNEL_BINARY_TEXT_START;
|
|
. = KERNEL_BINARY_TEXT_START;
|
|
|
|
|
|
_text = .; /* Text and read-only data */
|
|
_text = .; /* Text and read-only data */
|
|
- .text ALIGN(16) : {
|
|
|
|
|
|
+ .head ALIGN(16) : {
|
|
HEAD_TEXT
|
|
HEAD_TEXT
|
|
|
|
+ } = 0
|
|
|
|
+ .text ALIGN(16) : {
|
|
TEXT_TEXT
|
|
TEXT_TEXT
|
|
SCHED_TEXT
|
|
SCHED_TEXT
|
|
LOCK_TEXT
|
|
LOCK_TEXT
|
|
@@ -65,7 +67,7 @@ SECTIONS
|
|
*(.fixup)
|
|
*(.fixup)
|
|
*(.lock.text) /* out-of-line lock text */
|
|
*(.lock.text) /* out-of-line lock text */
|
|
*(.gnu.warning)
|
|
*(.gnu.warning)
|
|
- } = 0
|
|
|
|
|
|
+ }
|
|
/* End of text section */
|
|
/* End of text section */
|
|
_etext = .;
|
|
_etext = .;
|
|
|
|
|