summaryrefslogtreecommitdiff
path: root/Vlv2TbltDevicePkg/Build_IFWI.sh
diff options
context:
space:
mode:
authorGuo Mang <mang.guo@intel.com>2016-04-12 13:11:02 +0800
committerzwei4 <david.wei@intel.com>2016-04-12 15:43:15 +0800
commitbd4668b9621c5cd3b7047eb050b5cef7b8221c32 (patch)
tree776b925a06be7d12057d2dee11661156f223a71f /Vlv2TbltDevicePkg/Build_IFWI.sh
parent84f885db881c636693bee169a9d71b0cdb044219 (diff)
downloadedk2-platforms-bd4668b9621c5cd3b7047eb050b5cef7b8221c32.tar.xz
Sync SVN commit: 1. May 8, 2015. Update SEC version and remove vacant binary. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Tim He <tim.he@intel.com>
2. November 12, 2015. Vlv2TbltDevicePkg: Add 'yL' build option to enable SPI lock for MinnowBoard Max. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Tim He <tim.he@intel.com> Reviewed-by: David Wei <david.wei@intel.com>
Diffstat (limited to 'Vlv2TbltDevicePkg/Build_IFWI.sh')
-rwxr-xr-xVlv2TbltDevicePkg/Build_IFWI.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/Vlv2TbltDevicePkg/Build_IFWI.sh b/Vlv2TbltDevicePkg/Build_IFWI.sh
index f5e499c2d2..4a11a1cba9 100755
--- a/Vlv2TbltDevicePkg/Build_IFWI.sh
+++ b/Vlv2TbltDevicePkg/Build_IFWI.sh
@@ -6,9 +6,10 @@ function Usage ( ) {
echo
echo "Script to build BIOS firmware and stitch the entire IFWI."
echo
- echo "Usage: Build_IFWI.bat PlatformType BuildTarget "
+ echo "Usage: Build_IFWI.bat [options] PlatformType BuildTarget "
echo
echo
+ echo " /yL [option] : Enable SPI lock"
echo " Platform Types: MNW2"
echo " Build Targets: Release, Debug"
echo
@@ -60,6 +61,9 @@ for (( i=1; i<=$#; ))
elif [ "$1" == "/nV" ]; then
Stitch_Flags="$Stitch_Flags /nV"
shift
+ elif [ "$1" == "/yL" ]; then
+ Build_Flags="$Build_Flags /yL"
+ shift
else
break
fi