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
Defined a new known issue that describes the incorrect partition map
for the nrf54l15dk/nrf54l10/cpuapp board target in the nRF Desktop
application.
Ref: NCSDK-34584
Signed-off-by: Kamil Piszczek <[email protected]>
Copy file name to clipboardExpand all lines: doc/nrf/releases_and_maturity/known_issues.rst
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2125,6 +2125,36 @@ The issues in this section are related to the :ref:`nrf_desktop` application.
2125
2125
nRF Desktop is also affected by :ref:`hogp_readme` library's issue :ref:`NCSDK-30288 <ncsdk_30288>`.
2126
2126
The issue might cause accessing data under the ``NULL`` pointer in case of Bluetooth disconnection while forwarding a configuration channel operation in the :ref:`nrf_desktop_hid_forward`.
2127
2127
2128
+
.. rst-class:: v3-0-2 v3-0-1 v3-0-0
2129
+
2130
+
NCSDK-34584: The :ref:`nrf_desktop` application uses incorrect partition map for the nRF54L10 SoC
2131
+
In the :ref:`nrf_desktop` application, a partition map is incorrectly defined for each build configuration that is supported by the ``nrf54l15dk/nrf54l10/cpuapp`` board target.
2132
+
In the |NCS| releases affected by this issue, it was assumed that the NVM size of the nRF54L10 SoC was 10 KB larger than the actual one.
2133
+
The NVM size of the nRF54L10 SoC is equal to 1012 KB.
2134
+
2135
+
The workaround fix for the nRF54L10 partition map is a breaking change and cannot be performed using DFU.
2136
+
The DFU procedure will fail if you attempt to upgrade the application firmware based on one of the |NCS| releases that is affected by this issue.
2137
+
2138
+
**Affected platforms:** nRF54L10
2139
+
2140
+
**Workaround:** Manually cherry-pick and apply the commit with the fix from the ``main`` branch of the ``sdk-nrf`` repository (commit hash: ``2658ceea216a9020450206347ad8a08d44b53e5c``).
2141
+
Additionally, you need to manually update the :file:`boards/nordic/nrf54l15dk/nrf54l15dk_nrf54l10_cpuapp.dts` DTS file in your local copy of the ``sdk-zephyr`` repository to avoid issues with build asserts that are used for RRAM validation.
2142
+
Correct the ``cpuapp_rram`` DTS node in the following way:
2143
+
2144
+
.. code-block::
2145
+
2146
+
&cpuapp_rram {
2147
+
reg = <0x0 DT_SIZE_K(1012)>;
2148
+
};
2149
+
2150
+
Then, correct the ``storage_partition`` node in the following way:
0 commit comments