mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-30 04:55:21 +00:00
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:
committed by
Jack Ren
parent
b170e295a7
commit
0dc93a5281
@@ -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
|
||||
|
Reference in New Issue
Block a user