multiple changes: BL1/BL2/kernel separation (build system, etc.) BL2 implementation. BL documentation

This commit is contained in:
vmttmv
2025-11-13 23:35:54 +02:00
parent f1b0670a15
commit 62fe09d80d
8 changed files with 348 additions and 284 deletions

14
bootloader/stage2.ld Normal file
View File

@@ -0,0 +1,14 @@
SECTIONS {
. = 0x7e00;
.text : { *(.text*) }
.rodata : { *(.rodata*) }
.data : { *(.data*) }
.bss : {
*(.bss*)
*(COMMON)
}
read_buf = .;
}