Searched refs:boot_image_path (Results 1 – 9 of 9) sorted by relevance
/tools/acloud/internal/lib/ |
D | cvd_utils.py | 164 boot_image_path = create_common.FindLocalImage( 166 if boot_image_path and not _IsBootImage(boot_image_path): 174 return boot_image_path, vendor_boot_image_path 216 boot_image_path, vendor_boot_image_path = FindBootImages(search_path) 217 if boot_image_path: 218 ssh_obj.ScpPushFile(boot_image_path, _REMOTE_BOOT_IMAGE_PATH)
|
D | goldfish_utils.py | 63 def _UnpackBootImage(output_dir, boot_image_path, ota): argument 77 ota.UnpackBootImg(output_dir, boot_image_path) 82 raise errors.GetLocalImageError("No kernel in %s." % boot_image_path) 84 raise errors.GetLocalImageError("No ramdisk in %s." % boot_image_path) 108 def MixWithBootImage(output_dir, image_dir, boot_image_path, ota): argument 129 unpack_dir, boot_image_path, ota)
|
D | goldfish_utils_test.py | 49 boot_image_path = os.path.join(self._temp_dir, "boot.img") 51 self._CreateEmptyFile(boot_image_path) 60 self.assertEqual(boot_image_path, boot_img) 69 mix_dir, image_dir, boot_image_path, mock_ota) 71 mock_ota.UnpackBootImg.assert_called_with(unpack_dir, boot_image_path)
|
D | cvd_utils_test.py | 88 boot_image_path = os.path.join(image_dir, "boot.img") 89 self._CreateFile(boot_image_path, b"ANDROID!test") 92 mock_avd_spec = mock.Mock(local_kernel_image=boot_image_path)
|
/tools/acloud/create/ |
D | local_image_local_instance_test.py | 300 boot_image_path = "/mock/boot.img" 302 mock_cvd_utils.FindBootImages.return_value = (boot_image_path, 338 system_image_path, boot_image_path, 347 boot_image_path = "/mock/boot.img" 348 mock_cvd_utils.FindBootImages.return_value = (boot_image_path, None) 365 local_kernel_image=boot_image_path, 377 mock_cvd_utils.FindBootImages.assert_called_with(boot_image_path) 381 boot_image_path, None))
|
D | goldfish_local_image_local_instance.py | 409 boot_image_path = create_common.FindLocalImage( 411 logger.info("Found boot image: %s", boot_image_path) 413 boot_image_path = None 415 if boot_image_path: 419 boot_image_path, ota_tools.FindOtaTools(tool_dirs))
|
D | goldfish_local_image_local_instance_test.py | 402 boot_image_path = os.path.join(self._temp_dir, "kernel_images", 404 self._CreateEmptyFile(boot_image_path) 410 local_kernel_image=os.path.dirname(boot_image_path), 422 mock.ANY, os.path.join(image_subdir), boot_image_path,
|
D | local_image_local_instance.py | 430 boot_image_path, vendor_boot_image_path = cvd_utils.FindBootImages( 433 boot_image_path = None 441 boot_image=boot_image_path,
|
/tools/acloud/public/actions/ |
D | remote_host_gf_device_factory.py | 306 boot_image_path = self._RetrieveBootImage(download_dir, build_api) 312 if system_image_zip_path or boot_image_path else None) 316 boot_image_path) 528 def _MixAndUploadKernelImages(self, image_dir, boot_image_path, ota): argument 541 temp_dir, image_dir, boot_image_path, ota)
|