You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by vi...@apache.org on 2021/07/27 05:17:26 UTC

[mynewt-core] branch master updated: hw/mcu/nordic/nrf5340: Update syscfg names to reflect nRF5340 netcore version and signing key

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

vipulrahane 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 1008815  hw/mcu/nordic/nrf5340: Update syscfg names to reflect nRF5340 netcore version and signing key
     new d96ca03  Merge pull request #2647 from vikrant-proxy/build-net-core-names
1008815 is described below

commit 100881582fba9b04ea26631899ec279580b890c0
Author: Vikrant More <vi...@proxy.com>
AuthorDate: Mon Jul 26 12:40:28 2021 -0700

    hw/mcu/nordic/nrf5340: Update syscfg names to reflect nRF5340 netcore version and signing key
---
 hw/mcu/nordic/nrf5340/net_core_image/scripts/build_net_core.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/mcu/nordic/nrf5340/net_core_image/scripts/build_net_core.sh b/hw/mcu/nordic/nrf5340/net_core_image/scripts/build_net_core.sh
index 32d6f60..958537b 100755
--- a/hw/mcu/nordic/nrf5340/net_core_image/scripts/build_net_core.sh
+++ b/hw/mcu/nordic/nrf5340/net_core_image/scripts/build_net_core.sh
@@ -25,10 +25,10 @@ NET_CORE_O=${MYNEWT_USER_SRC_DIR}/net_core_img.o
 # Default flags for create-image
 CREATE_IMAGE_FLAGS="timestamp"
 
-if [ -z "${MYNEWT_VAL_APPLICATION_VERSION}" ] && [ -z "${MYNEWT_VAL_APPLICATION_SIGNING_KEYS}" ]; then
+if [ -z "${MYNEWT_VAL_NRF5340_NET_APPLICATION_VERSION}" ] && [ -z "${MYNEWT_VAL_NRF5340_NET_APPLICATION_SIGNING_KEYS}" ]; then
   echo Using default create-image flags=$CREATE_IMAGE_FLAGS
 else
-  CREATE_IMAGE_FLAGS="${MYNEWT_VAL_APPLICATION_VERSION} ${MYNEWT_VAL_APPLICATION_SIGNING_KEYS}"
+  CREATE_IMAGE_FLAGS="${MYNEWT_VAL_NRF5340_NET_APPLICATION_VERSION} ${MYNEWT_VAL_NRF5340_NET_APPLICATION_SIGNING_KEYS}"
   echo Using user defined create-image flags=$CREATE_IMAGE_FLAGS
 fi