summaryrefslogtreecommitdiffstats
path: root/apps/init/arch/x86_64/link.ld
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2025-09-15 15:51:13 -0400
committerJon Santmyer <jon@jonsantmyer.com>2025-09-15 15:51:13 -0400
commit5d73ba1059771f3226c1f45d41a9e3f52d68ee3d (patch)
treed1a93562ddff3810162d5180c3fe3cda58e24dad /apps/init/arch/x86_64/link.ld
parent76ee61642d9d5c7d2abb8b92adec7ec59bd8791a (diff)
downloadjove-os-5d73ba1059771f3226c1f45d41a9e3f52d68ee3d.tar.gz
jove-os-5d73ba1059771f3226c1f45d41a9e3f52d68ee3d.tar.bz2
jove-os-5d73ba1059771f3226c1f45d41a9e3f52d68ee3d.zip
begin init staging refactormain
Diffstat (limited to 'apps/init/arch/x86_64/link.ld')
-rw-r--r--apps/init/arch/x86_64/link.ld11
1 files changed, 0 insertions, 11 deletions
diff --git a/apps/init/arch/x86_64/link.ld b/apps/init/arch/x86_64/link.ld
deleted file mode 100644
index 79da5cb..0000000
--- a/apps/init/arch/x86_64/link.ld
+++ /dev/null
@@ -1,11 +0,0 @@
-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) }
- __program_end = .;
-}