From b02df13af9f1da33eb70d38bbf4f54dcef004846 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Wed, 4 Aug 2021 22:46:42 +0200 Subject: [PATCH] doc: Stop advertizing QCOW usage at some places in doc Replacing QCOW mentions with other viable options. There is still docs/custom-image.md which talks about creating QCOW, however it might be more convenient to be touched when the actual changes are indeed there. Related to #1985. Signed-off-by: Anatol Belski --- docs/fuzzing.md | 6 +++--- docs/windows.md | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/fuzzing.md b/docs/fuzzing.md index 0236175f1..d6dd9685b 100644 --- a/docs/fuzzing.md +++ b/docs/fuzzing.md @@ -20,10 +20,10 @@ cargo install cargo-fuzz ## Running the fuzzers -e.g. To run the `qcow` fuzzer using all available CPUs: +e.g. To run the `block` fuzzer using all available CPUs: ``` -cargo fuzz run qcow -j `nproc` +cargo fuzz run block -j `nproc` ``` ## Adding a new fuzzer @@ -32,4 +32,4 @@ cargo fuzz run qcow -j `nproc` cargo fuzz add ``` -Inspiration for fuzzers can be found in [crosvm](https://chromium.googlesource.com/chromiumos/platform/crosvm/+/refs/heads/master/fuzz/) \ No newline at end of file +Inspiration for fuzzers can be found in [crosvm](https://chromium.googlesource.com/chromiumos/platform/crosvm/+/refs/heads/master/fuzz/) diff --git a/docs/windows.md b/docs/windows.md index c9b0861c9..8f5bb20a7 100644 --- a/docs/windows.md +++ b/docs/windows.md @@ -30,15 +30,15 @@ This step currently requires QEMU to install Windows onto the guest. QEMU is onl Preparing several command parts as these will be used in the follow up sections as well. ```shell -IMG_FILE=windows-disk.qcow +IMG_FILE=windows-disk.raw WIN_ISO_FILE=en_windows_server_version_2004_updated_may_2020_x64_dvd_1e7f1cfa.iso VIRTIO_ISO_FILE=virtio-win-0.1.185.iso OVMF_DIR=./FV ``` -Create an empty image file, `qcow` or `raw` is supported. +Create an empty image file, `raw` is supported. ```shell -qemu-img create -f qcow2 $IMG_FILE 30G +qemu-img create -f raw $IMG_FILE 30G ``` Begin the Windows installation process under QEMU @@ -221,7 +221,7 @@ qemu-system-x86_64 \ -m 4G \ -cdrom ./$WIN_ISO_FILE \ -drive file=./$VIRTIO_ISO_FILE,index=0,media=cdrom - -drive if=none,id=root,file=./windbg-disk.qcow \ + -drive if=none,id=root,file=./windbg-disk.raw \ -device virtio-blk-pci,drive=root,disable-legacy=on \ -device virtio-net-pci,netdev=mynet0,disable-legacy=on \ -netdev user,id=mynet0,net=192.168.178.0/24,host=192.168.178.1,dhcpstart=192.168.178.64,hostname=windbg-host \ @@ -280,7 +280,7 @@ qemu-system-x86_64 \ -cpu host \ -smp 1 \ -m 4G \ - -drive if=none,id=root,file=./windbg-disk.qcow \ + -drive if=none,id=root,file=./windbg-disk.raw \ -device virtio-blk-pci,drive=root,disable-legacy=on \ -serial tcp::4445,server,nowait \ -device virtio-net-pci,netdev=mynet0,disable-legacy=on \