doc: filter known issues

make the doc build process quiet and add filtering of known (Sphinx)
issues.  Scripting comes from the open source Zephyr project.

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
David B. Kinder
2018-03-13 16:24:35 -07:00
committed by Jack Ren
parent b170e295a7
commit 0dc93a5281
7 changed files with 416 additions and 9 deletions

View File

@@ -1,5 +1,7 @@
#!/bin/bash
q="--quiet"
# pull fresh copies of the ACRN source for use by doxygen
if [ ! -d "../acrn-hypervisor" ]; then
@@ -11,15 +13,18 @@ if [ ! -d "../acrn-devicemodel" ]; then
exit -1
fi
# Assumes origin (personal) and upstream (project) remote repos are
# setup
cd ../acrn-hypervisor
git checkout master;
git fetch upstream
git merge upstream/master
git push origin master
git checkout $q master;
git fetch $q upstream
git merge $q upstream/master
git push $q origin master
cd ../acrn-devicemodel
git checkout master;
git fetch upstream
git merge upstream/master
git push origin master
git checkout $q master;
git fetch $q upstream
git merge $q upstream/master
git push $q origin master