Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,17 @@ For example:
go run ./cmd/lvh run --image _data/images/base.qcow2 --kernel _data/kernels/bpf-next/arch/x86_64/boot/bzImage
```

Or, to with the kernel installed in the image:
Or, with the kernel installed in the image, using the image bootloader:
```bash
go run ./cmd/lvh run --image _data/images/base.qcow2
```

Note that if you are using [cilium/little-vm-helper-images](https://github.com/cilium/little-vm-helper-images),
for now, only amd64 images contain a compatible bootloader. So even though
kernels are present in the arm64 images, you'll need to supply it to QEMU
through the `--kernel` option from your host. See the above section "[Download
Kernels](#download-kernels)" on how to download kernels from these images.

OCI images are also supported:
```bash
go run ./cmd/lvh run --image quay.io/lvh-images/root-images:main
Expand Down
Loading