Blink an LED on pi

This commit is contained in:
2025-05-19 18:33:13 +02:00
parent d4063f025d
commit 948cbf758f
11 changed files with 44 additions and 62 deletions

View File

@@ -1,7 +1,7 @@
SECTIONS
{
. = 0x80000; /* Kernel load address for AArch64 */
.text : { KEEP(*(.text.boot)) *(.text .text.* .gnu.linkonce.t*) }
. = 0x80000;
.text : { KEEP(*(.text._start)) *(.text .text.* .gnu.linkonce.t*) }
.rodata : { *(.rodata .rodata.* .gnu.linkonce.r*) }
PROVIDE(_data = .);
.data : { *(.data .data.* .gnu.linkonce.d*) }