Skip to content

Commit e76c015

Browse files
committed
samples: suit: use CONFIG_SOC_NRF54H20_GENERATE_BICR
Instead of the removed CONFIG_SOC_NRF54H20_GENERATE_BICR. Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent a38070b commit e76c015

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

doc/nrf/app_dev/device_guides/nrf54h/ug_nrf54h20_suit_recovery.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,15 @@ To turn an application into a recovery application, the following steps have to
129129

130130
* :kconfig:option:`CONFIG_SUIT_RECOVERY` set to ``y``
131131
* :kconfig:option:`CONFIG_NRF_REGTOOL_GENERATE_UICR` set to ``n``
132-
* :kconfig:option:`CONFIG_NRF_REGTOOL_GENERATE_BICR` set to ``n``
132+
* :kconfig:option:`CONFIG_SOC_NRF54H20_GENERATE_BICR` set to ``n``
133133

134134
To do that you can simply paste the following code snippet into your configuration files:
135135

136136
.. code-block:: cfg
137137
138138
CONFIG_SUIT_RECOVERY=y
139139
CONFIG_NRF_REGTOOL_GENERATE_UICR=n
140-
CONFIG_NRF_REGTOOL_GENERATE_BICR=n
140+
CONFIG_SOC_NRF54H20_GENERATE_BICR=n
141141
142142
#. Create the overlay files to be used by the recovery application.
143143
In this guide it is assumed that for the application core they are placed in the custom recovery application directory in the :file:`boards/nrf54h20dk_nrf54h20_cpuapp.overlay` file.

samples/suit/flash_companion/prj.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ CONFIG_USE_DT_CODE_PARTITION=y
6363
CONFIG_SUIT_LOCAL_ENVELOPE_GENERATE=n
6464
CONFIG_SUIT_ENVELOPE_TARGET=""
6565
CONFIG_NRF_REGTOOL_GENERATE_UICR=n
66-
CONFIG_NRF_REGTOOL_GENERATE_BICR=n
66+
CONFIG_SOC_NRF54H20_GENERATE_BICR=n
6767

6868
# Enable canonical zcbor encoding
6969
CONFIG_ZCBOR_CANONICAL=y

samples/suit/recovery/prj.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ CONFIG_SUIT_RECOVERY=y
1111
# It is the main application which is responsible for flashing and generating the UICR
1212
# configuration - the recovery application should not do it.
1313
CONFIG_NRF_REGTOOL_GENERATE_UICR=n
14-
CONFIG_NRF_REGTOOL_GENERATE_BICR=n
14+
CONFIG_SOC_NRF54H20_GENERATE_BICR=n
1515

1616
############
1717

samples/suit/recovery/sysbuild/hci_ipc.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ CONFIG_SUIT_RECOVERY=y
1111
# It is the main application which is responsible for flashing and generating the UICR
1212
# configuration - the recovery application should not do it.
1313
CONFIG_NRF_REGTOOL_GENERATE_UICR=n
14-
CONFIG_NRF_REGTOOL_GENERATE_BICR=n
14+
CONFIG_SOC_NRF54H20_GENERATE_BICR=n
1515

1616
###########
1717
CONFIG_BT_BUF_ACL_RX_SIZE=502

0 commit comments

Comments
 (0)