]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - DuetPkg/PostBuild.sh
Update TargetTools for add set/get/clean BUILD_RULE_CONF option for target.txt file.
[mirror_edk2.git] / DuetPkg / PostBuild.sh
... / ...
CommitLineData
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
9export BUILD_DIR=$WORKSPACE/Build/DuetPkg/DEBUG_UNIXGCC
10export BASETOOLS_DIR=$WORKSPACE/Conf/BaseToolsSource/Source/C/bin
11export PROCESSOR=""
12if [ \
13 -z "$1" -o \
14 "$1" = "-?" -o \
15 "$1" = "-h" -o \
16 "$1" = "--help" \
17 ]
18then
19 echo Error! Please specific the architecture.
20 echo Usage: "./PostBuild.sh [IA32|X64]"
21fi
22
23case "$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 return 1
33esac
34
35#
36# Boot sector module could only be built under IA32 tool chain
37#
38export OUTPUT_DIR=$BUILD_DIR/IA32/DuetPkg/BootSector/BootSector/OUTPUT
39
40echo Compressing DUETEFIMainFv.FV ...
41$BASETOOLS_DIR/LzmaCompress -e -o $BUILD_DIR/FV/DUETEFIMAINFV.z $BUILD_DIR/FV/DUETEFIMAINFV.Fv
42
43echo Compressing DxeMain.efi ...
44$BASETOOLS_DIR/LzmaCompress -e -o $BUILD_DIR/FV/DxeMain.z $BUILD_DIR/$PROCESSOR/DxeCore.efi
45
46echo Compressing DxeIpl.efi ...
47$BASETOOLS_DIR/LzmaCompress -e -o $BUILD_DIR/FV/DxeIpl.z $BUILD_DIR/$PROCESSOR/DxeIpl.efi
48
49echo Generate Loader Image ...
50
51if [ $PROCESSOR = IA32 ]
52then
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 #
56 # It is safe to use "bcat" to cat following binary file, if bcat command is avaiable for your system
57 #
58 #bcat -o $BUILD_DIR/FV/Efildr.bcat $OUTPUT_DIR/start.com $OUTPUT_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32
59 cat $OUTPUT_DIR/start16.com $OUTPUT_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32 > $BUILD_DIR/FV/Efildr16
60 #bcat -o $BUILD_DIR/FV/Efildr16.bcat $OUTPUT_DIR/start16.com $OUTPUT_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32
61 cat $OUTPUT_DIR/start32.com $OUTPUT_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32 > $BUILD_DIR/FV/Efildr20
62 #bcat -o $BUILD_DIR/FV/Efildr20.bcat $OUTPUT_DIR/start32.com $OUTPUT_DIR/efi32.com2 $BUILD_DIR/FV/Efildr32
63 echo Done!
64fi
65
66if [ $PROCESSOR = X64 ]
67then
68 $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
69 cat $OUTPUT_DIR/start64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/EfildrPure
70 #bcat -o $BUILD_DIR/FV/EfildrPure $OUTPUT_DIR/start64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64
71 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/EfildrPure -o $BUILD_DIR/FV/Efildr
72 cat $OUTPUT_DIR/st16_64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/Efildr16Pure
73 #bcat -o $BUILD_DIR/FV/Efildr16Pure $OUTPUT_DIR/st16_64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64
74 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/Efildr16Pure -o $BUILD_DIR/FV/Efildr16
75 cat $OUTPUT_DIR/st32_64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64 > $BUILD_DIR/FV/Efildr20Pure
76 #bcat -o $BUILD_DIR/FV/Efildr20Pure $OUTPUT_DIR/st32_64.com $OUTPUT_DIR/efi64.com2 $BUILD_DIR/FV/Efildr64
77 $BASETOOLS_DIR/GenPage $BUILD_DIR/FV/Efildr20Pure -o $BUILD_DIR/FV/Efildr20
78
79 echo Done!
80fi
81
82