doc: add Technical intro doc

Add the "Introduction of Project Acorn" doc.

Also adds improvements to the doc generation processes, content styles,
removed doxygen-generated API material.

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
David B. Kinder
2018-03-08 15:59:55 -08:00
parent 2abc943bd9
commit 74274634de
23 changed files with 826 additions and 55 deletions

View File

@@ -1,7 +1,6 @@
#!/bin/bash
# pull fresh copies of the ACRN source and copy public API headers
# over to the documentation tree
# pull fresh copies of the ACRN source for use by doxygen
if [ ! -d "../acrn-hypervisor" ]; then
echo Repo for acrn-hypervisor is missing.
@@ -13,15 +12,4 @@ if [ ! -d "../acrn-devicemodel" ]; then
fi
cd ../acrn-hypervisor;git pull
mkdir -p ../acrn-documentation/_source/hypervisor/include/common
cp include/common/hypercall.h ../acrn-documentation/_source/hypervisor/include/common
mkdir -p ../acrn-documentation/_source/hypervisor/include/public
cp include/public/acrn_common.h ../acrn-documentation/_source/hypervisor/include/public
cp include/public/acrn_hv_defs.h ../acrn-documentation/_source/hypervisor/include/public
cd ../acrn-devicemodel;git pull
mkdir -p ../acrn-documentation/_source/devicemodel/include
cp include/virtio.h ../acrn-documentation/_source/devicemodel/include