You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ac...@apache.org on 2021/11/27 19:06:39 UTC

[incubator-nuttx] branch master updated: boards/same70-xplained/scripts: fix memory region size for MCUboot app

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

acassis 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 7ba330d  boards/same70-xplained/scripts: fix memory region size for MCUboot app
7ba330d is described below

commit 7ba330dff12efe863608530099d4ff73d7a090b5
Author: Petro Karashchenko <pe...@gmail.com>
AuthorDate: Sat Nov 27 15:52:27 2021 +0200

    boards/same70-xplained/scripts: fix memory region size for MCUboot app
    
    Signed-off-by: Petro Karashchenko <pe...@gmail.com>
---
 boards/arm/samv7/same70-xplained/scripts/flash-dtcm-mcuboot-app.ld | 2 +-
 boards/arm/samv7/same70-xplained/scripts/flash-sram-mcuboot-app.ld | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/boards/arm/samv7/same70-xplained/scripts/flash-dtcm-mcuboot-app.ld b/boards/arm/samv7/same70-xplained/scripts/flash-dtcm-mcuboot-app.ld
index 5eae10d..d38c7ff 100644
--- a/boards/arm/samv7/same70-xplained/scripts/flash-dtcm-mcuboot-app.ld
+++ b/boards/arm/samv7/same70-xplained/scripts/flash-dtcm-mcuboot-app.ld
@@ -31,7 +31,7 @@
 
 MEMORY
 {
-  flash (rx) : ORIGIN = 0x00420200, LENGTH = 2048K - 128K - 0x200
+  flash (rx) : ORIGIN = 0x00420200, LENGTH = 896K - 0x200
   sram (rwx) : ORIGIN = 0x20000000, LENGTH = 384K
 }
 
diff --git a/boards/arm/samv7/same70-xplained/scripts/flash-sram-mcuboot-app.ld b/boards/arm/samv7/same70-xplained/scripts/flash-sram-mcuboot-app.ld
index 8af295c..34a0c82 100644
--- a/boards/arm/samv7/same70-xplained/scripts/flash-sram-mcuboot-app.ld
+++ b/boards/arm/samv7/same70-xplained/scripts/flash-sram-mcuboot-app.ld
@@ -28,7 +28,7 @@
 
 MEMORY
 {
-  flash (rx) : ORIGIN = 0x00420200, LENGTH = 2048K - 128K - 0x200
+  flash (rx) : ORIGIN = 0x00420200, LENGTH = 896K - 0x200
   sram (rwx) : ORIGIN = 0x20400000, LENGTH = 384K
 }