Skip to content

Commit 8785b18

Browse files
JarmouniAcarlescufi
authored andcommitted
samples: subsys: shell: devmem_load: fix incorrect use of OVERLAY_CONFIG
Replace OVERLAY_CONFIG with CONF_FILE since the file in question contains an alternative configuration to the one in prj.conf as clearly stated in the sample doc 'If you use poll you should also use `prj_poll.conf` instead of `prj.conf`.' Signed-off-by: Abderrahmane Jarmouni <[email protected]>
1 parent 3a4dbd4 commit 8785b18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

samples/subsys/shell/devmem_load/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ west flash
2020

2121
Building for boards without UART interrupt support:
2222
```bash
23-
west build -b native_sim -- -DEXTRA_CONF_FILE=prj_poll.conf samples/subsys/shell/devmem_load
23+
west build -b native_sim -- -DCONF_FILE=prj_poll.conf samples/subsys/shell/devmem_load
2424
```
2525
## Running
2626
After connecting to the UART console you should see the following output:

samples/subsys/shell/devmem_load/sample.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ tests:
1010
sample.devmem_load.polled:
1111
integration_platforms:
1212
- native_sim
13-
extra_args: EXTRA_CONF_FILE="prj_poll.conf"
13+
extra_args: CONF_FILE="prj_poll.conf"
1414
sample.devmem_load.uart.interrupt:
1515
integration_platforms:
1616
- frdm_k64f

0 commit comments

Comments
 (0)