Searched refs:kernel_image_path (Results 1 – 8 of 8) sorted by relevance
/aosp_15_r20/packages/modules/Virtualization/build/microdroid/ |
D | extract_microdroid_kernel_hashes.py | 42 for kernel_image_path in args.kernel: 43 collected_hashes = collect_hashes(avbtool, kernel_image_path) 70 def collect_hashes(avbtool: str, kernel_image_path: str) -> Dict[str, str]: 74 [avbtool, 'print_partition_digests', '--image', kernel_image_path],
|
/aosp_15_r20/tools/acloud/internal/lib/ |
H A D | cvd_utils.py | 307 kernel_image_path = next((path for path in paths if os.path.isfile(path)), 314 return kernel_image_path, initramfs_image_path 343 kernel_image_path = None 349 kernel_image_path, initramfs_image_path = FindKernelImages( 351 if not (kernel_image_path and initramfs_image_path): 362 if kernel_image_path and initramfs_image_path: 367 ssh_obj.ScpPushFile(kernel_image_path, remote_kernel_image_path)
|
H A D | cvd_utils_test.py | 185 kernel_image_path = os.path.join(image_dir, "Image") 186 self.CreateFile(kernel_image_path) 190 mock_avd_spec = mock.Mock(local_kernel_image=kernel_image_path,
|
/aosp_15_r20/tools/acloud/create/ |
H A D | local_image_local_instance.py | 452 kernel_image_path, initramfs_image_path = cvd_utils.FindKernelImages( 454 if kernel_image_path and initramfs_image_path: 455 return None, None, kernel_image_path, initramfs_image_path 515 kernel_image_path, 522 kernel_image_path = None 551 kernel_image=kernel_image_path,
|
H A D | remote_image_local_instance.py | 244 kernel_image_path = None 292 kernel_image_path, 324 kernel_image=kernel_image_path,
|
H A D | goldfish_local_image_local_instance_test.py | 455 kernel_image_path = os.path.join(kernel_subdir, "kernel-ranchu") 457 mock_gf_utils.FindKernelImages.return_value = (kernel_image_path, 486 "-kernel", kernel_image_path,
|
H A D | local_image_local_instance_test.py | 460 kernel_image_path = os.path.join(kernel_image_dir, "Image") 471 self.CreateFile(kernel_image_path) 495 None, None, kernel_image_path, initramfs_image_path,
|
/aosp_15_r20/device/google/cuttlefish/host/commands/assemble_cvd/ |
D | flags.cc | 595 std::string kernel_image_path = ""; in ReadGuestConfig() local 623 kernel_image_path = cur_kernel_path; in ReadGuestConfig() 625 kernel_image_path = cur_boot_image; in ReadGuestConfig() 640 ikconfig_cmd.AddParameter(kernel_image_path); in ReadGuestConfig() 652 "Failed to extract ikconfig from " << kernel_image_path); in ReadGuestConfig()
|