Skip to content

Commit 0d46a93

Browse files
gmarullanangl
authored andcommitted
samples: suit: use CONFIG_SOC_NRF54H20_GENERATE_BICR
Instead of the removed CONFIG_NRF_REGTOOL_GENERATE_BICR. Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent 676b75f commit 0d46a93

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
@@ -125,15 +125,15 @@ To turn an application into a recovery application, the following steps have to
125125

126126
* :kconfig:option:`CONFIG_SUIT_RECOVERY` set to ``y``
127127
* :kconfig:option:`CONFIG_NRF_REGTOOL_GENERATE_UICR` set to ``n``
128-
* :kconfig:option:`CONFIG_NRF_REGTOOL_GENERATE_BICR` set to ``n``
128+
* :kconfig:option:`CONFIG_SOC_NRF54H20_GENERATE_BICR` set to ``n``
129129

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

132132
.. code-block:: cfg
133133
134134
CONFIG_SUIT_RECOVERY=y
135135
CONFIG_NRF_REGTOOL_GENERATE_UICR=n
136-
CONFIG_NRF_REGTOOL_GENERATE_BICR=n
136+
CONFIG_SOC_NRF54H20_GENERATE_BICR=n
137137
138138
#. Create the overlay files to be used by the recovery application.
139139
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)