summaryrefslogtreecommitdiffhomepage
path: root/src/arm64/script.lds
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-04-02 09:48:06 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-04-02 09:48:06 +0200
commitb86c34ad45c2a066a9ca86a86b2c49d30697c671 (patch)
treecdf6c3f1c6479e4efd7b6f3597619c3e7b57fcd9 /src/arm64/script.lds
parentc78e5763d8f5e471d043e6ed2752e245dbcaf047 (diff)
arm64: fix: a fully arm64 firmware + important fixes and patches.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/arm64/script.lds')
-rw-r--r--src/arm64/script.lds18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/arm64/script.lds b/src/arm64/script.lds
index b8a0d11..6daad64 100644
--- a/src/arm64/script.lds
+++ b/src/arm64/script.lds
@@ -1,14 +1,14 @@
ENTRY(cb_reset_vector)
+
SECTIONS
{
- . = 0x40100000;
+ . = 0x00000000;
- .text : { *(.text) }
- .data : { *(.data) }
- .bss : { *(.bss COMMON) }
- . = ALIGN(8);
- . = . + 0x1000; /* 4kB of stack memory */
- __cb_stack_end = .;
+ .text : {
+ *(.text*)
+ }
- PROVIDE(cb_memory_end = .);
-}
+ .bss : {
+ *(.bss*)
+ }
+} \ No newline at end of file