]> git.proxmox.com Git - mirror_edk2.git/blame - DuetPkg/PostBuild.bat
MdePkg: add missing #defines for decoding PCIe 2.1 extended capability structures
[mirror_edk2.git] / DuetPkg / PostBuild.bat
CommitLineData
e4c0074b 1@REM ## @file\r
2@REM #\r
3@REM # Currently, Build system does not provide post build mechanism for module \r
4@REM # and platform building, so just use a bat file to do post build commands.\r
5@REM # Originally, following post building command is for EfiLoader module.\r
6@REM #\r
7708d081 7@REM # Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>\r
e4c0074b 8@REM #\r
9@REM # This program and the accompanying materials\r
10@REM # are licensed and made available under the terms and conditions of the BSD License\r
11@REM # which accompanies this distribution. The full text of the license may be found at\r
12@REM # http://opensource.org/licenses/bsd-license.php\r
13@REM # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14@REM # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15@REM #\r
16@REM #\r
17@REM ##\r
6d3f7723 18\r
9fe0e267 19@set BASETOOLS_DIR=%WORKSPACE_TOOLS_PATH%\Bin\Win32\r
e88f3056 20@set BOOTSECTOR_BIN_DIR=%WORKSPACE%\DuetPkg\BootSector\bin\r
c5dfb477 21@set PROCESSOR=""\r
7708d081 22@call %WORKSPACE%\DuetPkg\GetVariables.bat\r
c5dfb477 23\r
7708d081
RN
24@if NOT "%1"=="" @set TARGET_ARCH=%1\r
25@if "%TARGET_ARCH%"=="IA32" set PROCESSOR=IA32\r
26@if "%TARGET_ARCH%"=="X64" set PROCESSOR=X64\r
c5dfb477 27@if %PROCESSOR%=="" goto WrongArch\r
28\r
7708d081 29@set BUILD_DIR=%WORKSPACE%\Build\DuetPkg%PROCESSOR%\%TARGET%_%TOOL_CHAIN_TAG%\r
ab9cb4b1 30\r
31\r
c5dfb477 32@echo Compressing DUETEFIMainFv.FV ...\r
8b85412a 33@%BASETOOLS_DIR%\LzmaCompress -e -o %BUILD_DIR%\FV\DUETEFIMAINFV.z %BUILD_DIR%\FV\DUETEFIMAINFV.Fv\r
c5dfb477 34\r
35@echo Compressing DxeMain.efi ...\r
8b85412a 36@%BASETOOLS_DIR%\LzmaCompress -e -o %BUILD_DIR%\FV\DxeMain.z %BUILD_DIR%\%PROCESSOR%\DxeCore.efi\r
c5dfb477 37\r
38@echo Compressing DxeIpl.efi ...\r
8b85412a 39@%BASETOOLS_DIR%\LzmaCompress -e -o %BUILD_DIR%\FV\DxeIpl.z %BUILD_DIR%\%PROCESSOR%\DxeIpl.efi\r
c5dfb477 40\r
41@echo Generate Loader Image ...\r
42@if "%PROCESSOR%"=="IA32" goto GENERATE_IMAGE_IA32\r
43@if "%PROCESSOR%"=="X64" goto GENERATE_IMAGE_X64\r
44\r
45:GENERATE_IMAGE_IA32\r
46@%BASETOOLS_DIR%\EfiLdrImage.exe -o %BUILD_DIR%\FV\Efildr32 %BUILD_DIR%\%PROCESSOR%\EfiLoader.efi %BUILD_DIR%\FV\DxeIpl.z %BUILD_DIR%\FV\DxeMain.z %BUILD_DIR%\FV\DUETEFIMAINFV.z\r
e88f3056 47@copy /b %BOOTSECTOR_BIN_DIR%\Start.com+%BOOTSECTOR_BIN_DIR%\Efi32.com2+%BUILD_DIR%\FV\Efildr32 %BUILD_DIR%\FV\Efildr\r
48@copy /b %BOOTSECTOR_BIN_DIR%\Start16.com+%BOOTSECTOR_BIN_DIR%\Efi32.com2+%BUILD_DIR%\FV\Efildr32 %BUILD_DIR%\FV\Efildr16\r
49@copy /b %BOOTSECTOR_BIN_DIR%\Start32.com+%BOOTSECTOR_BIN_DIR%\Efi32.com2+%BUILD_DIR%\FV\Efildr32 %BUILD_DIR%\FV\Efildr20\r
c5dfb477 50@goto end\r
51\r
52:GENERATE_IMAGE_X64\r
53@%BASETOOLS_DIR%\EfiLdrImage.exe -o %BUILD_DIR%\FV\Efildr64 %BUILD_DIR%\%PROCESSOR%\EfiLoader.efi %BUILD_DIR%\FV\DxeIpl.z %BUILD_DIR%\FV\DxeMain.z %BUILD_DIR%\FV\DUETEFIMAINFV.z\r
e88f3056 54@copy /b %BOOTSECTOR_BIN_DIR%\Start64.com+%BOOTSECTOR_BIN_DIR%\Efi64.com2+%BUILD_DIR%\FV\Efildr64 %BUILD_DIR%\FV\EfildrPure\r
c5dfb477 55@%BASETOOLS_DIR%\GenPage.exe %BUILD_DIR%\FV\EfildrPure -o %BUILD_DIR%\FV\Efildr\r
e88f3056 56@copy /b %BOOTSECTOR_BIN_DIR%\St16_64.com+%BOOTSECTOR_BIN_DIR%\Efi64.com2+%BUILD_DIR%\FV\Efildr64 %BUILD_DIR%\FV\Efildr16Pure\r
c5dfb477 57@%BASETOOLS_DIR%\GenPage.exe %BUILD_DIR%\FV\Efildr16Pure -o %BUILD_DIR%\FV\Efildr16\r
e88f3056 58@copy /b %BOOTSECTOR_BIN_DIR%\St32_64.com+%BOOTSECTOR_BIN_DIR%\Efi64.com2+%BUILD_DIR%\FV\Efildr64 %BUILD_DIR%\FV\Efildr20Pure\r
c5dfb477 59@%BASETOOLS_DIR%\GenPage.exe %BUILD_DIR%\FV\Efildr20Pure -o %BUILD_DIR%\FV\Efildr20\r
60@goto end\r
61\r
62\r
c5dfb477 63:WrongArch\r
64@echo Error! Wrong architecture.\r
65@goto Help\r
66\r
67:Help\r
68@echo Usage: "PostBuild [IA32|X64]"\r
69:end