]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2TbltDevicePkg/bld_vlv.bat
c5314833c02b40e8e3844364646b207c98188318
[mirror_edk2.git] / Vlv2TbltDevicePkg / bld_vlv.bat
1 @REM @file
2 @REM Windows batch file to build BIOS ROM
3 @REM
4 @REM Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
5 @REM SPDX-License-Identifier: BSD-2-Clause-Patent
6 @REM
7
8 @echo off
9 setlocal EnableDelayedExpansion EnableExtensions
10 echo.
11 echo %date% %time%
12 echo.
13
14
15 ::**********************************************************************
16 :: Initial Setup
17 ::**********************************************************************
18 set WORKSPACE=%CD%
19 if %WORKSPACE:~-1%==\ set WORKSPACE=%WORKSPACE:~0,-1%
20 set /a build_threads=1
21 set "Build_Flags= "
22 set exitCode=0
23 set Arch=X64
24 set Source=0
25 set CORE_PATH=%WORKSPACE%\edk2
26 set PLATFORM_PATH=%WORKSPACE%\edk2
27 cd ./edk2
28
29 :: Clean up previous build files.
30 if exist %CORE_PATH%\edk2.log del %CORE_PATH%\edk2.log
31 if exist %CORE_PATH%\unitool.log del %CORE_PATH%\unitool.log
32 if exist %CORE_PATH%\Conf\target.txt del %CORE_PATH%\Conf\target.txt
33 if exist %CORE_PATH%\Conf\tools_def.txt del %CORE_PATH%\Conf\tools_def.txt
34 if exist %CORE_PATH%\Conf\build_rule.txt del %CORE_PATH%\Conf\build_rule.txt
35 if exist %CORE_PATH%\Conf\FrameworkDatabase.db del %CORE_PATH%\Conf\FrameworkDatabase.db
36 if exist conf\.cache rmdir /q/s conf\.cache
37
38 :: Setup EDK environment. Edksetup puts new copies of target.txt, tools_def.txt, build_rule.txt in WorkSpace\Conf
39 :: Also run edksetup as soon as possible to avoid it from changing environment variables we're overriding
40 call %CORE_PATH%\edksetup.bat Rebuild
41 @echo off
42
43 :: Define platform specific environment variables.
44 set PLATFORM_NAME=Vlv2TbltDevicePkg
45 set PLATFORM_PACKAGE=%PLATFORM_PATH%\Vlv2TbltDevicePkg
46 set config_file=%PLATFORM_PACKAGE%\PlatformPkgConfig.dsc
47 set auto_config_inc=%PLATFORM_PACKAGE%\AutoPlatformCFG.txt
48
49
50
51 ::create new AutoPlatformCFG.txt file
52 copy /y nul %auto_config_inc% >nul
53
54 ::**********************************************************************
55 :: Parse command line arguments
56 ::**********************************************************************
57
58 :: Optional arguments
59 :OptLoop
60 if /i "%~1"=="/?" goto Usage
61
62 if /i "%~1"=="/l" (
63 set Build_Flags=%Build_Flags% -j EDK2.log
64 shift
65 goto OptLoop
66 )
67 if /i "%~1"=="/y" (
68 set Build_Flags=%Build_Flags% -y %PLATFORM_PACKAGE%\EDK2_%PLATFORM_PACKAGE%.report
69 shift
70 goto OptLoop
71 )
72 if /i "%~1"=="/m" (
73 if defined NUMBER_OF_PROCESSORS (
74 set /a build_threads=%NUMBER_OF_PROCESSORS%+1
75 )
76 shift
77 goto OptLoop
78 )
79 if /i "%~1" == "/c" (
80 echo Removing previous build files ...
81 if exist build (
82 del /f/s/q build > nul
83 rmdir /s/q build
84 )
85 if exist conf\.cache (
86 del /f/s/q conf\.cache > nul
87 rmdir /s/q conf\.cache
88 )
89 echo.
90 shift
91 goto OptLoop
92 )
93
94 if /i "%~1"=="/x64" (
95 set Arch=X64
96 shift
97 goto OptLoop
98 )
99 if /i "%~1"=="/IA32" (
100 set Arch=IA32
101 shift
102 goto OptLoop
103 )
104
105 :: Required argument(s)
106 if "%~1"=="" goto Usage
107
108 ::Remove the values for Platform_Type and Build_Target from BiosIdX.env and stage in Conf\
109 if "%Arch%"=="IA32" (
110 findstr /b /v "BOARD_ID BUILD_TYPE" %PLATFORM_PACKAGE%\BiosIdR.env > Conf\BiosId.env
111 echo DEFINE X64_CONFIG = FALSE >> %auto_config_inc%
112 ) else if "%Arch%"=="X64" (
113 findstr /b /v "BOARD_ID BUILD_TYPE" %PLATFORM_PACKAGE%\BiosIdx64R.env > Conf\BiosId.env
114 echo DEFINE X64_CONFIG = TRUE >> %auto_config_inc%
115 )
116
117 :: -- Build flags settings for each Platform --
118 echo Setting %1 platform configuration and BIOS ID...
119 if /i "%~1" == "MNW2" (
120 echo BOARD_ID = MNW2MAX >> Conf\BiosId.env
121 echo DEFINE ENBDT_PF_BUILD = TRUE >> %auto_config_inc%
122
123 ) else (
124 echo Error - Unsupported PlatformType: %1
125 goto Usage
126 )
127 set Platform_Type=%~1
128
129 if /i "%~2" == "RELEASE" (
130 set target=RELEASE
131 echo BUILD_TYPE = R >> Conf\BiosId.env
132 ) else (
133 set target=DEBUG
134 echo BUILD_TYPE = D >> Conf\BiosId.env
135 )
136
137 ::**********************************************************************
138 :: Additional EDK Build Setup/Configuration
139 ::**********************************************************************
140 echo.
141 echo Setting the Build environment for VS2015/VS2013/VS2012/VS2010/VS2008...
142 if defined VS140COMNTOOLS (
143 if not defined VSINSTALLDIR call "%VS140COMNTOOLS%\vsvars32.bat"
144 if /I "%VS140COMNTOOLS%" == "C:\Program Files\Microsoft Visual Studio 14.0\Common7\Tools\" (
145 set TOOL_CHAIN_TAG=VS2015
146 ) else (
147 set TOOL_CHAIN_TAG=VS2015x86
148 )
149 ) else if defined VS120COMNTOOLS (
150 if not defined VSINSTALLDIR call "%VS120COMNTOOLS%\vsvars32.bat"
151 if /I "%VS120COMNTOOLS%" == "C:\Program Files\Microsoft Visual Studio 12.0\Common7\Tools\" (
152 set TOOL_CHAIN_TAG=VS2013
153 ) else (
154 set TOOL_CHAIN_TAG=VS2013x86
155 )
156 ) else if defined VS110COMNTOOLS (
157 if not defined VSINSTALLDIR call "%VS110COMNTOOLS%\vsvars32.bat"
158 if /I "%VS110COMNTOOLS%" == "C:\Program Files\Microsoft Visual Studio 11.0\Common7\Tools\" (
159 set TOOL_CHAIN_TAG=VS2012
160 ) else (
161 set TOOL_CHAIN_TAG=VS2012x86
162 )
163 ) else if defined VS100COMNTOOLS (
164 if not defined VSINSTALLDIR call "%VS100COMNTOOLS%\vsvars32.bat"
165 if /I "%VS100COMNTOOLS%" == "C:\Program Files\Microsoft Visual Studio 10.0\Common7\Tools\" (
166 set TOOL_CHAIN_TAG=VS2010
167 ) else (
168 set TOOL_CHAIN_TAG=VS2010x86
169 )
170 ) else if defined VS90COMNTOOLS (
171 if not defined VSINSTALLDIR call "%VS90COMNTOOLS%\vsvars32.bat"
172 if /I "%VS90COMNTOOLS%" == "C:\Program Files\Microsoft Visual Studio 9.0\Common7\Tools\" (
173 set TOOL_CHAIN_TAG=VS2008
174 ) else (
175 set TOOL_CHAIN_TAG=VS2008x86
176 )
177 ) else (
178 echo --ERROR: VS2015/VS2013/VS2012/VS2010/VS2008 not installed correctly. VS140COMNTOOLS/VS120COMNTOOLS/VS110COMNTOOLS/VS100COMNTOOLS/VS90COMNTOOLS not defined ^^!
179 echo.
180 goto :BldFail
181 )
182
183 echo Ensuring correct build directory is present for GenBiosId...
184 set BUILD_PATH=Build\%PLATFORM_NAME%\%TARGET%_%TOOL_CHAIN_TAG%
185
186 echo Modifing Conf files for this build...
187 :: Remove lines with these tags from target.txt
188 findstr /V "TARGET TARGET_ARCH TOOL_CHAIN_TAG BUILD_RULE_CONF ACTIVE_PLATFORM MAX_CONCURRENT_THREAD_NUMBER" Conf\target.txt > Conf\target.txt.tmp
189
190 echo TARGET = %TARGET% >> Conf\target.txt.tmp
191 if "%Arch%"=="IA32" (
192 echo TARGET_ARCH = IA32 >> Conf\target.txt.tmp
193 ) else if "%Arch%"=="X64" (
194 echo TARGET_ARCH = IA32 X64 >> Conf\target.txt.tmp
195 )
196 echo TOOL_CHAIN_TAG = %TOOL_CHAIN_TAG% >> Conf\target.txt.tmp
197 echo BUILD_RULE_CONF = Conf/build_rule.txt >> Conf\target.txt.tmp
198 if %Source% == 0 (
199 echo ACTIVE_PLATFORM = %PLATFORM_PACKAGE%/PlatformPkg%Arch%.dsc >> Conf\target.txt.tmp
200 ) else (
201 echo ACTIVE_PLATFORM = %PLATFORM_PACKAGE%/PlatformPkg%Arch%Source.dsc >> Conf\target.txt.tmp
202 )
203 echo MAX_CONCURRENT_THREAD_NUMBER = %build_threads% >> Conf\target.txt.tmp
204
205 move /Y Conf\target.txt.tmp Conf\target.txt >nul
206
207 ::**********************************************************************
208 :: Build BIOS
209 ::**********************************************************************
210
211 echo Creating BiosId...
212 pushd %PLATFORM_PACKAGE%
213 if not exist %WORKSPACE%\%BUILD_PATH%\IA32 mkdir %WORKSPACE%\%BUILD_PATH%\IA32
214 GenBiosId.exe -i %CORE_PATH%\Conf\BiosId.env -o %WORKSPACE%\%BUILD_PATH%\IA32\BiosId.bin -ob %CORE_PATH%\Conf\BiosId.bat
215 if "%Arch%"=="X64" (
216 if not exist %WORKSPACE%\%BUILD_PATH%\X64 mkdir %WORKSPACE%\%BUILD_PATH%\X64
217 GenBiosId.exe -i %CORE_PATH%\Conf\BiosId.env -o %WORKSPACE%\%BUILD_PATH%\X64\BiosId.bin -ob %CORE_PATH%\Conf\BiosId.bat
218 )
219 popd
220
221
222 if %ERRORLEVEL% NEQ 0 goto BldFail
223
224 echo.
225 echo Invoking EDK2 build...
226 call build %Build_Flags%
227
228 if %ERRORLEVEL% NEQ 0 goto BldFail
229
230 ::**********************************************************************
231 :: Post Build processing and cleanup
232 ::**********************************************************************
233
234 echo Running fce...
235
236 pushd %PLATFORM_PACKAGE%
237 :: Extract Hii data from build and store in HiiDefaultData.txt
238 fce read -i %WORKSPACE%\%BUILD_PATH%\FV\Vlv.fd > %WORKSPACE%\%BUILD_PATH%\FV\HiiDefaultData.txt
239
240 :: save changes to VlvXXX.fd
241 fce update -i %WORKSPACE%\%BUILD_PATH%\FV\Vlv.fd -s %WORKSPACE%\%BUILD_PATH%\FV\HiiDefaultData.txt -o %WORKSPACE%\%BUILD_PATH%\FV\Vlv%Arch%.fd
242 popd
243
244 if %ERRORLEVEL% NEQ 0 goto BldFail
245 ::echo FD successfully updated with default Hii values.
246
247 :: Set the Board_Id, Build_Type, Version_Major, and Version_Minor environment variables
248 find /v "#" Conf\BiosId.env > ver_strings
249 for /f "tokens=1,3" %%i in (ver_strings) do set %%i=%%j
250 del /f/q ver_strings >nul
251
252 set BIOS_Name=%BOARD_ID%_%Arch%_%BUILD_TYPE%_%VERSION_MAJOR%_%VERSION_MINOR%.ROM
253 copy /y/b %WORKSPACE%\%BUILD_PATH%\FV\Vlv%Arch%.fd %PLATFORM_PATH%\%BIOS_Name% >nul
254 copy /y/b %WORKSPACE%\%BUILD_PATH%\FV\Vlv%Arch%.fd %WORKSPACE%\%BUILD_PATH%\FV\Vlv.ROM >nul
255
256 echo.
257 echo Build location: %BUILD_PATH%
258 echo BIOS ROM Created: %BIOS_Name%
259 echo.
260 echo -------------------- The EDKII BIOS build has successfully completed. --------------------
261 echo.
262
263 @REM build capsule here
264 @REMif "%openssl_path%" == "" (
265 @REM echo -- Error: OPENSSL_PATH not set. Capule and Recovery images not generated.
266 @REM set exitCode=1
267 @REM goto Exit
268 @REM
269 @REM echo > %BUILD_PATH%\FV\SYSTEMFIRMWAREUPDATECARGO.Fv
270 @REM build -p %PLATFORM_PACKAGE%\PlatformCapsule.dsc
271
272 goto Exit
273
274 :Usage
275 echo.
276 echo ***************************************************************************
277 echo Build BIOS rom for VLV platforms.
278 echo.
279 echo Usage: bld_vlv.bat [options] PlatformType [Build Target]
280 echo.
281 echo /c CleanAll before building
282 echo /l Generate build log file
283 echo /y Generate build report file
284 echo /m Enable multi-processor build
285 echo /IA32 Set Arch to IA32 (default: X64)
286 echo /X64 Set Arch to X64 (default: X64)
287 echo.
288 echo Platform Types: MNW2
289 echo Build Targets: Debug, Release (default: Debug)
290 echo.
291 echo Examples:
292 echo bld_vlv.bat MNW2 : X64 Debug build for MinnowMax
293 echo bld_vlv.bat /IA32 MNW2 release : IA32 Release build for MinnowMax
294 echo.
295 echo ***************************************************************************
296 set exitCode=1
297 goto Exit
298
299 :BldFail
300 set exitCode=1
301 echo -- Error: EDKII BIOS Build has failed!
302 echo See EDK2.log for more details
303
304 :Exit
305 echo %date% %time%
306 exit /b %exitCode%
307
308 EndLocal