firmware_LockedME.py | 20 def flashrom(self, ignore_status=False, args=()): member in class:firmware_LockedME 21 """Run flashrom, expect it to work. Fail if it doesn't""" 23 return utils.run('flashrom', ignore_status=ignore_status, args=extra) 33 r = self.flashrom(args=('-V',)) 42 r = self.flashrom(args=('-w', self.BIOS_FILE, 48 self.flashrom(args=('-w', self.BIOS_FILE, 86 self.flashrom(args=('-r', self.BIOS_FILE)) 89 # flashrom should have read the SI_ME section as all 0xff's. If not, 95 raise error.TestFail("SI_ME was readable by flashrom") 98 # flashrom tells us about the ME-related registers, we'll just try t [all...] |