Lines Matching full:options
174 self.options = env.options
178 if self.options.generate_hardware_map:
179 self.scan(persistent=self.options.persistent_hardware_map)
180 self.save(self.options.generate_hardware_map)
183 if not self.options.device_testing and self.options.hardware_map:
184 self.load(self.options.hardware_map)
189 if self.options.device_testing:
190 if self.options.hardware_map:
191 self.load(self.options.hardware_map)
192 if not self.options.platform:
193 self.options.platform = []
196 self.options.platform.append(d.platform)
198 elif self.options.device_serial:
199 self.add_device(self.options.device_serial,
200 self.options.platform[0],
201 self.options.pre_script,
203 baud=self.options.device_serial_baud,
204 flash_timeout=self.options.device_flash_timeout,
205 flash_with_test=self.options.device_flash_with_test,
206 flash_before=self.options.flash_before,
209 elif self.options.device_serial_pty:
210 self.add_device(self.options.device_serial_pty,
211 self.options.platform[0],
212 self.options.pre_script,
214 flash_timeout=self.options.device_flash_timeout,
215 flash_with_test=self.options.device_flash_with_test,
220 if self.options.fixture:
222 d.fixtures.extend(self.options.fixture)
272 flash_timeout = dut.get('flash_timeout') or self.options.device_flash_timeout
275 flash_with_test = self.options.device_flash_with_test
279 flash_before = self.options.flash_before and (not (flash_with_test or serial_pty))