Skip to content

Commit 0e9ae77

Browse files
Merge pull request #9 from benjaminbruun/feat/support_thingy91x
2 parents f7031ac + 50ab2e6 commit 0e9ae77

File tree

3 files changed

+42
-33
lines changed

3 files changed

+42
-33
lines changed

.github/workflows/softsim-build-using-docker.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ jobs:
2424
shell: bash
2525

2626
strategy:
27+
fail-fast: false
2728
matrix:
28-
board: [nrf9160dk/nrf9160/ns, nrf9161dk/nrf9161/ns, nrf9151dk/nrf9151/ns, thingy91/nrf9160/ns]
29+
board: [nrf9160dk/nrf9160/ns, nrf9161dk/nrf9161/ns, nrf9151dk/nrf9151/ns, thingy91/nrf9160/ns, thingy91x/nrf9151/ns]
2930

3031
steps:
3132
# Initialize a Zephyr West workspace in its default format
+20-16
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
1-
tfm_its:
2-
address: 0xf8000
3-
size: 0x2000
4-
tfm_otp_nv_counters:
5-
address: 0xfa000
6-
size: 0x2000
7-
EMPTY_tfm_ps:
8-
address: 0xfc000
9-
size: 0x4000
10-
tfm_storage:
11-
address: 0xf8000
12-
span:
13-
- EMPTY_tfm_ps
14-
- tfm_its
15-
- tfm_otp_nv_counters
16-
size: 0x8000
1+
nonsecure_storage:
2+
address: 0xf0000
3+
size: 0x8000
4+
span: [ nvs_storage ]
5+
nvs_storage:
6+
address: 0xf0000
7+
size: 0x8000
8+
tfm_its:
9+
address: 0xf8000
10+
size: 0x2000
11+
tfm_otp_nv_counters:
12+
address: 0xfa000
13+
size: 0x2000
14+
tfm_ps:
15+
address: 0xfc000
16+
size: 0x4000
17+
tfm_storage:
18+
address: 0xf8000
19+
size: 0x8000
20+
span: [ tfm_its, tfm_otp_nv_counters, tfm_ps ]
+20-16
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
1-
tfm_its:
2-
address: 0xf8000
3-
size: 0x2000
4-
tfm_otp_nv_counters:
5-
address: 0xfa000
6-
size: 0x2000
7-
EMPTY_tfm_ps:
8-
address: 0xfc000
9-
size: 0x4000
10-
tfm_storage:
11-
address: 0xf8000
12-
span:
13-
- EMPTY_tfm_ps
14-
- tfm_its
15-
- tfm_otp_nv_counters
16-
size: 0x8000
1+
nonsecure_storage:
2+
address: 0xf0000
3+
size: 0x8000
4+
span: [ nvs_storage ]
5+
nvs_storage:
6+
address: 0xf0000
7+
size: 0x8000
8+
tfm_its:
9+
address: 0xf8000
10+
size: 0x2000
11+
tfm_otp_nv_counters:
12+
address: 0xfa000
13+
size: 0x2000
14+
tfm_ps:
15+
address: 0xfc000
16+
size: 0x4000
17+
tfm_storage:
18+
address: 0xf8000
19+
size: 0x8000
20+
span: [ tfm_its, tfm_otp_nv_counters, tfm_ps ]

0 commit comments

Comments
 (0)