You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ja...@apache.org on 2021/02/24 15:39:03 UTC

[mynewt-core] branch master updated: bsp/nordic_pca10095_net: Set empty IPC region for bootloader build

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

janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
     new e41c4a6  bsp/nordic_pca10095_net: Set empty IPC region for bootloader build
e41c4a6 is described below

commit e41c4a692454bd5086ce00af45fe08ae2b75f7e4
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Wed Feb 24 09:53:33 2021 +0100

    bsp/nordic_pca10095_net: Set empty IPC region for bootloader build
    
    IPC is not used in bootloader but linker were complaining about IPC
    region being not present.
---
 hw/bsp/nordic_pca10095_net/boot-nrf5340_net.ld | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hw/bsp/nordic_pca10095_net/boot-nrf5340_net.ld b/hw/bsp/nordic_pca10095_net/boot-nrf5340_net.ld
index 569b2f6..0c134f0 100644
--- a/hw/bsp/nordic_pca10095_net/boot-nrf5340_net.ld
+++ b/hw/bsp/nordic_pca10095_net/boot-nrf5340_net.ld
@@ -20,6 +20,7 @@ MEMORY
 {
   FLASH (rx) : ORIGIN = 0x01000000, LENGTH = 0x4000
   RAM (rwx) : ORIGIN = 0x21000000, LENGTH = 0x10000
+  IPC (rw)  : ORIGIN = 0x20000400, LENGTH = 0
 }
 
 /* The bootloader does not contain an image header */