File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ partition. Follow these steps:
429
429
double-check the platform boot order using ``efibootmgr -v `` and
430
430
modify it if needed.
431
431
432
- The ACRN hypervisor (``acrn.efi ``) accepts three command-line parameters that
432
+ The ACRN hypervisor (``acrn.efi ``) accepts two command-line parameters that
433
433
tweak its behavior:
434
434
435
435
1. ``bootloader= ``: this sets the EFI executable to be loaded once the hypervisor
@@ -450,11 +450,6 @@ partition. Follow these steps:
450
450
You should run ``dmesg |grep ttyS0 `` to get port address from the output, and then
451
451
add the ``uart `` parameter into the ``efibootmgr `` command.
452
452
453
- #. ``vuart=ttySn@irqN ``: this tells the hypervisor which virtual serial device SOS
454
- will use and its IRQ number. This is used to avoid conflict with SOS passthrough
455
- devices' interrupt. If UART is set to ttyS1, and its native IRQ is 5, you'd better
456
- set ``vuart=ttyS1@irq5 `` (Use 'dmesg | grep tty' to get IRQ information).
457
- Also set ``console=ttyS1 `` in ``acrn.conf `` to match the SOS boot args.
458
453
459
454
Here is a more complete example of how to configure the EFI firmware to load the ACRN
460
455
hypervisor and set these parameters.
Original file line number Diff line number Diff line change @@ -75,15 +75,15 @@ You will need to keep these in mind in a few places:
75
75
.. code-block :: none
76
76
77
77
# efibootmgr -c -l "\EFI\acrn\acrn.efi" -d /dev/mmcblk0 -p 1 -L "ACRN Hypervisor" \
78
- -u "bootloader=\EFI\org.clearlinux\bootloaderx64.efi uart=bdf@0:18.1 vuart=ttyS1@irq5 "
78
+ -u "bootloader=\EFI\org.clearlinux\bootloaderx64.efi uart=bdf@0:18.1"
79
79
80
80
UP2 serial port setting
81
81
=======================
82
82
83
83
The serial port (ttyS1) in the 40-pin HAT connector is located at ``serial PCI BDF 0:18.1 ``.
84
84
You can check this from the ``lspci `` output from the initial Clearlinux installation.
85
- Also you can use ``dmesg | grep tty `` to get its IRQ information for vuart setting; and update
86
- SOS bootargs ``console=ttyS1 `` in acrn.conf to match with vuart setting.
85
+ Also you can use ``dmesg | grep tty `` to get its IRQ information for console setting; and update
86
+ SOS bootargs ``console=ttyS1 `` in acrn.conf to match with console setting.
87
87
88
88
.. code-block :: none
89
89
You can’t perform that action at this time.
0 commit comments