/openbmc/qemu/tests/avocado/ |
H A D | boot_linux_console.py | 136 initrd_path = self.fetch_asset(initrd_url, asset_hash=initrd_hash) 142 '-initrd', initrd_path) 227 initrd_path = os.path.join(self.workdir, 'rootfs.cpio') 228 archive.gzip_uncompress(initrd_path_gz, initrd_path) 239 '-initrd', initrd_path, 266 initrd_path = os.path.join(self.workdir, 'rootfs.cpio') 267 archive.gzip_uncompress(initrd_path_gz, initrd_path) 276 '-initrd', initrd_path, 447 initrd_path = self.fetch_asset(initrd_url, asset_hash=initrd_hash) 464 '-initrd', initrd_path,
|
H A D | replay_kernel.py | 245 initrd_path = os.path.join(self.workdir, 'rootfs.cpio') 246 archive.gzip_uncompress(initrd_path_gz, initrd_path) 255 '-initrd', initrd_path, 485 initrd_path = self.workdir + "rootfs.cpio" 486 archive.gzip_uncompress(initrd_path_gz, initrd_path) 493 args=('-initrd', initrd_path)) 515 initrd_path = self.workdir + "rootfs.cpio" 516 archive.gzip_uncompress(initrd_path_gz, initrd_path) 523 args=('-initrd', initrd_path))
|
H A D | smmu.py | 30 initrd_path = None variable in SMMU 62 self.initrd_path = self.fetch_asset(initrd_url) 68 '-initrd', self.initrd_path)
|
H A D | intel_iommu.py | 29 initrd_path = None variable in IntelIOMMU 62 self.initrd_path = self.fetch_asset(initrd_url, asset_hash=initrd_hash) 68 '-initrd', self.initrd_path)
|
/openbmc/qemu/tests/functional/ |
H A D | test_s390x_ccw_virtio.py | 70 initrd_path = self.ASSET_BUSTER_INITRD.fetch() 77 '-initrd', initrd_path, 178 initrd_path = os.path.join(self.workdir, 'initrd-raw.img') 179 lzma_uncompress(initrd_path_xz, initrd_path) 190 '-initrd', initrd_path,
|
H A D | test_mips_malta.py | 55 initrd_path = os.path.join(self.workdir, 'rootfs.cpio') 56 gzip_uncompress(initrd_path_gz, initrd_path) 64 '-initrd', initrd_path,
|
H A D | test_virtio_gpu.py | 59 initrd_path = self.ASSET_INITRD.fetch() 71 initrd_path, 95 initrd_path = self.ASSET_INITRD.fetch() 132 initrd_path,
|
H A D | test_aarch64_raspi4.py | 67 initrd_path = os.path.join(self.workdir, 'rootfs.cpio') 68 gzip_uncompress(initrd_path_gz, initrd_path) 79 '-initrd', initrd_path,
|
H A D | test_arm_raspi2.py | 68 initrd_path = os.path.join(self.workdir, 'rootfs.cpio') 69 gzip_uncompress(initrd_path_gz, initrd_path) 79 '-initrd', initrd_path,
|
H A D | test_arm_bpim2u.py | 70 initrd_path = os.path.join(self.workdir, 'rootfs.cpio') 71 gzip_uncompress(initrd_path_gz, initrd_path) 79 '-initrd', initrd_path, 95 os.remove(initrd_path)
|
H A D | test_arm_orangepi.py | 80 initrd_path = os.path.join(self.workdir, 'rootfs.cpio') 81 gzip_uncompress(initrd_path_gz, initrd_path) 89 '-initrd', initrd_path, 105 os.remove(initrd_path)
|
H A D | test_loongarch64_virt.py | 42 initrd_path = self.ASSET_INITRD.fetch() 53 '-initrd', initrd_path,
|
H A D | test_mips64el_malta.py | 83 initrd_path = os.path.join(self.workdir, 'rootfs.cpio') 84 gzip_uncompress(initrd_path_gz, initrd_path) 93 '-initrd', initrd_path,
|
H A D | test_arm_sx1.py | 42 initrd_path = self.ASSET_INITRD.fetch() 46 initrd=initrd_path)
|
H A D | test_multiprocess.py | 52 initrd_path = initrd_asset.fetch() 73 '-initrd', initrd_path,
|
H A D | test_arm_integratorcp.py | 57 initrd_path = self.ASSET_INITRD.fetch() 62 '-initrd', initrd_path,
|
H A D | test_s390x_topology.py | 93 initrd_path = os.path.join(self.workdir, 'initrd-raw.img') 94 lzma_uncompress(initrd_path_xz, initrd_path) 103 '-initrd', initrd_path,
|
/openbmc/qemu/hw/core/ |
H A D | eif.c | 429 char **kernel_path, char **initrd_path, char **cmdline, in read_eif_file() argument 451 *kernel_path = *initrd_path = *cmdline = NULL; in read_eif_file() 581 if (!get_tmp_file("eif-initrd-XXXXXX", initrd_path, errp)) { in read_eif_file() 584 initrd_path_f = fopen(*initrd_path, "wb"); in read_eif_file() 587 *initrd_path); in read_eif_file() 749 safe_unlink(*initrd_path); in read_eif_file() 750 g_free(*initrd_path); in read_eif_file() 751 *initrd_path = NULL; in read_eif_file()
|
H A D | eif.h | 15 char **kernel_path, char **initrd_path,
|