Lines Matching +full:partition +full:- +full:erase
3 # SPDX-License-Identifier: Apache-2.0
13 '''Runner front-end for ezFlashCLI'''
15 def __init__(self, cfg, tool, dev_id=None, tool_opt=None, erase=False, reset=True): argument
21 self.erase = bool(erase)
35 return RunnerCaps(commands={'flash'}, dev_id=True, tool_opt=True, erase=True, reset=True)
38 def dev_id_help(cls) -> str:
39 return '''Device identifier. Use it to select the J-Link Serial Number
43 def tool_opt_help(cls) -> str:
44 return "Additional options for ezFlashCLI e.g. '--verbose'"
48 parser.add_argument('--tool', default=DEFAULT_EZFLASHCLI,
56 tool_opt=args.tool_opt, erase=args.erase)
59 # Applications linked to code partition are meant to be run by MCUboot
71 device_args = ['-j', f'{self.dev_id}']
77 if self.erase: