Delete bootloader/linker.ld

delete linker.ld as moved to kernel space
This commit is contained in:
2025-11-14 14:18:54 -08:00
committed by GitHub
parent d5906d72de
commit 3036ee3dfd

View File

@@ -1,26 +0,0 @@
ENTRY(kmain)
SECTIONS {
. = 1M;
.text : {
*(.text*)
}
.rodata : { *(.rodata*) }
.data : { *(.data*) }
.bss : {
*(.bss*)
*(COMMON)
}
.stack (NOLOAD) : {
. = ALIGN(4);
. = . + 0x1000;
}
.heap (NOLOAD) : {
. = ALIGN(4);
. = . + 0x10000;
}
}