]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - DuetPkg/PostBuild.sh
MdeModulePkg/UsbMass: Revert changes of removing retry logic
[mirror_edk2.git] / DuetPkg / PostBuild.sh
... / ...
CommitLineData
1#!/bin/sh
2
3## @file
4#
5# Currently, Build system does not provide post build mechanism for module
6# and platform building, so just use a sh file to do post build commands.
7# Originally, following post building command is for EfiLoader module.
8#
9# Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.<BR>
10#
11# This program and the accompanying materials
12# are licensed and made available under the terms and conditions of the BSD License
13# which accompanies this distribution. The full text of the license may be found at
14# http://opensource.org/licenses/bsd-license.php
15# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17#
18##
19
20if [ -z "$EDK_TOOLS_PATH" ]
21then
22export BASETOOLS_DIR=$WORKSPACE/Conf/BaseToolsSource/Source/C/bin
23else
24export BASETOOLS_DIR=$EDK_TOOLS_PATH/Source/C/bin
25fi
26
27export BOOTSECTOR_BIN_DIR=$WORKSPACE/DuetPkg/BootSector/bin
28export PROCESSOR=""
29if [ \
30 -z "$1" -o \
31 "$1" = "-?" -o \
32 "$1" = "-h" -o \
33 "$1" = "--help" \
34 ]
35then
36 echo Error! Please specific the architecture.
37 echo Usage: "./PostBuild.sh [IA32|X64] [UNIXGCC|GCC44]"
38fi
39
40case "$1" in
41 IA32)
42 export PROCESSOR=IA32
43 ;;
44 X64)
45 export PROCESSOR=X64
46 ;;
47 *)
48 echo Invalid Architecture string, should be only IA32 or X64
49 return 1
50esac
51
52case "$2" in
53 UNIXGCC)
54 export TOOLTAG=UNIXGCC
55 ;;
56 GCC4*)
57 export TOOLTAG=$2
58 ;;
59 *)
60 echo Invalid tool tag, should be only UNIXGCC or GCC4\*
61 return 1
62esac
63
64export BUILD_DIR=$WORKSPACE/Build/DuetPkg$PROCESSOR/DEBUG_$TOOLTAG
65
66
67#
68# Boot sector module could only be built under IA32 tool chain
69#
70
71echo Compressing DUETEFIMainFv.FV ...
72$BASETOOLS_DIR/LzmaCompress -e -o $BUILD_DIR/FV/DUETEFIMAINFV.z $BUILD_DIR/FV/DUETEFIMAINFV.Fv
73
74echo Compressing DxeMain.efi ...
75$BASETOOLS_DIR/LzmaCompress -e -o $BUILD_DIR/FV/DxeMain.z $BUILD_DIR/$PROCESSOR/DxeCore.efi
76
77echo Compressing DxeIpl.efi ...
78$BASETOOLS_DIR/LzmaCompress -e -o $BUILD_DIR/FV/DxeIpl.z $BUILD_DIR/$PROCESSOR/DxeIpl.efi
79
80echo Generate Loader Image ...
81
82if [ $PROCESSOR = IA32 ]
83then
84 $BASETOOLS_DIR/GenFw --rebase 0x10000 -o $BUILD_DIR/$PROCESSOR/EfiLoader.efi $BUILD_DIR/$PROCESSOR/EfiLoader.efi
85 $BASETOOLS_DIR/EfiLdrImage -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
86 cat $BOOTSECTOR_BIN_DIR/Start.com $BOOTSECTOR_BIN_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32 > $BUILD_DIR/FV/Efildr
87 #
88 # It is safe to use "bcat" to cat following binary file, if bcat command is avaiable for your system
89 #
90 #bcat -o $BUILD_DIR/FV/Efildr.bcat $BOOTSECTOR_BIN_DIR/start.com $BOOTSECTOR_BIN_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32
91 cat $BOOTSECTOR_BIN_DIR/Start16.com $BOOTSECTOR_BIN_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32 > $BUILD_DIR/FV/Efildr16
92 #bcat -o $BUILD_DIR/FV/Efildr16.bcat $BOOTSECTOR_BIN_DIR/start16.com $BOOTSECTOR_BIN_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32
93 cat $BOOTSECTOR_BIN_DIR/Start32.com $BOOTSECTOR_BIN_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32 > $BUILD_DIR/FV/Efildr20
94 #bcat -o $BUILD_DIR/FV/Efildr20.bcat $BOOTSECTOR_BIN_DIR/start32.com $BOOTSECTOR_BIN_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32
95 echo Done!
96fi
97
98if [ $PROCESSOR = X64 ]
99then
100 $BASETOOLS_DIR/GenFw --rebase 0x10000 -o $BUILD_DIR/$PROCESSOR/EfiLoader.efi $BUILD_DIR/$PROCESSOR/EfiLoader.efi
101 $BASETOOLS_DIR/EfiLdrImage -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
102 cat $BOOTSECTOR_BIN_DIR/Start64.com $BOOTSECTOR_BIN_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/EfildrPure
103 #bcat -o $BUILD_DIR/FV/EfildrPure $BOOTSECTOR_BIN_DIR/start64.com $BOOTSECTOR_BIN_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64
104 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/EfildrPure -o $BUILD_DIR/FV/Efildr
105 cat $BOOTSECTOR_BIN_DIR/St16_64.com $BOOTSECTOR_BIN_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/Efildr16Pure
106 #bcat -o $BUILD_DIR/FV/Efildr16Pure $BOOTSECTOR_BIN_DIR/st16_64.com $BOOTSECTOR_BIN_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64
107 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/Efildr16Pure -o $BUILD_DIR/FV/Efildr16
108 cat $BOOTSECTOR_BIN_DIR/St32_64.com $BOOTSECTOR_BIN_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/Efildr20Pure
109 #bcat -o $BUILD_DIR/FV/Efildr20Pure $BOOTSECTOR_BIN_DIR/st32_64.com $BOOTSECTOR_BIN_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64
110 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/Efildr20Pure -o $BUILD_DIR/FV/Efildr20
111
112 echo Done!
113fi
114
115