Skip to content

Commit 6fa1ed4

Browse files
committed
samples: zephyr: drivers: mbox: Disable on nrf54lm20pdk
Original sample in the Zephyr repository is now executed on final board name of nrf54lm20dk/nrf54lm20a/cpuapp. Disable execution on obsolete nrf54lm20pdk target. Signed-off-by: Sebastian Głąb <[email protected]>
1 parent 3dee6d3 commit 6fa1ed4

File tree

6 files changed

+2
-64
lines changed

6 files changed

+2
-64
lines changed

samples/zephyr/drivers/mbox/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
1010

1111
set(REMOTE_ZEPHYR_DIR ${CMAKE_CURRENT_BINARY_DIR}/../remote/zephyr)
1212

13-
if(CONFIG_BOARD_NRF54LM20PDK_NRF54LM20A_CPUAPP OR
14-
CONFIG_BOARD_NRF54LV10DK_NRF54LV10A_CPUAPP)
13+
if(CONFIG_BOARD_NRF54LV10DK_NRF54LV10A_CPUAPP)
1514
message(STATUS "${BOARD}${BOARD_QUALIFIERS} compile as Main in this sample")
1615
else()
1716
message(FATAL_ERROR "${BOARD}${BOARD_QUALIFIERS} is not supported for this sample")

samples/zephyr/drivers/mbox/Kconfig.sysbuild

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@ source "share/sysbuild/Kconfig"
88

99
config REMOTE_BOARD
1010
string "Remote board"
11-
default "nrf54lm20pdk/nrf54lm20a/cpuflpr" if $(BOARD) = "nrf54lm20pdk"
1211
default "nrf54lv10dk/nrf54lv10a/cpuflpr" if $(BOARD) = "nrf54lv10dk"

samples/zephyr/drivers/mbox/boards/nrf54lm20pdk_nrf54lm20a_cpuapp.overlay

Lines changed: 0 additions & 20 deletions
This file was deleted.

samples/zephyr/drivers/mbox/remote/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ cmake_minimum_required(VERSION 3.20.0)
99

1010
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
1111

12-
if(CONFIG_BOARD_NRF54LM20PDK_NRF54LM20A_CPUFLPR OR
13-
CONFIG_BOARD_NRF54LV10DK_NRF54LV10A_CPUFLPR)
12+
if(CONFIG_BOARD_NRF54LV10DK_NRF54LV10A_CPUFLPR)
1413
message(STATUS "${BOARD}${BOARD_QUALIFIERS} compile as remote in this sample")
1514
else()
1615
message(FATAL_ERROR "${BOARD}${BOARD_QUALIFIERS} is not supported for this sample")

samples/zephyr/drivers/mbox/remote/boards/nrf54lm20pdk_nrf54lm20a_cpuflpr.overlay

Lines changed: 0 additions & 24 deletions
This file was deleted.

samples/zephyr/drivers/mbox/sample.yaml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,10 @@ common:
99
tests:
1010
nrf.extended.sample.drivers.mbox.nrf54l:
1111
platform_allow:
12-
- nrf54lm20pdk/nrf54lm20a/cpuapp
13-
- [email protected]/nrf54lm20a/cpuapp
14-
- [email protected]/nrf54lm20a/cpuapp
15-
- [email protected]/nrf54lm20a/cpuapp
1612
- nrf54lv10dk/nrf54lv10a/cpuapp
1713
- [email protected]/nrf54lv10a/cpuapp
1814
- [email protected]/nrf54lv10a/cpuapp
1915
integration_platforms:
20-
- nrf54lm20pdk/nrf54lm20a/cpuapp
2116
- nrf54lv10dk/nrf54lv10a/cpuapp
2217
extra_args: mbox_SNIPPET=nordic-flpr
2318
sysbuild: true
@@ -31,15 +26,10 @@ tests:
3126

3227
nrf.extended.sample.drivers.mbox.nrf54l_no_multithreading:
3328
platform_allow:
34-
- nrf54lm20pdk/nrf54lm20a/cpuapp
35-
- [email protected]/nrf54lm20a/cpuapp
36-
- [email protected]/nrf54lm20a/cpuapp
37-
- [email protected]/nrf54lm20a/cpuapp
3829
- nrf54lv10dk/nrf54lv10a/cpuapp
3930
- [email protected]/nrf54lv10a/cpuapp
4031
- [email protected]/nrf54lv10a/cpuapp
4132
integration_platforms:
42-
- nrf54lm20pdk/nrf54lm20a/cpuapp
4333
- nrf54lv10dk/nrf54lv10a/cpuapp
4434
extra_args:
4535
- mbox_SNIPPET=nordic-flpr
@@ -56,15 +46,10 @@ tests:
5646

5747
nrf.extended.sample.drivers.mbox.nrf54l_remote_no_multithreading:
5848
platform_allow:
59-
- nrf54lm20pdk/nrf54lm20a/cpuapp
60-
- [email protected]/nrf54lm20a/cpuapp
61-
- [email protected]/nrf54lm20a/cpuapp
62-
- [email protected]/nrf54lm20a/cpuapp
6349
- nrf54lv10dk/nrf54lv10a/cpuapp
6450
- [email protected]/nrf54lv10a/cpuapp
6551
- [email protected]/nrf54lv10a/cpuapp
6652
integration_platforms:
67-
- nrf54lm20pdk/nrf54lm20a/cpuapp
6853
- nrf54lv10dk/nrf54lv10a/cpuapp
6954
extra_args:
7055
- mbox_SNIPPET=nordic-flpr

0 commit comments

Comments
 (0)