Skip to content

Commit

Permalink
doc: add multiboot module string parameter
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
jsun26intel authored and dbkinder committed Jun 10, 2019
1 parent e63d32a commit e5a2574
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
5 changes: 4 additions & 1 deletion doc/tutorials/using_partition_mode_on_nuc.rst
Expand Up @@ -210,7 +210,7 @@ Update Ubuntu GRUB to Boot hypervisor and Load Kernel Image
echo 'Loading hypervisor logical partition scenario ...'
multiboot --quirk-modules-after-kernel /boot/acrn.32.out
module /boot/bzImage
module /boot/bzImage XXXXXX
}
.. note::
Expand All @@ -220,6 +220,9 @@ Update Ubuntu GRUB to Boot hypervisor and Load Kernel Image
``hypervisor/scenarios/logical_partition/vm_configurations.h`` and
configured by ``VMx_CONFIG_OS_BOOTARG_*`` MACROs (where x is the VM id
number and ``*`` are arguments).
The multiboot module param ``XXXXXX`` is the bzImage tag and must
exactly match the ``kernel_mod_tag`` configured in file
``hypervisor/scenarios/logical_partition/vm_configurations.c``.

#. Modify the ``/etc/default/grub`` file as follows to make the GRUB menu
visible when booting:
Expand Down
8 changes: 7 additions & 1 deletion doc/tutorials/using_partition_mode_on_up2.rst
Expand Up @@ -327,9 +327,15 @@ Enable partition mode in ACRN hypervisor
echo 'Loading partition mode hypervisor ...'
multiboot /boot/acrn.32.out
module /boot/bzImage
module /boot/bzImage XXXXXX
}
.. note::

The multiboot module param ``XXXXXX`` is the bzImage tag and must
exactly match the ``kernel_mod_tag`` configured in file
``hypervisor/scenarios/logical_partition/vm_configurations.c``.

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

Expand Down

0 comments on commit e5a2574

Please sign in to comment.