Lines Matching refs:self
22 def __init__(self, log, config): argument
37 super(ConsoleExecAttach, self).__init__(log, config, max_fifo_fill=16)
39 with self.log.section('flash'):
40 self.log.action('Flashing U-Boot')
42 runner = self.log.get_runner(cmd[0], sys.stdout)
45 self.log.status_pass('OK')
47 def get_spawn(self): argument
59 args = [self.config.board_type, self.config.board_identity]
62 if self.config.use_running_system:
63 self.log.action('Connecting to board without reset')
66 self.log.action('Resetting board')
68 runner = self.log.get_runner(cmd[0], sys.stdout)
77 def close(self): argument
80 self.log.action('Releasing board')
81 args = [self.config.board_type, self.config.board_identity]
83 runner = self.log.get_runner(cmd[0], sys.stdout)