HV:Acrn-hypvervisor Root Directory Clean-up and create misc/ folder for Acrn daemons, services and tools.

This patch is to clean-up acrn-hypervisor root directory, targt only 5 folders under acrn-hypervisor:1.hypervisor,2.devicemodel,3.misc,4.doc,5.build

Tracked-On: #3482
Signed-off-by: Terry Zou <terry.zou@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
Terry Zou
2019-07-29 12:21:54 +08:00
committed by Xie, Nanlin
parent 555a03db99
commit a9c38a5cfb
119 changed files with 62 additions and 57 deletions

View File

@@ -43,7 +43,7 @@ doxy:
$(Q)find doxygen/xml/* | xargs sed -i 's/simplesect kind="pre"/simplesect kind="preconditions"/'
content:
$(Q)scripts/extract_content.py . tools
$(Q)scripts/extract_content.py . misc
kconfig:
$(Q)srctree=../hypervisor \

View File

@@ -487,7 +487,7 @@ partition. Follow these steps:
<https://github.com/projectacrn/acrn-hypervisor/blob/master/efi-stub/clearlinux/acrn.conf>`__
as shown here:
.. literalinclude:: ../../efi-stub/clearlinux/acrn.conf
.. literalinclude:: ../../misc/efi-stub/clearlinux/acrn.conf
:caption: efi-stub/clearlinux/acrn.conf
On the platform, copy the ``acrn.conf`` file to the EFI partition we mounted earlier:

View File

@@ -151,7 +151,7 @@ reason and times of each vm_exit after we have done some operations.
# acrnalyze.py -i /home/trace/acrntrace/20190219-001529/1 -o vmexit --vm_exit
.. note:: The acrnalyze.py script is in the
``acrn-hypervisor/tools/acrntrace/scripts`` folder. The location
``acrn-hypervisor/misc/tools/acrntrace/scripts`` folder. The location
of the trace files produced by ``acrntrace`` may be different in your system.
.. figure:: images/debug_image28.png
@@ -174,7 +174,7 @@ shown in the following example:
trace event id
2. Add the following format to
``acrn-hypervisor/tools/acrntrace/scripts/formats``:
``acrn-hypervisor/misc/tools/acrntrace/scripts/formats``:
.. figure:: images/debug_image1.png
:align: center
@@ -224,7 +224,7 @@ shown in the following example:
formats /home/trace/acrntrace/20190219-001529/1 | grep "trace test"
.. note:: The acrnalyze.py script is in the
``acrn-hypervisor/tools/acrntrace/scripts`` folder. The location
``acrn-hypervisor/misc/tools/acrntrace/scripts`` folder. The location
of the trace files produced by ``acrntrace`` may be different in your system.
and we will get the following log:

View File

@@ -16,7 +16,7 @@ The ACRN Service OS is based on `Clear Linux OS`_ and it uses `systemd-networkd`
to set up the Service OS networking. A few files are responsible for setting up the
ACRN bridge (``acrn-br0``), the TAP device (``tap0``), and how these are all
connected. Those files are installed in ``/usr/lib/systemd/network``
on the target device and can also be found under ``tools/acrnbridge`` in the source code.
on the target device and can also be found under ``misc/acrnbridge`` in the source code.
Setting up the static IP address
********************************
@@ -35,8 +35,8 @@ Modify the ``[Network]`` section in the
``/etc/systemd/network/50-eth.network`` file you just created.
This is the content of the file used in ACRN by default.
.. literalinclude:: ../../tools/acrnbridge/eth.network
:caption: tools/acrnbridge/eth.network
.. literalinclude:: ../../misc/acrnbridge/eth.network
:caption: misc/acrnbridge/eth.network
:emphasize-lines: 5
Edit the file to remove the line highlighted above and add your network settings in

View File

@@ -7,4 +7,4 @@ Tools
:glob:
:maxdepth: 1
../tools/**
../misc/**