Skip to content

Commit 36f5cff

Browse files
tokangasrlubos
authored andcommitted
samples: cellular: modem_shell: Add nRF9251 DK support
Added board overlays for the nRF9251 DK. Signed-off-by: Tommi Kangas <tommi.kangas@nordicsemi.no>
1 parent bf581e6 commit 36f5cff

2 files changed

Lines changed: 77 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#
2+
# Copyright (c) 2026 Nordic Semiconductor ASA
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
# FOTA not yet supported
8+
CONFIG_MOSH_FOTA=n
9+
CONFIG_FOTA_DOWNLOAD=n
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
/*
2+
* Copyright (c) 2026 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/delete-node/ &cpuapp_boot_partition;
8+
/delete-node/ &cpuapp_slot0_partition;
9+
/delete-node/ &cpuapp_slot1_partition;
10+
/delete-node/ &cpuppr_code_partition;
11+
/delete-node/ &cpuflpr_code_partition;
12+
/delete-node/ &storage_partition;
13+
/delete-node/ &periphconf_partition;
14+
/delete-node/ &secure_storage_partition;
15+
16+
&cpuppr_vpr {
17+
status = "disabled";
18+
/delete-property/ source-memory;
19+
/delete-property/ execution-memory;
20+
};
21+
22+
&cpuflpr_vpr {
23+
status = "disabled";
24+
/delete-property/ source-memory;
25+
/delete-property/ execution-memory;
26+
};
27+
28+
&mram1x {
29+
partitions {
30+
cpuapp_boot_partition: partition@312000 {
31+
compatible = "zephyr,mapped-partition";
32+
reg = <0x312000 DT_SIZE_K(64)>;
33+
};
34+
35+
cpuapp_slot0_partition: partition@322000 {
36+
compatible = "zephyr,mapped-partition";
37+
reg = <0x322000 DT_SIZE_K(888)>;
38+
};
39+
40+
storage_partition: partition@400000 {
41+
compatible = "zephyr,mapped-partition";
42+
reg = <0x400000 DT_SIZE_K(40)>;
43+
};
44+
45+
periphconf_partition: partition@40a000 {
46+
compatible = "zephyr,mapped-partition";
47+
reg = <0x40a000 DT_SIZE_K(8)>;
48+
};
49+
50+
secure_storage_partition: partition@40c000 {
51+
compatible = "zephyr,mapped-partition";
52+
reg = <0x40c000 DT_SIZE_K(8)>;
53+
ranges = <0x0 0x40c000 0x2000>;
54+
#address-cells = <1>;
55+
#size-cells = <1>;
56+
57+
cpuapp_crypto_partition: partition@0 {
58+
compatible = "zephyr,mapped-partition";
59+
reg = <0x0 DT_SIZE_K(4)>;
60+
};
61+
62+
cpuapp_its_partition: partition@1000 {
63+
compatible = "zephyr,mapped-partition";
64+
reg = <0x1000 DT_SIZE_K(4)>;
65+
};
66+
};
67+
};
68+
};

0 commit comments

Comments
 (0)