Skip to content

Commit 8825528

Browse files
committed
app: Fix DTS for Thingy:91x
- Add missing b0 and mcuboot overlays - Set the secure size correctly for overlay-trace-backend.overlay - Disable carrier for Thingy:91x. It would need it's own overlay as the storage_partition is in external flash. Signed-off-by: Markus Lassila <markus.lassila@nordicsemi.no>
1 parent c961b3d commit 8825528

4 files changed

Lines changed: 37 additions & 3 deletions

File tree

app/overlay-trace-backend.overlay

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,15 @@
1717
* 0x2000_c800 Application RAM ( 206 kB)
1818
*/
1919

20+
/delete-node/ &sram0_s;
2021
/delete-node/ &sram0_ns;
2122

2223
&sram0 {
2324

25+
sram0_s: sram@0 {
26+
reg = <0x0 0x4000>;
27+
};
28+
2429
sram0_ns: sram@4000 {
2530
reg = <0x4000 0x3c000>;
2631
#address-cells = <1>;

app/sample.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ tests:
159159
- EXTRA_DTC_OVERLAY_FILE="overlay-carrier.overlay"
160160
platform_allow:
161161
- nrf9151dk/nrf9151/ns
162-
- thingy91x/nrf9151/ns
163162
integration_platforms:
164163
- nrf9151dk/nrf9151/ns
165164
serial_modem.lwm2m_carrier.softbank:
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/*
2+
* Copyright (c) 2026 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/ {
8+
chosen {
9+
zephyr,code-partition = &b0_partition;
10+
zephyr,console = &uart1;
11+
};
12+
};
13+
14+
&uart1 {
15+
current-speed = <1000000>;
16+
status = "okay";
17+
};
Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
1-
&uart0 {
1+
/*
2+
* Copyright (c) 2026 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/ {
8+
chosen {
9+
zephyr,code-partition = &s0_partition;
10+
zephyr,console = &uart1;
11+
};
12+
};
13+
14+
&uart1 {
15+
current-speed = <1000000>;
216
status = "okay";
3-
current-speed = < 1000000 >;
417
};

0 commit comments

Comments
 (0)