]> git.proxmox.com Git - mirror_edk2.git/blame - edksetup.bat
Add error handling for TPM in S3 resume failure.
[mirror_edk2.git] / edksetup.bat
CommitLineData
8014e7ce 1@REM @file\r
2@REM Windows batch file to setup a WORKSPACE environment\r
878ddf1f 3@REM\r
b1763338 4@REM Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>\r
24542fb2 5@REM This program and the accompanying materials\r
878ddf1f 6@REM are licensed and made available under the terms and conditions of the BSD License\r
7@REM which accompanies this distribution. The full text of the license may be found at\r
8@REM http://opensource.org/licenses/bsd-license.php\r
a29212b2 9@REM\r
878ddf1f 10@REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11@REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12@REM\r
13\r
a29212b2 14@REM set CYGWIN_HOME=C:\cygwin\r
878ddf1f 15\r
8014e7ce 16@REM usage: \r
17@REM edksetup.bat [--nt32] [AntBuild] [Rebuild] [ForceRebuild] [Reconfig]\r
302e0e4a 18@REM if the argument, skip is present, only the paths and the\r
19@REM test and set of environment settings are performed. \r
878ddf1f 20\r
21@REM ##############################################################\r
22@REM # You should not have to modify anything below this line\r
23@REM #\r
24\r
25@echo off\r
26\r
3fab94ed 27@REM\r
28@REM Set the WORKSPACE to the current working directory\r
29@REM\r
b7509087 30pushd .\r
31cd %~dp0\r
d27bd9e9 32\r
dff2673e 33if not defined WORKSPACE (\r
7ef23d9c 34 goto SetWorkSpace\r
d27bd9e9
LG
35)\r
36\r
dff2673e
LG
37if %WORKSPACE% == %CD% (\r
38 @REM Workspace is not changed.\r
7ef23d9c 39 goto ParseArgs\r
dff2673e
LG
40)\r
41\r
42:SetWorkSpace\r
d27bd9e9
LG
43@REM set new workspace\r
44@REM clear EFI_SOURCE and EDK_SOURCE for the new workspace\r
dcc80786
LG
45if not defined WORKSPACE (\r
46 set WORKSPACE=%CD%\r
47 set EFI_SOURCE=\r
48 set EDK_SOURCE=\r
49)\r
3fab94ed 50\r
d27bd9e9 51:ParseArgs\r
7ef23d9c
OM
52if /I "%1"=="-h" goto Usage\r
53if /I "%1"=="-help" goto Usage\r
54if /I "%1"=="--help" goto Usage\r
55if /I "%1"=="/h" goto Usage\r
56if /I "%1"=="/?" goto Usage\r
57if /I "%1"=="/help" goto Usage\r
8014e7ce 58\r
7ef23d9c 59if /I not "%1"=="--nt32" goto no_nt32\r
8014e7ce 60\r
61@REM Flag, --nt32 is set\r
62@REM The Nt32 Emluation Platform requires Microsoft Libraries\r
63@REM and headers to interface with Windows.\r
64\r
402bbc76 65if not defined VCINSTALLDIR (\r
b1763338 66 if defined VS120COMNTOOLS (\r
67 call "%VS120COMNTOOLS%\vsvars32.bat"\r
402bbc76 68 ) else (\r
b1763338 69 if defined VS110COMNTOOLS (\r
70 call "%VS110COMNTOOLS%\vsvars32.bat"\r
402bbc76 71 ) else (\r
b1763338 72 if defined VS100COMNTOOLS (\r
73 call "%VS100COMNTOOLS%\vsvars32.bat"\r
c16243d8 74 ) else (\r
b1763338 75 if defined VS90COMNTOOLS (\r
76 call "%VS90COMNTOOLS%\vsvars32.bat"\r
48604ef9 77 ) else (\r
b1763338 78 if defined VS80COMNTOOLS (\r
79 call "%VS80COMNTOOLS%\vsvars32.bat"\r
4c633da4 80 ) else (\r
b1763338 81 if defined VS71COMNTOOLS (\r
82 call "%VS71COMNTOOLS%\vsvars32.bat"\r
83 ) else (\r
84 echo.\r
85 echo !!! WARNING !!! Cannot find Visual Studio !!!\r
86 echo.\r
87 )\r
4c633da4 88 )\r
48604ef9 89 )\r
c16243d8 90 )\r
402bbc76 91 )\r
92 )\r
93)\r
b7509087 94shift\r
b7509087 95\r
3a6b4559 96:no_nt32\r
dcc80786 97\r
7ef23d9c 98if /I "%1"=="NewBuild" shift\r
dcc80786
LG
99if exist %WORKSPACE%\BaseTools (\r
100 set EDK_TOOLS_PATH=%WORKSPACE%\BaseTools\r
101) else (\r
102 if defined PACKAGES_PATH (\r
103 for %%i IN (%PACKAGES_PATH%) DO (\r
104 if exist %%~fi\BaseTools (\r
105 set EDK_TOOLS_PATH=%%~fi\BaseTools\r
106 goto checkBaseTools\r
107 )\r
108 )\r
109 ) else (\r
110 echo.\r
111 echo !!! ERROR !!! Cannot find BaseTools !!!\r
112 echo. \r
113 goto BadBaseTools\r
114 )\r
115)\r
116if exist %EDK_TOOLS_PATH%\Source set BASE_TOOLS_PATH=%EDK_TOOLS_PATH%\r
117\r
118:checkBaseTools\r
7ef23d9c
OM
119IF NOT EXIST "%EDK_TOOLS_PATH%\toolsetup.bat" goto BadBaseTools\r
120call %EDK_TOOLS_PATH%\toolsetup.bat %*\r
121if /I "%1"=="Reconfig" shift\r
122goto check_cygwin\r
8014e7ce 123\r
124:BadBaseTools\r
125 @REM\r
7ef23d9c 126 REM Need the BaseTools Package in order to build\r
8014e7ce 127 @REM\r
7ef23d9c
OM
128 @echo.\r
129 @echo !!! ERROR !!! The BaseTools Package was not found !!!\r
130 @echo.\r
131 @echo Set the system environment variable, EDK_TOOLS_PATH to the BaseTools,\r
132 @echo For example,\r
133 @echo set EDK_TOOLS_PATH=C:\MyTools\BaseTools\r
134 @echo The setup script, toolsetup.bat must reside in this folder.\r
135 @echo.\r
136 goto end\r
8014e7ce 137\r
a29212b2 138:check_cygwin\r
1f9c8606
OM
139if defined CYGWIN_HOME (\r
140 if not exist "%CYGWIN_HOME%" (\r
141 @echo.\r
142 @echo !!! WARNING !!! CYGWIN_HOME not found, gcc build may not be used !!!\r
143 @echo.\r
144 )\r
145) else (\r
7ef23d9c
OM
146 if exist c:\cygwin (\r
147 set CYGWIN_HOME=c:\cygwin\r
8014e7ce 148 ) else (\r
3a6b4559 149 @echo.\r
150 @echo !!! WARNING !!! No CYGWIN_HOME set, gcc build may not be used !!!\r
151 @echo.\r
8014e7ce 152 )\r
1f9c8606 153)\r
878ddf1f 154\r
1f9c8606
OM
155:cygwin_done\r
156if "%1"=="" goto end\r
2fcfed38 157\r
70edbc34 158:Usage\r
3a6b4559 159 @echo.\r
160 @echo Usage: "%0 [-h | -help | --help | /h | /help | /?] [--nt32] [Reconfig]"\r
161 @echo --nt32 Call vsvars32.bat for NT32 platform build.\r
162 @echo.\r
163 @echo Reconfig Reinstall target.txt, tools_def.txt and build_rule.txt.\r
164 @echo.\r
165 @echo Note that target.template, tools_def.template and build_rules.template\r
1f9c8606
OM
166 @echo will only be copied to target.txt, tools_def.txt and build_rule.txt\r
167 @echo respectively if they do not exist. Use option [Reconfig] to force the copy.\r
3a6b4559 168 @echo.\r
7ef23d9c 169 goto end\r
3fab94ed 170\r
878ddf1f 171:end\r
7ef23d9c 172 popd\r
878ddf1f 173\r