Lines Matching +full:re +full:- +full:sending
1 # Copyright (c) 2022-2024 Intel Corporation
3 # SPDX-License-Identifier: Apache-2.0
11 import re
22 'User-friendly feedback when trying to sign with west flash'
25 '"west sign" is now called from CMake, see "west sign -h"')
28 '''Runner front-end for the intel ADSP boards.'''
57 parser.add_argument('--remote-host',
59 parser.add_argument('--pty', nargs='?', const="remote-host", type=str,
60 help=''''Capture the output of cavstool.py running on --remote-host \
63 for old_sign_param in [ '--rimage-tool', '--config-dir', '--default-key', '--key']:
66 see "west sign -h"''')
69 def tool_opt_help(cls) -> str:
71 e.g. '--lock' """
84 if re.search("adsp", self.platform):
92 'Generate a hash string for appending to the sending ri file'
100 self.run_cmd = ([f'{self.cavstool}','-s', f'{self.remote_host}', f'{send_bin_fw}'])
113 # cavstool_client.py -s {host}:{port} -l
117 if self.pty == 'remote-host':
118 self.log_cmd = ([f'{self.cavstool}','-s', f'{self.remote_host}', '-l'])
120 self.log_cmd = ([f'{self.cavstool}','-s', f'{self.pty}', '-l'])