summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-10 17:55:05 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-10 17:55:05 +0000
commitf6e04aac8a5c0dec9b9a5a338813733293f8815b (patch)
tree5482644e62e2ea573f670bce7a0f2733c0ead3fc
parent36826d0e8f2dc5df2c17cf90e0bbe65f659149be (diff)
downloadVirtualBox-svn-f6e04aac8a5c0dec9b9a5a338813733293f8815b.tar.gz
Devices/DevQemuFwCfg: Some doxgen fixes
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@99738 cfe28804-0f27-0410-a406-dd0f0b0b656f
-rw-r--r--src/VBox/Devices/PC/DevQemuFwCfg.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/VBox/Devices/PC/DevQemuFwCfg.cpp b/src/VBox/Devices/PC/DevQemuFwCfg.cpp
index c2d3297f55a..b2254d33e85 100644
--- a/src/VBox/Devices/PC/DevQemuFwCfg.cpp
+++ b/src/VBox/Devices/PC/DevQemuFwCfg.cpp
@@ -40,9 +40,9 @@
* To use this interface for a particular VM the following extra data needs to be
* set besides enabling the EFI firmware:
*
- * VBoxManage setextradata <VM name> "VBoxInternal/Devices/qemu-fw-cfg/0/Config/KernelImage" /path/to/kernel
- * VBoxManage setextradata <VM name> "VBoxInternal/Devices/qemu-fw-cfg/0/Config/InitrdImage" /path/to/initrd
- * VBoxManage setextradata <VM name> "VBoxInternal/Devices/qemu-fw-cfg/0/Config/CmdLine" "<cmd line string>"
+ * VBoxManage setextradata &lt;VM name&gt; "VBoxInternal/Devices/qemu-fw-cfg/0/Config/KernelImage" /path/to/kernel
+ * VBoxManage setextradata &lt;VM name&gt; "VBoxInternal/Devices/qemu-fw-cfg/0/Config/InitrdImage" /path/to/initrd
+ * VBoxManage setextradata &lt;VM name&gt; "VBoxInternal/Devices/qemu-fw-cfg/0/Config/CmdLine" "&lt;cmd line string&gt;"
*
* The only mandatory item is the KernelImage one, the others are optional if the
* kernel is configured to not require it. The InitrdImage item accepts a path to a directory as well.
@@ -50,14 +50,14 @@
* If the kernel is not an EFI compatible executable (CONFIG_EFI_STUB=y for Linux) a dedicated setup image might be required
* which can be set with:
*
- * VBoxManage setextradata <VM name> "VBoxInternal/Devices/qemu-fw-cfg/0/Config/SetupImage" /path/to/setup_image
+ * VBoxManage setextradata &lt;VM name&gt; "VBoxInternal/Devices/qemu-fw-cfg/0/Config/SetupImage" /path/to/setup_image
*
* @section sec_qemufwcfg_dma DMA
*
* The QEMU firmware configuration device supports an optional DMA interface to speed up transferring the data into the guest.
* It currently is not enabled by default but needs to be enabled with:
*
- * VBoxManage setextradata <VM name> "VBoxInternal/Devices/qemu-fw-cfg/0/Config/DmaEnabled" 1
+ * VBoxManage setextradata &lt;VM name&gt; "VBoxInternal/Devices/qemu-fw-cfg/0/Config/DmaEnabled" 1
*/