Skip to content

Commit 3b16d71

Browse files
[nxp][platform][mcxw71_k32w1] Relocate key storage default option to example apps args definition files (#36577)
The GN args file for the MCXW71/K32W1 platforms defines a default for the "nxp_nvm_component" option which prevents the users from selecting a different option in the command line. The default value for this build option is already defined by the third_party/nxp/nxp_matter_support/gn_build/nxp_sdk.gni GN arguments file. If one would want to override the default, this has to be done in the scope of the application so that the user can also override the build option from the command line. Signed-off-by: Marian Chereji <marian.chereji@nxp.com>
1 parent 0b819f4 commit 3b16d71

File tree

5 files changed

+8
-1
lines changed

5 files changed

+8
-1
lines changed

examples/contact-sensor-app/nxp/k32w1/args.gni

+2
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,5 @@ chip_openthread_ftd = false
4242
nxp_enable_ot_cli = false
4343

4444
chip_with_diag_logs_demo = true
45+
46+
nxp_nvm_component = "nvs"

examples/contact-sensor-app/nxp/mcxw71/args.gni

+2
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,5 @@ chip_openthread_ftd = false
4040
nxp_enable_ot_cli = false
4141

4242
chip_with_diag_logs_demo = true
43+
44+
nxp_nvm_component = "nvs"

examples/lighting-app/nxp/k32w1/args.gni

+2
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,7 @@ chip_system_config_provide_statistics = false
3535
chip_system_config_use_open_thread_inet_endpoints = true
3636
chip_with_lwip = false
3737

38+
nxp_nvm_component = "nvs"
39+
3840
nxp_use_smu2_static = true
3941
nxp_use_smu2_dynamic = true

examples/lighting-app/nxp/mcxw71/args.gni

+2
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,7 @@ chip_system_config_provide_statistics = false
3535
chip_system_config_use_open_thread_inet_endpoints = true
3636
chip_with_lwip = false
3737

38+
nxp_nvm_component = "nvs"
39+
3840
nxp_use_smu2_static = true
3941
nxp_use_smu2_dynamic = true

src/platform/nxp/mcxw71_k32w1/args.gni

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ openthread_root =
2121
nxp_platform = "mcxw71_k32w1"
2222
nxp_sdk_name = "mcxw71_k32w1_sdk"
2323
nxp_device_layer = "nxp/${nxp_platform}"
24-
nxp_nvm_component = "nvs"
2524
nxp_use_lwip = false
2625

2726
# ARM architecture flags will be set based on NXP board.

0 commit comments

Comments
 (0)