aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-02-01 17:19:16 -0700
committerChristian Cunningham <cc@localhost>2022-02-01 17:19:16 -0700
commit36f2d87ee57e841be5fe60f6430bdd167f9f03af (patch)
tree4668df28fa099cb1111cd7b4657ce7ef4c5db290 /linker.ld
parent352c8713ddb99f4b9f3c73b5b6b8bc9e83f6b6bd (diff)
Added spinlock condition
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld2
1 files changed, 1 insertions, 1 deletions
diff --git a/linker.ld b/linker.ld
index b7048ab..260e1f1 100644
--- a/linker.ld
+++ b/linker.ld
@@ -13,7 +13,7 @@ SECTIONS
KEEP(*(.text.kernel))
*(.text*)
}
- . = ALIGN(4096); /* align to page size */
+ . = 0x208000; /* 2MiB Kernel/ Boot */
__text_end = .;
__data_start = .;