Skip to content

Commit e5a2574

Browse files
jsun26inteldbkinder
authored andcommitted
doc: add multiboot module string parameter
The multiboot module string will be used to identify the usage of current module, it must exactly match with "kernel_mod_tag" which configured in VM configurations files; Signed-off-by: Victor Sun <victor.sun@intel.com>
1 parent e63d32a commit e5a2574

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

doc/tutorials/using_partition_mode_on_nuc.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ Update Ubuntu GRUB to Boot hypervisor and Load Kernel Image
210210
211211
echo 'Loading hypervisor logical partition scenario ...'
212212
multiboot --quirk-modules-after-kernel /boot/acrn.32.out
213-
module /boot/bzImage
213+
module /boot/bzImage XXXXXX
214214
}
215215
216216
.. note::
@@ -220,6 +220,9 @@ Update Ubuntu GRUB to Boot hypervisor and Load Kernel Image
220220
``hypervisor/scenarios/logical_partition/vm_configurations.h`` and
221221
configured by ``VMx_CONFIG_OS_BOOTARG_*`` MACROs (where x is the VM id
222222
number and ``*`` are arguments).
223+
The multiboot module param ``XXXXXX`` is the bzImage tag and must
224+
exactly match the ``kernel_mod_tag`` configured in file
225+
``hypervisor/scenarios/logical_partition/vm_configurations.c``.
223226

224227
#. Modify the ``/etc/default/grub`` file as follows to make the GRUB menu
225228
visible when booting:

doc/tutorials/using_partition_mode_on_up2.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,9 +327,15 @@ Enable partition mode in ACRN hypervisor
327327
328328
echo 'Loading partition mode hypervisor ...'
329329
multiboot /boot/acrn.32.out
330-
module /boot/bzImage
330+
module /boot/bzImage XXXXXX
331331
}
332332
333+
.. note::
334+
335+
The multiboot module param ``XXXXXX`` is the bzImage tag and must
336+
exactly match the ``kernel_mod_tag`` configured in file
337+
``hypervisor/scenarios/logical_partition/vm_configurations.c``.
338+
333339
Modify the ``/etc/default/grub`` file as follows to make the GRUB menu visible
334340
when booting:
335341

0 commit comments

Comments
 (0)