summaryrefslogtreecommitdiff
path: root/kernel/arch/i686/linker.ld
diff options
context:
space:
mode:
authorTyler Murphy <=>2023-07-22 11:05:30 -0400
committerTyler Murphy <=>2023-07-22 11:05:30 -0400
commitda094d011f52a8f1ce879810cd1a4bbbe34f08d4 (patch)
tree4649b04705b49c2eb5f8691a5d9951351f65df04 /kernel/arch/i686/linker.ld
parentrefactoring (diff)
downloadfinix-da094d011f52a8f1ce879810cd1a4bbbe34f08d4.tar.gz
finix-da094d011f52a8f1ce879810cd1a4bbbe34f08d4.tar.bz2
finix-da094d011f52a8f1ce879810cd1a4bbbe34f08d4.zip
paging is not very funHEADmain
Diffstat (limited to 'kernel/arch/i686/linker.ld')
-rw-r--r--kernel/arch/i686/linker.ld5
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/arch/i686/linker.ld b/kernel/arch/i686/linker.ld
index ae48afb..abf70cc 100644
--- a/kernel/arch/i686/linker.ld
+++ b/kernel/arch/i686/linker.ld
@@ -7,9 +7,9 @@ SECTIONS {
kernel_start = .;
.bootstrap : {
- *(.bootstrap.data)
- *(.bootstrap.stack)
*(.bootstrap.text)
+ *(.bootstrap.data)
+ *(.bootstrap.bss)
}
. += 0xC0000000;
@@ -30,7 +30,6 @@ SECTIONS {
{
*(COMMON)
*(.bss)
- *(.stack)
}
kernel_end = .;