mirror of
https://github.com/apache/nuttx.git
synced 2026-05-23 23:28:29 +08:00
MPFS: Fix error in flat build linker script
Use sram instead of ksram (copy&paste error)
This commit is contained in:
committed by
Petro Karashchenko
parent
c0c0ffdf2f
commit
30c25a95f3
@@ -28,7 +28,7 @@ OUTPUT_ARCH("riscv")
|
||||
|
||||
__ksram_start = ORIGIN(sram);
|
||||
__ksram_size = LENGTH(sram);
|
||||
__ksram_end = ORIGIN(ksram) + LENGTH(ksram);
|
||||
__ksram_end = ORIGIN(sram) + LENGTH(sram);
|
||||
|
||||
ENTRY(_stext)
|
||||
EXTERN(_vectors)
|
||||
|
||||
Reference in New Issue
Block a user