From 7ba330dff12efe863608530099d4ff73d7a090b5 Mon Sep 17 00:00:00 2001 From: Petro Karashchenko Date: Sat, 27 Nov 2021 15:52:27 +0200 Subject: [PATCH] boards/same70-xplained/scripts: fix memory region size for MCUboot app Signed-off-by: Petro Karashchenko --- .../arm/samv7/same70-xplained/scripts/flash-dtcm-mcuboot-app.ld | 2 +- .../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 5eae10d22ed..d38c7ff3061 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 8af295c98e3..34a0c82957e 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 }