diff options
author | Marvin Borner | 2019-11-08 23:13:51 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-08 23:13:51 +0100 |
commit | 5f0475e159428e50e58f3772d6a759ff86b7b55a (patch) | |
tree | db2610eb6a6613ecba2958f3277b9ec68ee144d6 /src/kernel/linker.ld | |
parent | dd8c010755a3044f0832c7e732e1e3cdedb4a2ac (diff) |
Began implementation of non-grub bootloader
Diffstat (limited to 'src/kernel/linker.ld')
-rw-r--r-- | src/kernel/linker.ld | 52 |
1 files changed, 29 insertions, 23 deletions
diff --git a/src/kernel/linker.ld b/src/kernel/linker.ld index 2abbaeb..9062b27 100644 --- a/src/kernel/linker.ld +++ b/src/kernel/linker.ld @@ -1,27 +1,33 @@ -ENTRY(start) -SECTIONS -{ - .text 0x100000 : - { - code = .; _code = .; __code = .; - *(.text) - . = ALIGN(4096); - } +ENTRY(_start) - .data : - { - data = .; _data = .; __data = .; - *(.data) - *(.rodata) - . = ALIGN(4096); - } +/* Where the sections of the object files will be put in the final image */ +SECTIONS { + /* Begin @ 1 MB */ + . = 1M; - .bss : - { - bss = .; _bss = .; __bss = .; - *(.bss) - . = ALIGN(4096); - } + /* Put the multiboot header. Next, the .text section. */ + .text BLOCK(4K) : ALIGN(4K) { + *(.ezlocation) + *(.text) + } - end = .; _end = .; __end = .; + /* Read-only data. */ + .rodata BLOCK(4K) : ALIGN(4K) { + *(.rodata) + } + + /* Read-write data (initialized) */ + .data BLOCK(4K) : ALIGN(4K) { + *(.data) + } + + /* Read-write data (uninitialized) and stack */ + .bss BLOCK(4K) : ALIGN(4K) { + *(COMMON) + *(.bss) + } + + .sizedetect BLOCK(4K) : ALIGN(4K) { + *(.sizedetect) + } } |