mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-29 20:24:00 +00:00
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>
16 lines
330 B
Bash
Executable File
16 lines
330 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# pull fresh copies of the ACRN source for use by doxygen
|
|
|
|
if [ ! -d "../acrn-hypervisor" ]; then
|
|
echo Repo for acrn-hypervisor is missing.
|
|
exit -1
|
|
fi
|
|
if [ ! -d "../acrn-devicemodel" ]; then
|
|
echo Repo for acrn-devicemodel is missing.
|
|
exit -1
|
|
fi
|
|
|
|
cd ../acrn-hypervisor;git pull
|
|
cd ../acrn-devicemodel;git pull
|