mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-28 19:54:01 +00:00
While we hoped to make the headings consistent over time while doing other edits, we should instead just make the squirrels happy and do them all at once or they'll likely never be made consistent. A python script was used to find the headings, and then a call to https://pypi.org/project/titlecase to transform the title. A visual inspection was used to tweak a few unexpected resulting titles. Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
35 lines
1.8 KiB
ReStructuredText
35 lines
1.8 KiB
ReStructuredText
.. _hv-parameters:
|
|
|
|
ACRN Hypervisor Parameters
|
|
##########################
|
|
|
|
Generic Hypervisor Parameters
|
|
*****************************
|
|
|
|
The ACRN hypervisor supports the following parameter:
|
|
|
|
+-----------------+-----------------------------+----------------------------------------------------------------------------------------+
|
|
| Parameter | Value | Description |
|
|
+=================+=============================+========================================================================================+
|
|
| | disabled | This disables the serial port completely. |
|
|
| +-----------------------------+----------------------------------------------------------------------------------------+
|
|
| ``uart=`` | bdf@<BDF value> | This sets the PCI serial port based on its BDF. e.g. ``bdf@0:18.1`` |
|
|
| +-----------------------------+----------------------------------------------------------------------------------------+
|
|
| | port@<port address> | This sets the serial port address. |
|
|
+-----------------+-----------------------------+----------------------------------------------------------------------------------------+
|
|
|
|
The Generic hypervisor parameters are specified in the GRUB multiboot/multiboot2 command.
|
|
For example:
|
|
|
|
.. code-block:: none
|
|
:emphasize-lines: 5
|
|
|
|
menuentry 'Boot ACRN hypervisor from multiboot' {
|
|
insmod part_gpt
|
|
insmod ext2
|
|
echo 'Loading ACRN hypervisor ...'
|
|
multiboot --quirk-modules-after-kernel /boot/acrn.32.out uart=bdf@0:18.1
|
|
module /boot/bzImage Linux_bzImage
|
|
module /boot/bzImage2 Linux_bzImage2
|
|
}
|