From 65ba015d6c1f248d36ad01a653bc49637804b15b Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Sun, 10 Aug 2025 15:46:33 -0400 Subject: working usermode objdir iteration --- apps/init/x86_64.ld | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 apps/init/x86_64.ld (limited to 'apps/init/x86_64.ld') diff --git a/apps/init/x86_64.ld b/apps/init/x86_64.ld new file mode 100644 index 0000000..45b08f5 --- /dev/null +++ b/apps/init/x86_64.ld @@ -0,0 +1,10 @@ +OUTPUT_ARCH(i386:x86-64) + +PAGESIZE = CONSTANT(MAXPAGESIZE); + +SECTIONS +{ + . = 0x1000; + .text BLOCK(PAGESIZE) : ALIGN(PAGESIZE) { *(.text.start) *(.text) *(.rodata) } + .data BLOCK(PAGESIZE) : ALIGN(PAGESIZE) { *(.data) *(.bss) } +} -- cgit v1.2.1