X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=DuetPkg%2FPostBuild.bat;h=bdcafb864ffccf17c1005b53d1c754974a4457cd;hb=1bb6bfaa082be625512297a3250be58e2f999341;hp=4ef56c984fa96e9c14cc3f07f6f32ce48dc78e0a;hpb=c4ae2792f250bce176cf68ecdd64d4bf246c3fb0;p=mirror_edk2.git diff --git a/DuetPkg/PostBuild.bat b/DuetPkg/PostBuild.bat index 4ef56c984f..bdcafb864f 100644 --- a/DuetPkg/PostBuild.bat +++ b/DuetPkg/PostBuild.bat @@ -4,7 +4,7 @@ @REM # and platform building, so just use a bat file to do post build commands. @REM # Originally, following post building command is for EfiLoader module. @REM # -@REM # Copyright (c) 2010 Intel Corporation. All rights reserved.
+@REM # Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.
@REM # @REM # This program and the accompanying materials @REM # are licensed and made available under the terms and conditions of the BSD License @@ -16,16 +16,19 @@ @REM # @REM ## -@set BUILD_DIR=%WORKSPACE%\Build\DuetPkg\DEBUG_MYTOOLS @set BASETOOLS_DIR=%WORKSPACE_TOOLS_PATH%\Bin\Win32 @set BOOTSECTOR_BIN_DIR=%WORKSPACE%\DuetPkg\BootSector\bin @set PROCESSOR="" +@call %WORKSPACE%\DuetPkg\GetVariables.bat -@if "%1"=="" goto NoArch -@if "%1"=="IA32" set PROCESSOR=IA32 -@if "%1"=="X64" set PROCESSOR=X64 +@if NOT "%1"=="" @set TARGET_ARCH=%1 +@if "%TARGET_ARCH%"=="IA32" set PROCESSOR=IA32 +@if "%TARGET_ARCH%"=="X64" set PROCESSOR=X64 @if %PROCESSOR%=="" goto WrongArch +@set BUILD_DIR=%WORKSPACE%\Build\DuetPkg%PROCESSOR%\%TARGET%_%TOOL_CHAIN_TAG% + + @echo Compressing DUETEFIMainFv.FV ... @%BASETOOLS_DIR%\LzmaCompress -e -o %BUILD_DIR%\FV\DUETEFIMAINFV.z %BUILD_DIR%\FV\DUETEFIMAINFV.Fv @@ -57,10 +60,6 @@ @goto end -:NoArch -@echo Error! Please specific the architecture. -@goto Help - :WrongArch @echo Error! Wrong architecture. @goto Help