]> git.proxmox.com Git - mirror_edk2.git/blob - DuetPkg/PostBuild.sh
Final boot image just need combination, no need to create directory
[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 fi
21
22 case "$1" in
23 IA32)
24 export PROCESSOR=IA32
25 ;;
26 X64)
27 export PROCESSOR=X64
28 ;;
29 *)
30 echo Invalid Architecture string, should be only IA32 or X64
31 esac
32
33 #
34 # Boot sector module could only be built under IA32 tool chain
35 #
36 export OUTPUT_DIR=$BUILD_DIR/IA32/DuetPkg/BootSector/BootSector/OUTPUT
37
38 echo Compressing DUETEFIMainFv.FV ...
39 $BASETOOLS_DIR/TianoCompress -e -o $BUILD_DIR/FV/DUETEFIMAINFV.z $BUILD_DIR/FV/DUETEFIMAINFV.Fv
40
41 echo Compressing DxeMain.efi ...
42 $BASETOOLS_DIR/TianoCompress -e -o $BUILD_DIR/FV/DxeMain.z $BUILD_DIR/$PROCESSOR/DxeCore.efi
43
44 echo Compressing DxeIpl.efi ...
45 $BASETOOLS_DIR/TianoCompress -e -o $BUILD_DIR/FV/DxeIpl.z $BUILD_DIR/$PROCESSOR/DxeIpl.efi
46
47 echo Generate Loader Image ...
48
49 if [ $PROCESSOR = IA32 ]
50 then
51 $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
52 cat $OUTPUT_DIR/start.com $OUTPUT_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32 > $BUILD_DIR/FV/Efildr
53 cat $OUTPUT_DIR/start16.com $OUTPUT_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32 > $BUILD_DIR/FV/Efildr16
54 cat $OUTPUT_DIR/start32.com $OUTPUT_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32 > $BUILD_DIR/FV/Efildr20
55 echo Done!
56 fi
57
58 if [ $PROCESSOR = X64 ]
59 then
60 $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
61 cat $OUTPUT_DIR/start64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/EfildrPure
62 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/EfildrPure -o $BUILD_DIR/FV/Efildr
63 cat $OUTPUT_DIR/st16_64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/Efildr16Pure
64 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/Efildr16Pure -o $BUILD_DIR/FV/Efildr16
65 cat $OUTPUT_DIR/st32_64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/Efildr20Pure
66 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/Efildr20Pure -o $BUILD_DIR/FV/Efildr20
67
68 echo Done!
69 fi
70