]> git.proxmox.com Git - mirror_edk2.git/blob - BeagleBoardPkg/b.bat
Update input of disasmembler to support IfThen construct. Add prototype dos script...
[mirror_edk2.git] / BeagleBoardPkg / b.bat
1 @REM Copyright (c) 2008 - 2010, Apple, Inc. All rights reserved.
2 @REM All rights reserved. This program and the accompanying materials
3 @REM are licensed and made available under the terms and conditions of the BSD License
4 @REM which accompanies this distribution. The full text of the license may be found at
5 @REM http://opensource.org/licenses/bsd-license.php
6 @REM
7 @REM THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
8 @REM WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
9 @REM
10
11 @REM Example usage of this script. default is a DEBUG build
12 @REM b
13 @REM b clean
14 @REM b release
15 @REM b release clean
16 @REM b -v -y build.log
17
18
19 CALL ..\edksetup.bat
20 SET TARGET_TOOLS=RVCT31
21 SET TARGET=DEBUG
22
23 @if /I "%1"=="RELEASE" (
24 SET TARGET=RELEASE
25 shift /1
26 )
27
28 SET BUILD_ROOT=%WORKSPACE%\Build\BeagleBoard\%TARGET%_%TARGET_TOOLS%
29 BUILD_ROOT=$WORKSPACE/Build/BeagleBoard/"$TARGET"_"$TARGET_TOOLS"
30
31 CALL build -p BeagleBoardPkg\BeagleBoardPkg.dsc -a ARM -t RVCT31 -b %TARGET% %1 %2 %3 %4 %5 %6 %7 %8
32
33 @if /I "%1"=="CLEAN" goto Clean
34
35 @REM
36 @REM Ram starts at 0x80000000
37 @REM OMAP 3530 TRM defines 0x80008208 as the entry point
38 @REM The reset vector is caught by the mask ROM in the OMAP 3530 so that is why this entry
39 @REM point looks so strange.
40 @REM OMAP 3430 TRM section 26.4.8 has Image header information. (missing in OMAP 3530 TRM)
41 @REM
42 cd Tools
43
44 ECHO Building tools...
45 CALL nmake
46
47 ECHO Patching image with ConfigurationHeader.dat
48 CALL GenerateImage -D ConfigurationHeader.dat -E 0x80008208 -I ../../Build/FV/BEAGLEBOARD_EFI.fd -O ../../Build/FV/BeagleBoard_EFI_flashboot.fd
49
50 ECHO Patching ..\Debugger_scripts ...
51 SET DEBUGGER_SCRIPT=..\Debugger_scripts
52 for /f %%a IN ('dir /b %DEBUGGER_SCRIPT%\*.inc %DEBUGGER_SCRIPT%\*.cmm') do (
53 CALL replace %DEBUGGER_SCRIPT%\%%a %BUILD_ROOT%\%%a ZZZZZZ %BUILD_ROOT% WWWWWW %WORKSPACE%
54 )
55
56 cd ..
57 EXIT /B
58
59 :Clean
60 cd Tools
61 CALL nmake clean
62 cd ..