Lines Matching refs:command
136 command = [self.path, 'flashall']
138 command.extend(['--slot', slot])
140 command.append("--skip-secondary")
142 command.append('-w')
143 func(command, stderr=subprocess.STDOUT)
155 command = [self.path, 'flash', partition]
157 command.append(img)
159 command.extend(['--slot', slot])
161 command.append("--skip-secondary")
162 func(command, stderr=subprocess.STDOUT)
170 command = [self.path, 'reboot']
172 command.append('bootloader')
173 _subprocess_check_output(command, stderr=subprocess.STDOUT)
180 command = [self.path, 'set_active', slot]
181 _subprocess_check_output(command, stderr=subprocess.STDOUT)