]>
Commit | Line | Data |
---|---|---|
536d2173 LE |
1 | # Makefile for building firmware binaries and variable store templates for a |
2 | # number of virtual platforms in edk2. | |
3 | # | |
4 | # Copyright (C) 2019 Red Hat, Inc. | |
5 | # | |
6 | # This program and the accompanying materials are licensed and made available | |
7 | # under the terms and conditions of the BSD License that accompanies this | |
8 | # distribution. The full text of the license may be found at | |
9 | # <http://opensource.org/licenses/bsd-license.php>. | |
10 | # | |
11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT | |
12 | # WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. | |
13 | ||
14 | SHELL = /bin/bash | |
15 | ||
16 | toolchain = $(shell source ./edk2-funcs.sh && qemu_edk2_get_toolchain $(1)) | |
17 | ||
18 | licenses := \ | |
19 | edk2/License.txt \ | |
20 | edk2/OvmfPkg/License.txt \ | |
21 | edk2/CryptoPkg/Library/OpensslLib/openssl/LICENSE | |
22 | ||
23 | # The "edk2-arm-vars.fd" varstore template is suitable for aarch64 as well. | |
24 | # Similarly, the "edk2-i386-vars.fd" varstore template is suitable for x86_64 | |
25 | # as well, independently of "secure" too. | |
26 | flashdevs := \ | |
27 | aarch64-code \ | |
28 | arm-code \ | |
29 | i386-code \ | |
30 | i386-secure-code \ | |
31 | x86_64-code \ | |
32 | x86_64-secure-code \ | |
33 | \ | |
34 | arm-vars \ | |
35 | i386-vars | |
36 | ||
37 | all: $(foreach flashdev,$(flashdevs),../pc-bios/edk2-$(flashdev).fd.bz2) \ | |
38 | ../pc-bios/edk2-licenses.txt | |
39 | ||
40 | ../pc-bios/edk2-%.fd.bz2: ../pc-bios/edk2-%.fd | |
41 | bzip2 -9 -c $< > $@ | |
42 | ||
43 | # When the build completes, we need not keep the uncompressed flash device | |
44 | # files. | |
45 | .INTERMEDIATE: $(foreach flashdev,$(flashdevs),../pc-bios/edk2-$(flashdev).fd) | |
46 | ||
47 | submodules: | |
48 | cd edk2 && git submodule update --init --force | |
49 | ||
50 | # See notes on the ".NOTPARALLEL" target and the "+" indicator in | |
51 | # "tests/uefi-test-tools/Makefile". | |
52 | .NOTPARALLEL: | |
53 | ||
54 | ../pc-bios/edk2-aarch64-code.fd: submodules | |
55 | +./edk2-build.sh \ | |
56 | aarch64 \ | |
57 | --arch=AARCH64 \ | |
58 | --platform=ArmVirtPkg/ArmVirtQemu.dsc \ | |
59 | -D NETWORK_IP6_ENABLE \ | |
60 | -D HTTP_BOOT_ENABLE | |
61 | cp edk2/Build/ArmVirtQemu-AARCH64/DEBUG_$(call toolchain,aarch64)/FV/QEMU_EFI.fd \ | |
62 | $@ | |
63 | truncate --size=64M $@ | |
64 | ||
65 | ../pc-bios/edk2-arm-code.fd: submodules | |
66 | +./edk2-build.sh \ | |
67 | arm \ | |
68 | --arch=ARM \ | |
69 | --platform=ArmVirtPkg/ArmVirtQemu.dsc \ | |
70 | -D NETWORK_IP6_ENABLE \ | |
71 | -D HTTP_BOOT_ENABLE | |
72 | cp edk2/Build/ArmVirtQemu-ARM/DEBUG_$(call toolchain,arm)/FV/QEMU_EFI.fd \ | |
73 | $@ | |
74 | truncate --size=64M $@ | |
75 | ||
76 | ../pc-bios/edk2-i386-code.fd: submodules | |
77 | +./edk2-build.sh \ | |
78 | i386 \ | |
79 | --arch=IA32 \ | |
80 | --platform=OvmfPkg/OvmfPkgIa32.dsc \ | |
81 | -D NETWORK_IP6_ENABLE \ | |
82 | -D HTTP_BOOT_ENABLE \ | |
83 | -D TLS_ENABLE \ | |
84 | -D TPM2_ENABLE \ | |
85 | -D TPM2_CONFIG_ENABLE | |
86 | cp edk2/Build/OvmfIa32/DEBUG_$(call toolchain,i386)/FV/OVMF_CODE.fd $@ | |
87 | ||
88 | ../pc-bios/edk2-i386-secure-code.fd: submodules | |
89 | +./edk2-build.sh \ | |
90 | i386 \ | |
91 | --arch=IA32 \ | |
92 | --platform=OvmfPkg/OvmfPkgIa32.dsc \ | |
93 | -D NETWORK_IP6_ENABLE \ | |
94 | -D HTTP_BOOT_ENABLE \ | |
95 | -D TLS_ENABLE \ | |
96 | -D TPM2_ENABLE \ | |
97 | -D TPM2_CONFIG_ENABLE \ | |
98 | -D SECURE_BOOT_ENABLE \ | |
99 | -D SMM_REQUIRE | |
100 | cp edk2/Build/OvmfIa32/DEBUG_$(call toolchain,i386)/FV/OVMF_CODE.fd $@ | |
101 | ||
102 | ../pc-bios/edk2-x86_64-code.fd: submodules | |
103 | +./edk2-build.sh \ | |
104 | x86_64 \ | |
105 | --arch=X64 \ | |
106 | --platform=OvmfPkg/OvmfPkgX64.dsc \ | |
107 | -D NETWORK_IP6_ENABLE \ | |
108 | -D HTTP_BOOT_ENABLE \ | |
109 | -D TLS_ENABLE \ | |
110 | -D TPM2_ENABLE \ | |
111 | -D TPM2_CONFIG_ENABLE | |
112 | cp edk2/Build/OvmfX64/DEBUG_$(call toolchain,x86_64)/FV/OVMF_CODE.fd $@ | |
113 | ||
114 | ../pc-bios/edk2-x86_64-secure-code.fd: submodules | |
115 | +./edk2-build.sh \ | |
116 | x86_64 \ | |
117 | --arch=IA32 \ | |
118 | --arch=X64 \ | |
119 | --platform=OvmfPkg/OvmfPkgIa32X64.dsc \ | |
120 | -D NETWORK_IP6_ENABLE \ | |
121 | -D HTTP_BOOT_ENABLE \ | |
122 | -D TLS_ENABLE \ | |
123 | -D TPM2_ENABLE \ | |
124 | -D TPM2_CONFIG_ENABLE \ | |
125 | -D SECURE_BOOT_ENABLE \ | |
126 | -D SMM_REQUIRE | |
127 | cp edk2/Build/Ovmf3264/DEBUG_$(call toolchain,x86_64)/FV/OVMF_CODE.fd $@ | |
128 | ||
129 | ../pc-bios/edk2-arm-vars.fd: ../pc-bios/edk2-arm-code.fd | |
130 | cp edk2/Build/ArmVirtQemu-ARM/DEBUG_$(call toolchain,arm)/FV/QEMU_VARS.fd \ | |
131 | $@ | |
132 | truncate --size=64M $@ | |
133 | ||
134 | ../pc-bios/edk2-i386-vars.fd: ../pc-bios/edk2-i386-code.fd | |
135 | cp edk2/Build/OvmfIa32/DEBUG_$(call toolchain,i386)/FV/OVMF_VARS.fd $@ | |
136 | ||
137 | # The license file accumulates several individual licenses from under edk2, | |
138 | # prefixing each individual license with a header (generated by "tail") that | |
139 | # states its pathname. | |
140 | ../pc-bios/edk2-licenses.txt: submodules | |
141 | tail -n $(shell cat $(licenses) | wc -l) $(licenses) > $@ | |
142 | dos2unix $@ | |
143 | ||
144 | clean: | |
145 | rm -rf edk2/Build | |
146 | cd edk2/Conf && \ | |
147 | rm -rf .cache BuildEnv.sh build_rule.txt target.txt \ | |
148 | tools_def.txt |