]> git.proxmox.com Git - mirror_edk2.git/blob - DuetPkg/PostBuild.sh
f032de3a9de4f092a2daaf7d2d01bbba802206c3
[mirror_edk2.git] / DuetPkg / PostBuild.sh
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
20 if [ -z "$EDK_TOOLS_PATH" ]
21 then
22 export BASETOOLS_DIR=$WORKSPACE/Conf/BaseToolsSource/Source/C/bin
23 else
24 export BASETOOLS_DIR=$EDK_TOOLS_PATH/Source/C/bin
25 fi
26
27 export BOOTSECTOR_BIN_DIR=$WORKSPACE/DuetPkg/BootSector/bin
28 export PROCESSOR=""
29 if [ \
30 -z "$1" -o \
31 "$1" = "-?" -o \
32 "$1" = "-h" -o \
33 "$1" = "--help" \
34 ]
35 then
36 echo Error! Please specific the architecture.
37 echo Usage: "./PostBuild.sh [IA32|X64] [UNIXGCC|GCC44]"
38 fi
39
40 case "$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
50 esac
51
52 case "$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
62 esac
63
64 export 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
71 echo Compressing DUETEFIMainFv.FV ...
72 $BASETOOLS_DIR/LzmaCompress -e -o $BUILD_DIR/FV/DUETEFIMAINFV.z $BUILD_DIR/FV/DUETEFIMAINFV.Fv
73
74 echo Compressing DxeMain.efi ...
75 $BASETOOLS_DIR/LzmaCompress -e -o $BUILD_DIR/FV/DxeMain.z $BUILD_DIR/$PROCESSOR/DxeCore.efi
76
77 echo Compressing DxeIpl.efi ...
78 $BASETOOLS_DIR/LzmaCompress -e -o $BUILD_DIR/FV/DxeIpl.z $BUILD_DIR/$PROCESSOR/DxeIpl.efi
79
80 echo Generate Loader Image ...
81
82 if [ $PROCESSOR = IA32 ]
83 then
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!
96 fi
97
98 if [ $PROCESSOR = X64 ]
99 then
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!
113 fi
114
115