commit | 2c3ce5c87de6b6e34302a9ee18158e03add1ba80 | [log] [tgz] |
---|---|---|
author | Pierre-Clément Tosi <ptosi@google.com> | Wed Apr 26 10:21:12 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Apr 26 10:21:12 2023 +0000 |
tree | 34ace89e31a8573bbd7a6153362be9199b48ea26 | |
parent | 991da4346fc313a2de6895154cb20130898c3285 [diff] | |
parent | cbbb849ab089fdd5a11ef9bc8f133f01e2d3c940 [diff] |
Merge "vmbase: Merge .init into .text"
diff --git a/vmbase/sections.ld b/vmbase/sections.ld index 87b909d..9ed2455 100644 --- a/vmbase/sections.ld +++ b/vmbase/sections.ld
@@ -39,12 +39,10 @@ * Collect together the code. This is page aligned so it can be mapped * as executable-only. */ - .init : ALIGN(4096) { + .text : ALIGN(4096) { text_begin = .; *(.init.entry) *(.init.*) - } >image - .text : { *(.text.*) } >image text_end = .;