aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-03-19 18:04:48 +1300
committerArslaan Pathan <[email protected]>2026-03-19 18:04:48 +1300
commit1814057050a5099d7eaa6f0f6395a4054801da6f (patch)
tree3395c597b100fbe9c53fee9789cc1b016b4b21d4 /linker.ld
parent0896c87140db479a5663d40a98c16dafc3d26b67 (diff)
downloadFrenchToastOS-1814057050a5099d7eaa6f0f6395a4054801da6f.tar.xz
FrenchToastOS-1814057050a5099d7eaa6f0f6395a4054801da6f.zip
Fix wrong section (text instead of .text, oops) for entrypoint, change 1M alignment back to 2M, make docker scripts work because arm
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 0e93f9b..e56537d 100644
--- a/linker.ld
+++ b/linker.ld
@@ -2,7 +2,7 @@ ENTRY(_start)
SECTIONS
{
- . = 1M;
+ . = 2M;
.text BLOCK(4K) : ALIGN(4K)
{