diff options
Diffstat (limited to 'arch/i386/linker.ld')
-rw-r--r-- | arch/i386/linker.ld | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/i386/linker.ld b/arch/i386/linker.ld index 61799c7..7eb9d99 100644 --- a/arch/i386/linker.ld +++ b/arch/i386/linker.ld @@ -26,9 +26,9 @@ SECTIONS { *(.bootstrap_stack) } - _bitmap_start = .; - . += 128K; - _bitmap_end = .; + .usertext ALIGN(4K) : AT(ADDR(.usertext) - 0xC0000000) { + *(.usertext) + } _kernel_end = .; } |