From 36cd38da7339ff1af25343e2c8d4c247aae792f4 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 14 Mar 2025 19:56:06 +0100 Subject: [PATCH] docs: Add debug info (#202) --- readme.md | 39 +++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/readme.md b/readme.md index 7afe1d4..2dd7fe5 100644 --- a/readme.md +++ b/readme.md @@ -80,6 +80,24 @@ kubectl apply -f https://raw.githubusercontent.com/qemus/qemu-arm/refs/heads/mas Enjoy your brand new machine, and don't forget to star this repo! +### What image formats are supported? + + The `BOOT` URL accepts files in any of the following formats: + + | **Extension** | **Format** | + |---|---| + | `.img` | Raw | + | `.raw` | Raw | + | `.iso` | Optical | + | `.qcow2` | QEMU | + | `.vmdk` | VMware | + | `.vhd` | VirtualPC | + | `.vhdx` | Hyper-V | + | `.vdi` | VirtualBox | + +> [!TIP] +> It will also accept `.img.gz`, `.qcow2.xz`, `.iso.zip` and many more, as it automaticly extracts compressed files. + ### How do I change the storage location? To change the storage location, include the following bind mount in your compose file: @@ -302,23 +320,12 @@ kubectl apply -f https://raw.githubusercontent.com/qemus/qemu-arm/refs/heads/mas ARGUMENTS: "-device usb-tablet" ``` -### What image formats are supported? + If you want to see the full command-line arguments used, you can set: - The `BOOT` URL accepts files in any of the following formats: - - | **Extension** | **Format** | - |---|---| - | `.img` | Raw | - | `.raw` | Raw | - | `.iso` | Optical | - | `.qcow2` | QEMU | - | `.vmdk` | VMware | - | `.vhd` | VirtualPC | - | `.vhdx` | Hyper-V | - | `.vdi` | VirtualBox | - -> [!TIP] -> It will also accept `.img.gz`, `.qcow2.xz`, `.iso.zip` and many more, as it automaticly extracts compressed files. + ```yaml + environment: + DEBUG: "Y" + ``` ## Stars 🌟 [![Stars](https://starchart.cc/qemus/qemu-arm.svg?variant=adaptive)](https://starchart.cc/qemus/qemu-arm)