-
-
Notifications
You must be signed in to change notification settings - Fork 289
/
build_all.sh
executable file
·360 lines (331 loc) · 10.4 KB
/
build_all.sh
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
#!/bin/bash
#
# Lakka build script
#
# This script builds images for all supported platforms/target devices listed in
# the 'targets' variable.
#
# By default (./build_all.sh) it starts in dashboard mode, showing a dashboard
# with the current status of the build job and not bailing out after unsuccessful
# build job (tries to build all targets in one run and then show failed targets
# at the end).
#
# To run in log mode:
# $ DASHBOARD_MODE=off ./build_all.sh
# Or instead of 'off' you can use any other value, e. g. 'foo', except 'yes'
#
# To bail out after first failure:
# $ BAILOUT_FAILED=yes ./build_all.sh
# or instead of 'yes' you can use any other value, e. g. 'bar', except 'no'
# by default start in dashboard mode
[ -z "${DASHBOARD_MODE}" ] && DASHBOARD_MODE="yes"
# trap CTRL+C in dashboard mode, as the build job runs in background, we have to tell the user to wait
[ "${DASHBOARD_MODE}" = "yes" ] && trap control_c_pressed INT
CONTROL_C_PRESSED=0
control_c_pressed() {
CONTROL_C_PRESSED=1
}
# by default do not bail out after failed build
[ -z "${BAILOUT_FAILED}" ] && BAILOUT_FAILED="no"
# by default reload dashboard / status file every 0.5 seconds
[ -z "${REFRESH_RATE}" ] && rr="0.5s" || rr="${REFRESH_RATE}"
# by default do not stop immediately when a build of a package fails, but finish building active packages
[ -z "${QUICKFAIL}" ] && qf="no" || qf="${QUICKFAIL}"
# number of buildthreads = two times number of cpu threads, unless specified otherwise
tc=""
bt=""
if [ -z "${THREADCOUNT}" ]
then
if [ -n "$(which nproc)" ]
then
bt=$(nproc)
fi
else
bt="${THREADCOUNT}"
fi
tc="THREADCOUNT=${bt}"
# set / unset verbose mode for some commands
[ "${DASHBOARD_MODE}" = "yes" ] && v="" || v="-v"
# remove any existing images / release files
check=$(ls target/ 2>/dev/null | wc -l)
if [ ${check} -gt 0 ]
then
echo -en "\nWARNING!!!\nThere are ${check} item(s) in target/, really remove them?\n(press y to confirm, anything else to abort) "
read -rn1 keypress
if [ "${keypress}" = "y" -o "${keypress}" = "Y" ]
then
echo -en "\nCleaning up target/ ... "
rm -rf target/
echo "done."
else
echo -e "\nAborted!"
exit
fi
fi
# list of targets/platforms in structure PROJECT|DEVICE|ARCH|make_rule
targets="\
Allwinner|A64|aarch64|image \
Allwinner|H2-plus|arm|image \
Allwinner|H3|arm|image \
Allwinner|H5|aarch64|image \
Allwinner|H6|aarch64|image \
Allwinner|H616|aarch64|image \
Allwinner|R40|arm|image \
Amlogic|AMLGX|aarch64|image \
Ayn|Odin|aarch64|image \
Generic|Generic|i386|image \
Generic|Generic|x86_64|image \
Generic|wayland|x86_64|image \
Generic|x11|x86_64|image \
L4T|Switch|aarch64|image \
NXP|iMX6|arm|image \
NXP|iMX8|aarch64|image \
Rockchip|RK3288|arm|image \
Rockchip|RK3328|aarch64|image \
Rockchip|RK3399|aarch64|image \
RPi|GPICase|arm|image \
RPi|Pi02GPi|arm|image \
RPi|RPi|arm|image \
RPi|RPi2|arm|image \
RPi|RPi3|aarch64|image \
RPi|RPi4|aarch64|image \
RPi|RPi4-PiBoyDmg|aarch64|image \
RPi|RPi4-RetroDreamer|aarch64|image \
RPi|RPi4-GPICase2|aarch64|image \
RPi|RPi5|aarch64|image \
RPi|RPiZero2-GPiCASE2W|aarch64|image \
Samsung|Exynos|arm|image \
"
# set the number of total build jobs and initialize counter for current build job
total=$(echo ${targets} | wc -w)
declare -i current=0
# initialize variables for list and count of failed builds and count of good jobs
failed_targets=""
declare -i failed_jobs=0
declare -i good_jobs=0
SKIP_ANNOUNCED=0
for target in ${targets}
do
current+=1
distro="Lakka"
IFS='|' read -r -a build <<< "${target}"
project=${build[0]}
device=${build[1]}
arch=${build[2]}
out=${build[3]}
target_name=${device:-$project}.${arch}
if [ ${SKIP_ANNOUNCED} -eq 1 ]
then
echo -e "\t${target_name}"
continue
fi
# initialize return value of the non-dashboard job
ret_nondb=0
# initialize result variable for dashboard job
ret_dashboard=0
# initialize result variable for release files
ret_release=0
# set status file
statusfile="build.${distro}-${target_name}*/.threads/status"
if [ "${DASHBOARD_MODE}" != "yes" ]
then
# show logs during build (non-dashboard build)
echo "Starting build of ${target_name}"
make ${out} OFFICIAL=yes PROJECT=${project} DEVICE=${device} ARCH=${arch} MTIMMEDIATE=${qf} ${tc}
ret_nondb=${?}
if [ ${ret_nondb} -gt 0 -a "${BAILOUT_FAILED}" != "no" ]
then
exit ${ret_nondb}
fi
else
# remove the old dashboard, so we don't show old/stale dashboard
rm -f ${statusfile}
# start the build process in background
make ${out} OFFICIAL=yes PROJECT=${project} DEVICE=${device} ARCH=${arch} MTIMMEDIATE=${qf} ${tc} &>/dev/null &
# store the pid
pid=${!}
finished=0
while [ ${finished} -eq 0 ]
do
# check if the build process is still running
ps -q ${pid} &>/dev/null
ret_ps=${?}
s_failed="s"
[ ${failed_jobs} -eq 1 ] && s_failed=""
s_good="s"
[ ${good_jobs} -eq 1 ] && s_good=""
statusline="Build job ${current}/${total}, so far ${good_jobs} successful build${s_good}, ${failed_jobs} failed build${s_failed}"
if [ ${ret_ps} -eq 0 ]
then
# build process is still running, show the dashboard
if [ -f ${statusfile} ]
then
cat ${statusfile}
if [ $(cat ${statusfile} | wc -l) -gt 2 ]
then
echo ""
echo "${statusline}"
[ ${CONTROL_C_PRESSED} -eq 1 ] && echo "*** Control-C was pressed, please wait until current build finishes ***"
fi
# check if all packages have been built
pkgs_stat=$(head -n 1 ${statusfile} | cut -d" " -f5,7)
pkgs_done=${pkgs_stat%% *}
pkgs_todo=${pkgs_stat##* }
if [ -n "${pkgs_done}" -a -n "${pkgs_todo}" ]
then
if [ ${pkgs_done} -eq ${pkgs_todo} ]
then
finished=1
# show the dashboard and status line one last time
cat ${statusfile}
echo ""
echo "${statusline}"
[ ${CONTROL_C_PRESSED} -eq 1 ] && echo "*** Control-C was pressed, please wait until current build finishes ***"
else
sleep ${rr}
fi
else
sleep ${rr}
fi
fi
else
# build process is not running anymore
finished=1
if [ -f ${statusfile} ]
then
# show the dashboard
cat ${statusfile}
echo ""
echo "${statusline}"
[ ${CONTROL_C_PRESSED} -eq 1 ] && echo "*** Control-C was pressed, please wait until current build finishes ***"
# check if there are any failed jobs in the dashboard
failed_count=$(cat ${statusfile} | grep "^\[" | cut -d' ' -f 2 | grep FAILED | wc -l)
if [ ${failed_count} -gt 0 ]
then
ret_dashboard=1
if [ "${BAILOUT_FAILED}" != "no" ]
then
echo "Build of some package(s) failed:"
echo ""
echo "Job id | Package name"
echo "------.+------------------"
cat ${statusfile} | grep "FAILED" | sed -e "s/^\[/ /" | sed -e "s/\]\ / /" | sed -e "s/\// /" | cut -d' ' -f 3,8 | sed -e "s/\ / | /" | sed -e "s/^/ /"
echo ""
echo "Check the logs in build.${distro}.${target_name}*/.threads/logs/<job_id>/"
exit ${failed_count}
fi
fi
else
# no dashboard and build process finished - we did not build anything
ret_dashboard=1
if [ "${BAILOUT_FAILED}" != "no" ]
then
echo "Build job for ${target_name} was probably not started (no dashboard file found)."
echo "Try running the build manually:"
echo "PROJECT=${project} DEVICE=${device} ARCH=${arch} IGNORE_VERSION=${iv} make ${out}"
exit 127
fi
fi
fi
done
# in case the build job is still running, it means it is creating the release files/images
if [ ${ret_ps} -eq 0 ]
then
echo -n "Creating release files / images..."
wait ${pid}
ret_release=${?}
count=$(ls target/${distro}-${target_name}-*{.img.gz,kernel,system}* 2>/dev/null | wc -l)
if [ ${count} -gt 0 -a ${ret_release} -eq 0 ]
then
echo "done!"
else
if [ ${count} -eq 0 ]
then
echo "failed - no release files found!"
echo -e "\nWARNING: No release files / images were found, skipping md5 checksum / mv to release folder!"
else
echo "failed - some release files were not created!"
echo -e "\nWARNING: Some release files / images may be missing!"
fi
fi
fi
fi
if [ ${ret_nondb} -gt 0 -o ${ret_dashboard} -gt 0 ]
then
# record the failed build
failed_jobs+=1
failed_packages=""
list=$(cat ${statusfile} | grep "FAILED" | cut -d' ' -f 5-)
for pkg in ${list}
do
failed_packages+="${pkg##*( )} "
done
failed_targets+="${target_name} - ${failed_packages}\n"
elif [ ${count} -gt 0 ]
then
# store the release files in platform/target folder
if [ ${ret_release} -gt 0 ]
then
failed_jobs+=1
failed_targets+="${target_name} - check release files!\n"
else
good_jobs+=1
fi
cd target
mkdir -p ${target_name}
# add md5 checksums to system and kernel files
[ "${DASHBOARD_MODE}" = "yes" ] && echo -n "Creating md5 checksums for kernel and system..."
for file in Lakka-${target_name}-*.{kernel,system}
do
[ -f "${file}" ] && md5sum ${file} > ${file}.md5
done
[ "${DASHBOARD_MODE}" = "yes" ] && echo "done!"
# move release files to the folder
[ "${DASHBOARD_MODE}" = "yes" ] && echo -n "Moving release files (.img.gz, .kernel, .system, .tar) to subfolder..."
for file in Lakka-${target_name}-*{.img.gz,.kernel,.system,.tar}*
do
[ -f "${file}" ] && mv ${v} ${file} ${target_name}/
done
[ "${DASHBOARD_MODE}" = "yes" ] && echo "done!"
# remove files we do not use
[ "${DASHBOARD_MODE}" = "yes" ] && echo -n "Removing unused files (.ova)..."
rm -f ${v} Lakka-${target_name}-*.{ova}*
[ "${DASHBOARD_MODE}" = "yes" ] && echo "done!"
if [ "${target_name}" = "Switch.aarch64" ]
then
if [ -x $(which 7za 2>/dev/null) ]
then
[ "${DASHBOARD_MODE}" = "yes" ] && echo -n "Creating 7z archive for ${target_name}..."
cd ${target_name}
basename=$(basename $(ls Lakka-${target_name}-*.tar | head -n 1) .tar)
if [ -n "${basename}" ]
then
tar xf ${basename}.tar
cd ${basename}
7za a -r ../${basename}.7z * 2>&1 > /dev/null
cd ..
rm -r ${basename}
fi
cd ..
[ "${DASHBOARD_MODE}" = "yes" ] && echo "done!"
fi
fi
cd ..
else
# build OK, but no release files were created
failed_jobs+=1
failed_targets+="${target_name} - no release files!\n"
fi
if [ ${CONTROL_C_PRESSED} -eq 1 -a ${SKIP_ANNOUNCED} -eq 0 ]
then
echo "Skipping remaining builds:"
SKIP_ANNOUNCED=1
fi
done
if [ $failed_jobs -gt 0 ]
then
echo -e "\nFailed ${failed_jobs} build(s):\n${failed_targets}:-(" >&2
else
echo -e "\nAll successful!\n:-)"
fi
exit $failed_jobs