You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/nrf/app_dev/device_guides/nrf54l/fota_update.rst
+11-4Lines changed: 11 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,9 @@ Currently, FOTA updates are supported only for the application core.
17
17
.. note::
18
18
For more information about introducing immutable MCUboot bootloader, refer to :ref:`ug_bootloader_adding_sysbuild_immutable_mcuboot`.
19
19
20
+
.. note::
21
+
nRF54l SoC's are supporting hardware Key Management Unit. This unit is used for providing authentication keys for DFU purposes. Don't miss KMU provisioning step while you setuping your device DFU with KMU enabled, other wise you application won't boot.
22
+
20
23
.. fota_upgrades_intro_end
21
24
22
25
.. _ug_nrf54l_developing_ble_fota_steps:
@@ -139,22 +142,26 @@ In |NCS|, you can build and program the :zephyr:code-sample:`smp-svr` as any oth
139
142
140
143
.. tabs::
141
144
142
-
.. group-tab:: nRF54L15 SoCs
145
+
.. group-tab:: nRF54L SoCs
143
146
144
147
.. parsed-literal::
145
148
:class: highlight
146
149
147
-
west build -b *board_name*/nrf54l15/cpuapp -- -DEXTRA_CONF_FILE=overlay-bt.conf
150
+
west build -b *board_name*/*nrf54l_soc_name*/cpuapp -- -DEXTRA_CONF_FILE=overlay-bt.conf
148
151
west flash
149
152
153
+
*nrf54l_soc_name* is placeholder for nrf54l15, nrf54l05 and nrf54l10
154
+
150
155
.. group-tab:: nRF54L15 SoCs with HW cryptography support
151
156
152
157
.. parsed-literal::
153
158
:class: highlight
154
159
155
-
west build -b *board_name*/nrf54l15/cpuapp -- -DEXTRA_CONF_FILE=overlay-bt.conf -DSB_CONFIG_BOOT_SIGNATURE_TYPE_ED25519=y -DSB_CONFIG_BOOT_SIGNATURE_TYPE_PURE=y -Dmcuboot_CONFIG_PM_PARTITION_SIZE_MCUBOOT=0x10000 -DSB_CONFIG_MCUBOOT_SIGNATURE_USING_KMU=y
160
+
west build -b *board_name*/*nrf54l_soc_name*/cpuapp -- -DEXTRA_CONF_FILE=overlay-bt.conf -DSB_CONFIG_BOOT_SIGNATURE_TYPE_ED25519=y -DSB_CONFIG_BOOT_SIGNATURE_TYPE_PURE=y -Dmcuboot_CONFIG_PM_PARTITION_SIZE_MCUBOOT=0x10000 -DSB_CONFIG_MCUBOOT_SIGNATURE_USING_KMU=y
156
161
west flash
157
162
163
+
*nrf54l_soc_name* is placeholder for nrf54l15, nrf54l05 and nrf54l10
164
+
158
165
159
166
.. group-tab:: nRF54L15 DK with SPI Flash as update image bank
160
167
@@ -199,7 +206,7 @@ For more information about the direct-xip mode and the revert mechanism support,
199
206
direct-xip mode can not be combined with the image encryption.
200
207
201
208
.. note::
202
-
building a project with direct-xip for nRF54l15 SoC target mode requires static partition manager file for partitioning, see known issues.
209
+
building a project with direct-xip for nRF54l SoCs target mode requires static partition manager file for partitioning, see known issues.
203
210
204
211
To use MCUboot in the direct-xip mode together with FOTA updates, do the following:
0 commit comments