diff options
Diffstat (limited to 'src/kernel/linker.ld')
-rw-r--r-- | src/kernel/linker.ld | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/linker.ld b/src/kernel/linker.ld index b338ba6..192c86e 100644 --- a/src/kernel/linker.ld +++ b/src/kernel/linker.ld @@ -4,7 +4,7 @@ SECTIONS { . = 1M; .text BLOCK(4K) : ALIGN(4K) { - *(.start_location) + *(.start_section) *(.text) } @@ -21,7 +21,7 @@ SECTIONS { *(.bss) } - .sizedetect BLOCK(4K) : ALIGN(4K) { - *(.sizedetect) + .end_section BLOCK(4K) : ALIGN(4K) { + *(.end_section) } } |