mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 05:35:20 +00:00
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 <anbelski@linux.microsoft.com>
This commit is contained in:
parent
b2cc45e0a3
commit
b02df13af9
@ -20,10 +20,10 @@ cargo install cargo-fuzz
|
|||||||
|
|
||||||
## Running the fuzzers
|
## 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
|
## Adding a new fuzzer
|
||||||
@ -32,4 +32,4 @@ cargo fuzz run qcow -j `nproc`
|
|||||||
cargo fuzz add <new_fuzzer>
|
cargo fuzz add <new_fuzzer>
|
||||||
```
|
```
|
||||||
|
|
||||||
Inspiration for fuzzers can be found in [crosvm](https://chromium.googlesource.com/chromiumos/platform/crosvm/+/refs/heads/master/fuzz/)
|
Inspiration for fuzzers can be found in [crosvm](https://chromium.googlesource.com/chromiumos/platform/crosvm/+/refs/heads/master/fuzz/)
|
||||||
|
@ -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.
|
Preparing several command parts as these will be used in the follow up sections as well.
|
||||||
|
|
||||||
```shell
|
```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
|
WIN_ISO_FILE=en_windows_server_version_2004_updated_may_2020_x64_dvd_1e7f1cfa.iso
|
||||||
VIRTIO_ISO_FILE=virtio-win-0.1.185.iso
|
VIRTIO_ISO_FILE=virtio-win-0.1.185.iso
|
||||||
OVMF_DIR=./FV
|
OVMF_DIR=./FV
|
||||||
```
|
```
|
||||||
|
|
||||||
Create an empty image file, `qcow` or `raw` is supported.
|
Create an empty image file, `raw` is supported.
|
||||||
```shell
|
```shell
|
||||||
qemu-img create -f qcow2 $IMG_FILE 30G
|
qemu-img create -f raw $IMG_FILE 30G
|
||||||
```
|
```
|
||||||
|
|
||||||
Begin the Windows installation process under QEMU
|
Begin the Windows installation process under QEMU
|
||||||
@ -221,7 +221,7 @@ qemu-system-x86_64 \
|
|||||||
-m 4G \
|
-m 4G \
|
||||||
-cdrom ./$WIN_ISO_FILE \
|
-cdrom ./$WIN_ISO_FILE \
|
||||||
-drive file=./$VIRTIO_ISO_FILE,index=0,media=cdrom
|
-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-blk-pci,drive=root,disable-legacy=on \
|
||||||
-device virtio-net-pci,netdev=mynet0,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 \
|
-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 \
|
-cpu host \
|
||||||
-smp 1 \
|
-smp 1 \
|
||||||
-m 4G \
|
-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 \
|
-device virtio-blk-pci,drive=root,disable-legacy=on \
|
||||||
-serial tcp::4445,server,nowait \
|
-serial tcp::4445,server,nowait \
|
||||||
-device virtio-net-pci,netdev=mynet0,disable-legacy=on \
|
-device virtio-net-pci,netdev=mynet0,disable-legacy=on \
|
||||||
|
Loading…
Reference in New Issue
Block a user