Upload BSD-licensed Vlv2TbltDevicePkg and Vlv2DeviceRefCodePkg to

https://svn.code.sf.net/p/edk2/code/trunk/edk2/, 

which are for MinnowBoard MAX open source project.


Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: David Wei <david.wei@intel.com>
Reviewed-by: Mike Wu <mike.wu@intel.com>
Reviewed-by: Hot Tian <hot.tian@intel.com>


git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16599 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
David Wei
2015-01-12 09:37:20 +00:00
committed by zwei4
parent 6f785cfcc3
commit 3cbfba02fe
518 changed files with 118538 additions and 0 deletions

59
Vlv2TbltDevicePkg/cln.sh Normal file
View File

@@ -0,0 +1,59 @@
echo
echo Run build cleanall...
echo
echo
echo Directories to clean...
echo
if [ -d "Build" ]; then
rm -r Build
fi
if [ -d "Conf/.cache" ]; then
rm -r Conf/.cache
fi
if [ -d "RomImages" ]; then
rm -r RomImages
fi
echo
echo Files to clean...
echo
if [ -e $(pwd)/EDK2.log ]; then
rm $(pwd)/EDK2.log
fi
if [ -e $(pwd)/Unitool.log ]; then
rm $(pwd)/Unitool.log
fi
if [ -e $(pwd)/Conf/target.txt ]; then
rm $(pwd)/Conf/target.txt
fi
if [ -e $(pwd)/Conf/BiosId.env ]; then
rm $(pwd)/Conf/BiosId.env
fi
if [ -e $(pwd)/Conf/tools_def.txt ]; then
rm $(pwd)/Conf/tools_def.txt
fi
if [ -e $(pwd)/Conf/build_rule.txt ]; then
rm $(pwd)/Conf/build_rule.txt
fi
if [ -e $(pwd)/Conf/BuildEnv.sh ]; then
rm $(pwd)/Conf/BuildEnv.sh
fi
if [ -e $(pwd)/Vlv2TbltDevicePkg/AutoPlatformCFG.txt ]; then
rm $(pwd)/Vlv2TbltDevicePkg/AutoPlatformCFG.txt
fi
echo
echo All done...
echo