You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by pk...@apache.org on 2022/03/28 11:06:00 UTC

[incubator-nuttx] branch master updated: MPFS: Fix error in flat build linker script

This is an automated email from the ASF dual-hosted git repository.

pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 30c25a9  MPFS: Fix error in flat build linker script
30c25a9 is described below

commit 30c25a95f31e43dd73c2842c68bbf506e5a50d74
Author: Ville Juven <vi...@unikie.com>
AuthorDate: Mon Mar 28 10:57:11 2022 +0300

    MPFS: Fix error in flat build linker script
    
    Use sram instead of ksram (copy&paste error)
---
 boards/risc-v/mpfs/icicle/scripts/ld.script | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/boards/risc-v/mpfs/icicle/scripts/ld.script b/boards/risc-v/mpfs/icicle/scripts/ld.script
index b50d42a..6933cb6 100755
--- a/boards/risc-v/mpfs/icicle/scripts/ld.script
+++ b/boards/risc-v/mpfs/icicle/scripts/ld.script
@@ -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)