Lines Matching refs:info
20 def FullOTA_InstallEnd(info):
22 bootloader_bin = info.input_zip.read("RADIO/bootloader.raw")
26 WriteBootloader(info, bootloader_bin)
28 def IncrementalOTA_InstallBegin(info):
29 info.script.Unmount("/system")
30 info.script.TunePartition("/system", "-O", "^has_journal")
31 info.script.Mount("/system")
33 def IncrementalOTA_InstallEnd(info):
35 target_bootloader_bin = info.target_zip.read("RADIO/bootloader.raw")
37 source_bootloader_bin = info.source_zip.read("RADIO/bootloader.raw")
44 WriteBootloader(info, target_bootloader_bin)
49 def WriteBootloader(info, bootloader_bin):
50 common.ZipWriteStr(info.output_zip, "bootloader.raw", bootloader_bin)
51 fstab = info.info_dict["fstab"]
53 info.script.Print("Writing bootloader...")
55 info.script.AppendExtra('''package_extract_file("bootloader.raw", "%s");''' %