summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--p/link.ld2
1 files changed, 1 insertions, 1 deletions
diff --git a/p/link.ld b/p/link.ld
index 59a9253..4070776 100644
--- a/p/link.ld
+++ b/p/link.ld
@@ -5,7 +5,7 @@ SECTIONS
. = 0x80000000;
.text.init : { *(.text.init) }
.tohost ALIGN(0x1000) : { *(.tohost) }
- .text : { *(.text) }
+ .text ALIGN(0x1000) : { *(.text) }
.data ALIGN(0x1000) : { *(.data) }
.bss : { *(.bss) }
_end = .;