Lines Matching refs:rw_only
998 def _clear_fw_version_labels(self, rw_only):
1001 @param rw_only: True to only clear fwrw_version; otherewise, clear
1007 if not rw_only:
1015 def _add_fw_version_label(self, build, rw_only):
1019 @param rw_only: True to only add fwrw_version; otherwise, add both
1025 if not rw_only:
1030 def firmware_install(self, build=None, rw_only=False):
1046 @param rw_only: True to only install firmware to its RW portions. Keep
1084 self._clear_fw_version_labels(rw_only)
1086 logging.info('Will re-program EC %snow', 'RW ' if rw_only else '')
1090 self.servo.program_ec(os.path.join(tmpd.name, ec_image), rw_only)
1093 logging.info('Will re-program BIOS %snow', 'RW ' if rw_only else '')
1097 self.servo.program_bios(os.path.join(tmpd.name, ap_image), rw_only)
1101 self._add_fw_version_label(build, rw_only)