Lines Matching refs:info
20 def FullOTA_InstallEnd(info): argument
22 bootloader_bin = info.input_zip.read("RADIO/bootloader.raw")
26 WriteBootloader(info, bootloader_bin)
29 def IncrementalOTA_InstallEnd(info): argument
31 target_bootloader_bin = info.target_zip.read("RADIO/bootloader.raw")
33 source_bootloader_bin = info.source_zip.read("RADIO/bootloader.raw")
40 WriteBootloader(info, target_bootloader_bin)
45 def WriteBootloader(info, bootloader_bin): argument
46 common.ZipWriteStr(info.output_zip, "bootloader.raw", bootloader_bin)
47 fstab = info.info_dict["fstab"]
49 info.script.Print("Writing bootloader...")
51 info.script.AppendExtra('''package_extract_file("bootloader.raw", "%s");''' %