]> git.proxmox.com Git - mirror_edk2.git/blob - DuetPkg/PostBuild.sh
Update PostBuild.sh
[mirror_edk2.git] / DuetPkg / PostBuild.sh
1 #!/bin/sh
2
3 #
4 # Currently, Build system does not provide post build mechanism for module
5 # and platform building, so just use a sh file to do post build commands.
6 # Originally, following post building command is for EfiLoader module.
7 #
8 export BUILD_DIR=$WORKSPACE/Build/DuetPkg/DEBUG_UNIXGCC
9 export BASETOOLS_DIR=$WORKSPACE/Conf/BaseToolsSource/Source/C/bin
10 export PROCESSOR=""
11 if [ \
12 -z "$1" -o \
13 "$1" = "-?" -o \
14 "$1" = "-h" -o \
15 "$1" = "--help" \
16 ]
17 then
18 echo Error! Please specific the architecture.
19 echo Usage: "./PostBuild.sh [IA32|X64]"
20 exit 1
21 fi
22
23 case "$1" in
24 IA32)
25 export PROCESSOR=IA32
26 ;;
27 X64)
28 export PROCESSOR=X64
29 ;;
30 *)
31 echo Invalid Architecture string, should be only IA32 or X64
32 exit 1
33 esac
34
35 #
36 # Boot sector module could only be built under IA32 tool chain
37 #
38 export OUTPUT_DIR=$BUILD_DIR/IA32/DuetPkg/BootSector/BootSector/OUTPUT
39
40 echo Compressing DUETEFIMainFv.FV ...
41 $BASETOOLS_DIR/TianoCompress -e -o $BUILD_DIR/FV/DUETEFIMAINFV.z $BUILD_DIR/FV/DUETEFIMAINFV.Fv
42
43 echo Compressing DxeMain.efi ...
44 $BASETOOLS_DIR/TianoCompress -e -o $BUILD_DIR/FV/DxeMain.z $BUILD_DIR/$PROCESSOR/DxeCore.efi
45
46 echo Compressing DxeIpl.efi ...
47 $BASETOOLS_DIR/TianoCompress -e -o $BUILD_DIR/FV/DxeIpl.z $BUILD_DIR/$PROCESSOR/DxeIpl.efi
48
49 echo Generate Loader Image ...
50
51 if [ $PROCESSOR = IA32 ]
52 then
53 $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
54 cat $OUTPUT_DIR/start.com $OUTPUT_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32 > $BUILD_DIR/FV/Efildr
55 cat $OUTPUT_DIR/start16.com $OUTPUT_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32 > $BUILD_DIR/FV/Efildr16
56 cat $OUTPUT_DIR/start32.com $OUTPUT_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32 > $BUILD_DIR/FV/Efildr20
57 echo Done!
58 fi
59
60 if [ $PROCESSOR = X64 ]
61 then
62 $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
63 mkdir -p $BUILD_DIR/FV/EfildrPure
64 mkdir -p $BUILD_DIR/FV/Efildr16Pure
65 mkdir -p $BUILD_DIR/FV/Efildr20Pure
66
67 cat $OUTPUT_DIR/start64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/EfildrPure
68 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/EfildrPure -o $BUILD_DIR/FV/Efildr
69 cat $OUTPUT_DIR/st16_64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/Efildr16Pure
70 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/Efildr16Pure -o $BUILD_DIR/FV/Efildr16
71 cat $OUTPUT_DIR/st32_64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/Efildr20Pure
72 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/Efildr20Pure -o $BUILD_DIR/FV/Efildr20
73
74 echo Done!
75 fi
76
77 exit 0