Project ACRN hypervisor
Go to file
Geoffroy Van Cutsem e8b4b6a0c2 Merge remote-tracking branch 'devicemodel/master'
Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
2018-05-10 01:49:55 +02:00
.travis-dockerfiles Move ACRN hypervisor code in dedicated hypervisor/ folder 2018-05-10 01:47:16 +02:00
arch/x86 Move ACRN hypervisor code in dedicated hypervisor/ folder 2018-05-10 01:47:16 +02:00
core DM: bug fix in handling signal 2018-05-08 10:59:29 +08:00
hw dm: Reorganize ACRN DM directory. 2018-05-09 13:57:44 +08:00
hypervisor Move ACRN hypervisor code in dedicated hypervisor/ folder 2018-05-10 01:47:16 +02:00
include Move ACRN hypervisor code in dedicated hypervisor/ folder 2018-05-10 01:47:16 +02:00
samples Remove 'noxsave' bootarg in dm sample script 2018-04-04 10:48:26 +08:00
tools Bugfix: DM:tools:acrnctl launch script output is binary file 2018-04-26 13:44:49 +08:00
.gitignore Merge remote-tracking branch 'devicemodel/master' 2018-05-10 01:49:55 +02:00
.travis.yml Move ACRN hypervisor code in dedicated hypervisor/ folder 2018-05-10 01:47:16 +02:00
license_header Move ACRN hypervisor code in dedicated hypervisor/ folder 2018-05-10 01:47:16 +02:00
MAINTAINERS Move ACRN hypervisor code in dedicated hypervisor/ folder 2018-05-10 01:47:16 +02:00
Makefile Move ACRN hypervisor code in dedicated hypervisor/ folder 2018-05-10 01:47:16 +02:00
README.rst Move ACRN hypervisor code in dedicated hypervisor/ folder 2018-05-10 01:47:16 +02:00

ACRN Device Model
#################

Introduction
============
The ACRN Device Model provides **device sharing** capabilities between the Service OS and Guest OSs. It is a component that is used in conjunction with the `ACRN Hypervisor`_ and this is installed within the Service OS. You can find out more about Project ACRN on the `Project ACRN documentation`_ website.


Building the Device Model
=========================

Build dependencies
******************

* For Clear Linux

.. code-block:: console

   sudo swupd bundle-add os-clr-on-clr \
          os-utils-gui-dev

* For CentOS

.. code-block:: console

   sudo yum install gcc \
          libuuid-devel \
          openssl-devel \
          libpciaccess-devel

* For Fedora 27

.. code-block:: console

   sudo dnf install gcc \
          libuuid-devel \
          openssl-devel \
          libpciaccess-devel

Build
*****
To build the Device Model

.. code-block:: console

   make

To clean the build artefacts

.. code-block:: console

   make clean

Runtime dependencies
********************

* On CentOS

.. code-block:: console

   sudo yum install openssl-libs \
                    zlib \
                    libpciaccess \
                    libuuid

* On Fedora 27

.. code-block:: console

   sudo dnf install openssl-libs \
                    zlib \
                    libpciaccess \
                    libuuid

.. _`ACRN Hypervisor`: https://github.com/projectacrn/acrn-hypervisor
.. _`Project ACRN documentation`: https://projectacrn.github.io/