boards: rename nrf9160_innblue21ns

Change the 'ns' suffix to '_ns' for consistency with other boards.

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2021-09-17 13:53:53 -07:00 committed by Christopher Friedt
commit c6c42d42ea
7 changed files with 9 additions and 8 deletions

View file

@ -8,7 +8,7 @@ if SOC_NRF9160_SICA
config BOARD_NRF9160_INNBLUE21
bool "nRF9160 innblue v2.1"
config BOARD_NRF9160_INNBLUE21NS
config BOARD_NRF9160_INNBLUE21_NS
bool "nRF9160 innblue v2.1 non-secure"
endif # SOC_NRF9160_SICA

View file

@ -3,7 +3,7 @@
# Copyright (c) 2020 InnBlue
# SPDX-License-Identifier: Apache-2.0
if BOARD_NRF9160_INNBLUE21 || BOARD_NRF9160_INNBLUE21NS
if BOARD_NRF9160_INNBLUE21 || BOARD_NRF9160_INNBLUE21_NS
config BOARD
default "nrf9160_innblue21"
@ -29,7 +29,7 @@ config FLASH_LOAD_SIZE
endif # BOARD_NRF9160_INNBLUE21 && TRUSTED_EXECUTION_SECURE
if BOARD_NRF9160_INNBLUE21NS
if BOARD_NRF9160_INNBLUE21_NS
config FLASH_LOAD_OFFSET
default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_CODE_PARTITION))
@ -37,9 +37,9 @@ config FLASH_LOAD_OFFSET
config FLASH_LOAD_SIZE
default $(dt_chosen_reg_size_hex,$(DT_CHOSEN_Z_CODE_PARTITION))
endif # BOARD_NRF9160_INNBLUE21NS
endif # BOARD_NRF9160_INNBLUE21_NS
config BT_HCI_VS
default y if BT
endif # BOARD_NRF9160_INNBLUE21 || BOARD_NRF9160_INNBLUE21NS
endif # BOARD_NRF9160_INNBLUE21 || BOARD_NRF9160_INNBLUE21_NS

View file

@ -97,7 +97,7 @@ The process requires the following steps:
1. Build the Secure Zephyr application using ``-DBOARD=nrf9160_innblue21`` and
``CONFIG_TRUSTED_EXECUTION_SECURE=y`` in the the application project configuration file.
2. Build the Non-Secure Zephyr application using ``-DBOARD=nrf9160_innblue21ns``.
2. Build the Non-Secure Zephyr application using ``-DBOARD=nrf9160_innblue21_ns``.
3. Merge the two binaries together.
When building a Secure/Non-Secure application, the Secure application will

View file

@ -1,4 +1,4 @@
identifier: nrf9160_innblue21ns
identifier: nrf9160_innblue21_ns
name: nRF9160-INNBLUE21-Non-Secure
type: mcu
arch: arm

View file

@ -4,7 +4,7 @@
# SOC / Board
CONFIG_SOC_SERIES_NRF91X=y
CONFIG_SOC_NRF9160_SICA=y
CONFIG_BOARD_NRF9160_INNBLUE21NS=y
CONFIG_BOARD_NRF9160_INNBLUE21_NS=y
# Enable MPU
CONFIG_ARM_MPU=y

View file

@ -15,3 +15,4 @@ set(musca_s1_nonsecure_DEPRECATED musca_s1_ns)
set(nrf5340dk_nrf5340_cpuappns_DEPRECATED nrf5340dk_nrf5340_cpuapp_ns)
set(nrf9160dk_nrf9160ns_DEPRECATED nrf9160dk_nrf9160_ns)
set(circuitdojo_feather_nrf9160ns_DEPRECATED circuitdojo_feather_nrf9160_ns)
set(nrf9160_innblue21ns_DEPRECATED nrf9160_innblue21_ns)