aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/linker.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/linker.ld')
-rw-r--r--src/kernel/linker.ld7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/kernel/linker.ld b/src/kernel/linker.ld
index 9062b27..8ca4406 100644
--- a/src/kernel/linker.ld
+++ b/src/kernel/linker.ld
@@ -1,27 +1,22 @@
ENTRY(_start)
-/* Where the sections of the object files will be put in the final image */
SECTIONS {
/* Begin @ 1 MB */
. = 1M;
- /* Put the multiboot header. Next, the .text section. */
.text BLOCK(4K) : ALIGN(4K) {
- *(.ezlocation)
+ *(.start_location)
*(.text)
}
- /* 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)