forked from acidanthera/OpenCorePkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_oc.tool
executable file
·277 lines (245 loc) · 7 KB
/
build_oc.tool
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#!/bin/bash
buildutil() {
UTILS=(
"AppleEfiSignTool"
"ACPIe"
"EfiResTool"
"LogoutHook"
"acdtinfo"
"disklabel"
"icnspack"
"macserial"
"ocpasswordgen"
"ocvalidate"
"TestBmf"
"TestCpuFrequency"
"TestDiskImage"
"TestHelloWorld"
"TestImg4"
"TestKextInject"
"TestMacho"
"TestMp3"
"TestPeCoff"
"TestRsaPreprocess"
"TestSmbios"
)
if [ "$HAS_OPENSSL_BUILD" = "1" ]; then
UTILS+=("RsaTool")
fi
local cores
cores=$(getconf _NPROCESSORS_ONLN)
pushd "${selfdir}/Utilities" || exit 1
for util in "${UTILS[@]}"; do
cd "$util" || exit 1
echo "Building ${util}..."
make clean || exit 1
make -j "$cores" || exit 1
#
# FIXME: Do not build RsaTool for Win32 without OpenSSL.
#
if [ "$util" = "RsaTool" ] && [ "$HAS_OPENSSL_W32BUILD" != "1" ]; then
continue
fi
if [ "$(which i686-w64-mingw32-gcc)" != "" ]; then
echo "Building ${util} for Windows..."
UDK_ARCH=Ia32 CC=i686-w64-mingw32-gcc STRIP=i686-w64-mingw32-strip DIST=Windows make clean || exit 1
UDK_ARCH=Ia32 CC=i686-w64-mingw32-gcc STRIP=i686-w64-mingw32-strip DIST=Windows make -j "$cores" || exit 1
fi
if [ "$(which x86_64-linux-musl-gcc)" != "" ]; then
echo "Building ${util} for Linux..."
STATIC=1 SUFFIX=.linux UDK_ARCH=X64 CC=x86_64-linux-musl-gcc STRIP=x86_64-linux-musl-strip DIST=Linux make clean || exit 1
STATIC=1 SUFFIX=.linux UDK_ARCH=X64 CC=x86_64-linux-musl-gcc STRIP=x86_64-linux-musl-strip DIST=Linux make -j "$cores" || exit 1
fi
cd - || exit 1
done
popd || exit
}
package() {
if [ ! -d "$1" ]; then
echo "Missing package directory $1"
exit 1
fi
local ver
ver=$(grep OPEN_CORE_VERSION ./Include/Acidanthera/Library/OcMainLib.h | sed 's/.*"\(.*\)".*/\1/' | grep -E '^[0-9.]+$')
if [ "$ver" = "" ]; then
echo "Invalid version $ver"
ver="UNKNOWN"
fi
selfdir=$(pwd)
pushd "$1" || exit 1
rm -rf tmp || exit 1
dirs=(
"tmp/Docs/AcpiSamples"
"tmp/Utilities"
)
for dir in "${dirs[@]}"; do
mkdir -p "${dir}" || exit 1
done
efidirs=(
"EFI/BOOT"
"EFI/OC/ACPI"
"EFI/OC/Drivers"
"EFI/OC/Kexts"
"EFI/OC/Tools"
"EFI/OC/Resources/Audio"
"EFI/OC/Resources/Font"
"EFI/OC/Resources/Image"
"EFI/OC/Resources/Label"
)
# Switch to parent architecture directory (i.e. Build/X64 -> Build).
local dstdir
dstdir="$(pwd)/tmp"
pushd .. || exit 1
for arch in "${ARCHS[@]}"; do
for dir in "${efidirs[@]}"; do
mkdir -p "${dstdir}/${arch}/${dir}" || exit 1
done
# Mark binaries to be recognisable by OcBootManagementLib.
bootsig="${selfdir}/Library/OcBootManagementLib/BootSignature.bin"
efiOCBMs=(
"Bootstrap.efi"
"OpenCore.efi"
)
for efiOCBM in "${efiOCBMs[@]}"; do
dd if="${bootsig}" \
of="${arch}/${efiOCBM}" seek=64 bs=1 count=64 conv=notrunc || exit 1
done
# copy OpenCore main program.
cp "${arch}/OpenCore.efi" "${dstdir}/${arch}/EFI/OC" || exit 1
local suffix="${arch}"
if [ "${suffix}" = "X64" ]; then
suffix="x64"
fi
cp "${arch}/Bootstrap.efi" "${dstdir}/${arch}/EFI/BOOT/BOOT${suffix}.efi" || exit 1
efiTools=(
"BootKicker.efi"
"ChipTune.efi"
"CleanNvram.efi"
"GopStop.efi"
"KeyTester.efi"
"MmapDump.efi"
"ResetSystem.efi"
"RtcRw.efi"
"OpenControl.efi"
"ControlMsrE2.efi"
)
for efiTool in "${efiTools[@]}"; do
cp "${arch}/${efiTool}" "${dstdir}/${arch}/EFI/OC/Tools"/ || exit 1
done
# Special case: OpenShell.efi
cp "${arch}/Shell.efi" "${dstdir}/${arch}/EFI/OC/Tools/OpenShell.efi" || exit 1
efiDrivers=(
"HiiDatabase.efi"
"NvmExpressDxe.efi"
"AudioDxe.efi"
"CrScreenshotDxe.efi"
"OpenCanopy.efi"
"OpenPartitionDxe.efi"
"OpenRuntime.efi"
"OpenUsbKbDxe.efi"
"Ps2MouseDxe.efi"
"Ps2KeyboardDxe.efi"
"UsbMouseDxe.efi"
"OpenHfsPlus.efi"
"XhciDxe.efi"
)
for efiDriver in "${efiDrivers[@]}"; do
cp "${arch}/${efiDriver}" "${dstdir}/${arch}/EFI/OC/Drivers"/ || exit 1
done
done
docs=(
"Configuration.pdf"
"Differences/Differences.pdf"
"Sample.plist"
"SampleCustom.plist"
)
for doc in "${docs[@]}"; do
cp "${selfdir}/Docs/${doc}" "${dstdir}/Docs"/ || exit 1
done
cp "${selfdir}/Changelog.md" "${dstdir}/Docs"/ || exit 1
cp -r "${selfdir}/Docs/AcpiSamples/"* "${dstdir}/Docs/AcpiSamples"/ || exit 1
mkdir -p "${dstdir}/Docs/AcpiSamples/Binaries" || exit 1
cd "${dstdir}/Docs/AcpiSamples/Source" || exit 1
for i in *.dsl ; do
iasl "$i" || exit 1
done
mv ./*.aml "${dstdir}/Docs/AcpiSamples/Binaries" || exit 1
cd - || exit 1
utilScpts=(
"LegacyBoot"
"CreateVault"
"macrecovery"
"kpdescribe"
)
for utilScpt in "${utilScpts[@]}"; do
cp -r "${selfdir}/Utilities/${utilScpt}" "${dstdir}/Utilities"/ || exit 1
done
buildutil || exit 1
# Copy LogoutHook.
mkdir -p "${dstdir}/Utilities/LogoutHook" || exit 1
logoutFiles=(
"LogoutHook.command"
"README.md"
"nvramdump"
)
for file in "${logoutFiles[@]}"; do
cp "${selfdir}/Utilities/LogoutHook/${file}" "${dstdir}/Utilities/LogoutHook"/ || exit 1
done
# Copy OpenDuetPkg booter.
for arch in "${ARCHS[@]}"; do
local tgt
local booter
tgt="$(basename "$(pwd)")"
booter="$(pwd)/../../OpenDuetPkg/${tgt}/${arch}/boot"
if [ -f "${booter}" ]; then
echo "Copying OpenDuetPkg boot file from ${booter}..."
cp "${booter}" "${dstdir}/Utilities/LegacyBoot/boot${arch}" || exit 1
else
echo "Failed to find OpenDuetPkg at ${booter}!"
fi
done
utils=(
"ACPIe"
"acdtinfo"
"macserial"
"ocpasswordgen"
"ocvalidate"
"disklabel"
"icnspack"
)
for util in "${utils[@]}"; do
dest="${dstdir}/Utilities/${util}"
mkdir -p "${dest}" || exit 1
bin="${selfdir}/Utilities/${util}/${util}"
cp "${bin}" "${dest}" || exit 1
if [ -f "${bin}.exe" ]; then
cp "${bin}.exe" "${dest}" || exit 1
fi
if [ -f "${bin}.linux" ]; then
cp "${bin}.linux" "${dest}" || exit 1
fi
done
# additional docs for macserial.
cp "${selfdir}/Utilities/macserial/FORMAT.md" "${dstdir}/Utilities/macserial"/ || exit 1
cp "${selfdir}/Utilities/macserial/README.md" "${dstdir}/Utilities/macserial"/ || exit 1
# additional docs for ocvalidate.
cp "${selfdir}/Utilities/ocvalidate/README.md" "${dstdir}/Utilities/ocvalidate"/ || exit 1
pushd "${dstdir}" || exit 1
zip -qr -FS ../"OpenCore-${ver}-${2}.zip" ./* || exit 1
popd || exit 1
rm -rf "${dstdir}" || exit 1
popd || exit 1
popd || exit 1
}
cd "$(dirname "$0")" || exit 1
if [ "$ARCHS" = "" ]; then
ARCHS=(X64 IA32)
export ARCHS
fi
SELFPKG=OpenCorePkg
NO_ARCHIVES=0
export SELFPKG
export NO_ARCHIVES
src=$(curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/efibuild.sh) && eval "$src" || exit 1
cd Library/OcConfigurationLib || exit 1
./CheckSchema.py OcConfigurationLib.c || exit 1