Skip to content

Commit

Permalink
Revert "x86/build: Move _etext to actual end of .text"
Browse files Browse the repository at this point in the history
This reverts commit 8738676 which is
commit 392bef709659abea614abfe53cf228e7a59876a4 upstream.

This breaks the android build at the moment as it still uses binutils :(

Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
gregkh committed May 31, 2019
1 parent 719bdd9 commit 3434ddb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/x86/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ SECTIONS
*(.text.__x86.indirect_thunk)
__indirect_thunk_end = .;
#endif
} :text = 0x9090

/* End of text section */
_etext = .;
/* End of text section */
_etext = .;
} :text = 0x9090

NOTES :text :note

Expand Down

0 comments on commit 3434ddb

Please sign in to comment.