Lines Matching refs:image_path
754 image_path = archive.extract(image_path_gz, self.workdir)
755 image_pow2ceil_expand(image_path)
758 self.vm.add_args('-drive', 'file=' + image_path + ',if=sd,format=raw',
801 image_path = os.path.join(self.workdir, image_name)
802 archive.gzip_uncompress(image_path_gz, image_path)
805 drive_args = 'file=' + image_path + ',if=mtd,bus=0,unit=0'
1018 image_path = archive.extract(image_path_gz, self.workdir)
1019 image_pow2ceil_expand(image_path)
1022 self.vm.add_args('-drive', 'file=' + image_path + ',if=sd,format=raw',
1190 image_path = archive.extract(image_path_xz, self.workdir)
1191 image_pow2ceil_expand(image_path)
1194 self.vm.add_args('-drive', 'file=' + image_path + ',if=sd,format=raw',
1242 image_path = os.path.join(self.workdir, 'armv7.img')
1243 archive.gzip_uncompress(image_path_gz, image_path)
1244 image_pow2ceil_expand(image_path)
1245 image_drive_args = 'if=sd,format=raw,snapshot=on,file=' + image_path
1249 with open(image_path, 'r+b') as f_out: