Skip to content

Commit 1cb9688

Browse files
michalek-norlubos
authored andcommitted
scripts: west_commands: 54lm20 key upload
adds nrf54lm20 support to west ncs-provision. Signed-off-by: Mateusz Michalek <[email protected]>
1 parent 7f04400 commit 1cb9688

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/west_commands/ncs_provision.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def do_add_parser(self, parser_adder):
166166
"--soc",
167167
type=str,
168168
help="SoC",
169-
choices=["nrf54l05", "nrf54l10", "nrf54l15"],
169+
choices=["nrf54l05", "nrf54l10", "nrf54l15", "nrf54lm20a"],
170170
required=True,
171171
)
172172
upload_parser.add_argument("--dev-id", help="Device serial number")
@@ -187,7 +187,7 @@ def do_add_parser(self, parser_adder):
187187

188188
def do_run(self, args, unknown_args):
189189
if args.command == "upload":
190-
if args.soc in ["nrf54l05", "nrf54l10", "nrf54l15"]:
190+
if args.soc in ["nrf54l05", "nrf54l10", "nrf54l15", "nrf54lm20a"]:
191191
self._upload_keys(args)
192192

193193
def _upload_keys(self, args: argparse.Namespace) -> None:

0 commit comments

Comments
 (0)