| /qemu/tests/functional/ |
| A D | test_linux_initrd.py | 49 with tempfile.NamedTemporaryFile() as initrd: 50 initrd.seek(max_size) 51 initrd.write(b'\0') 52 initrd.flush() 53 self.vm.add_args('-kernel', kernel_path, '-initrd', initrd.name, 73 with tempfile.NamedTemporaryFile() as initrd: 74 initrd.seek(max_size) 75 initrd.write(b'\0') 76 initrd.flush() 82 '-initrd', initrd.name,
|
| A D | test_arm_collie.py | 27 initrd=rootfs_path,
|
| A D | test_sh4eb_r2d.py | 27 initrd=os.path.join(self.workdir, 'sh4eb/initramfs.cpio.gz'),
|
| A D | test_arm_sx1.py | 46 initrd=initrd_path)
|
| /qemu/hw/core/ |
| A D | guest-loader.c | 71 } else if (s->initrd) { in loader_insert_platform_data() 85 char *file = s->kernel ? s->kernel : s->initrd; in guest_loader_realize() 89 if (s->kernel && s->initrd) { in guest_loader_realize() 92 } else if (!s->kernel && !s->initrd) { in guest_loader_realize() 118 DEFINE_PROP_STRING("initrd", GuestLoaderState, initrd),
|
| A D | guest-loader.h | 28 char *initrd; member
|
| /qemu/tests/multiboot/ |
| A D | run_test.sh | 64 run_qemu modules.elf -initrd module.txt 65 run_qemu modules.elf -initrd "module.txt argument" 66 run_qemu modules.elf -initrd "module.txt argument,,with,,commas" 67 run_qemu modules.elf -initrd "module.txt,module.txt argument,module.txt"
|
| A D | modules.out | 9 === Running test case: modules.elf -initrd module.txt === 16 === Running test case: modules.elf -initrd module.txt argument === 23 === Running test case: modules.elf -initrd module.txt argument,,with,,commas === 30 === Running test case: modules.elf -initrd module.txt,module.txt argument,module.txt ===
|
| /qemu/tests/migration/ |
| A D | meson.build | 14 'initrd-stress.img', 15 output: 'initrd-stress.img', 17 command: [find_program('initrd-stress.sh'), '@OUTPUT@', '@INPUT@']
|
| /qemu/tests/functional/qemu_test/ |
| A D | linuxkernel.py | 20 def launch_kernel(self, kernel, initrd=None, dtb=None, console_index=0, argument 24 if initrd: 25 self.vm.add_args('-initrd', initrd)
|
| /qemu/docs/system/loongarch/ |
| A D | virt.rst | 35 initrd, and linux kernel. And those source codes and binary files 89 (5) Get initrd: 91 You can use busybox tool and the linux modules to make a initrd file. Or you can access the 98 Note: the initrd file is ramdisk 105 -smp 1 -bios QEMU_EFI.fd -kernel vmlinuz.efi -initrd ramdisk \
|
| /qemu/docs/system/ |
| A D | guest-loader.rst | 25 -device guest-loader,addr=0x47000000,initrd=rootfs.cpio 42 -device guest-loader,addr=<addr>[,kernel=<file>,[bootargs=<args>]][,initrd=<file>] 47 ``kernel|initrd=<file>`` 48 Indicates the filename of the kernel or initrd blob. Both blobs will
|
| A D | linuxboot.rst | 17 give the kernel command line arguments. The ``-initrd`` option can be
|
| /qemu/pc-bios/vof/ |
| A D | bootmem.c | 3 void boot_from_memory(uint64_t initrd, uint64_t initrdsize) in boot_from_memory() argument 13 do_boot(kern[0], initrd, initrdsize); in boot_from_memory()
|
| A D | main.c | 17 uint64_t initrd = r3, initrdsize = r4; in entry_c() local 19 boot_from_memory(initrd, initrdsize); in entry_c()
|
| A D | vof.h | 36 void boot_from_memory(uint64_t initrd, uint64_t initrdsize);
|
| /qemu/tests/migration/guestperf/ |
| A D | report.py | 39 initrd, argument 52 self._initrd = initrd
|
| /qemu/docs/system/openrisc/ |
| A D | or1k-sim.rst | 17 The Or1ksim machine can be started using the ``-kernel`` and ``-initrd`` options 24 -initrd initramfs.cpio.gz \
|
| A D | virt.rst | 24 The virt machine can be started using the ``-kernel`` and ``-initrd`` options 33 -initrd initramfs.cpio.gz \
|
| /qemu/docs/system/i386/ |
| A D | xen.rst | 116 PV Grub image) as the ``-initrd`` image, which actually just means the first 123 -display none -m 1G -kernel xen -initrd bzImage \\ 135 :ref:`documentation <system/invocation-qemu-options-initrd>` for the 136 ``-initrd`` option.
|
| /qemu/docs/system/s390x/ |
| A D | protvirt.rst | 63 components (kernel, initrd, cmdline), the stage3a loader and 65 options -initrd and -cmdline are ineffective. The preparation of a PVM
|
| /qemu/hw/s390x/ |
| A D | ipl.c | 249 if (ipl->initrd) { in s390_ipl_realize() 258 initrd_size = load_image_targphys(ipl->initrd, initrd_offset, in s390_ipl_realize() 261 error_setg(errp, "could not load initrd '%s'", ipl->initrd); in s390_ipl_realize() 296 DEFINE_PROP_STRING("initrd", S390IPLState, initrd),
|
| A D | ipl.h | 77 char *initrd; member
|
| /qemu/docs/system/arm/ |
| A D | xlnx-zynq.rst | 39 -initrd rootfs.cpio.gz -kernel zImage
|
| /qemu/pc-bios/s390-ccw/ |
| A D | netmain.c | 304 if (entry->initrd) { in load_kernel_with_initrd() 307 strncpy(fn_ip->filename, entry->initrd, sizeof(fn_ip->filename)); in load_kernel_with_initrd()
|