aboutsummaryrefslogtreecommitdiff
path: root/src/linker.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/linker.ld')
-rw-r--r--src/linker.ld56
1 files changed, 23 insertions, 33 deletions
diff --git a/src/linker.ld b/src/linker.ld
index 10315a5..6461b2b 100644
--- a/src/linker.ld
+++ b/src/linker.ld
@@ -1,35 +1,25 @@
-/* Specify entry for bootloader */
-ENTRY(_start)
-
-/* Specify position of object files in kernel image */
+OUTPUT_FORMAT("binary")
+ENTRY(start)
+phys = 0x00100000;
SECTIONS
{
- /* Start at 1MiB */
- . = 1M;
-
- /* First multiboot header then text section */
- .text BLOCK(4K) : ALIGN(4K)
- {
- *(.multiboot)
- *(.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)
- }
-} \ No newline at end of file
+ .text phys : AT(phys) {
+ code = .;
+ *(.text)
+ *(.rodata*)
+ . = ALIGN(4096);
+ }
+ .data : AT(phys + (data - code))
+ {
+ data = .;
+ *(.data)
+ . = ALIGN(4096);
+ }
+ .bss : AT(phys + (bss - code))
+ {
+ bss = .;
+ *(.bss)
+ . = ALIGN(4096);
+ }
+ end = .;
+}