From: Denis Mukhin <[email protected]> Switch to x86-64 QEMU machine for NVMe testing in the docs. Also, add `format=raw` for empty NVMe disks QEMU command line.
Signed-off-by: Denis Mukhin <[email protected]> --- Changes since v1: - n/a --- doc/develop/driver-model/nvme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/develop/driver-model/nvme.rst b/doc/develop/driver-model/nvme.rst index 755181331213..0e0624925e0d 100644 --- a/doc/develop/driver-model/nvme.rst +++ b/doc/develop/driver-model/nvme.rst @@ -95,4 +95,4 @@ Example command line to call QEMU x86 below with emulated NVMe device: .. code-block:: bash - $ ./qemu-system-i386 -drive file=nvme.img,if=none,id=drv0 -device nvme,drive=drv0,serial=QEMUNVME0001 -bios u-boot.rom + $ qemu-system-x86_64 -nographic -drive file=nvme.img,format=raw,if=none,id=drv0 -device nvme,drive=drv0,serial=QEMUNVME0001 -bios u-boot.rom -- 2.54.0

