-
Notifications
You must be signed in to change notification settings - Fork 39
/
build.sh
executable file
·385 lines (337 loc) · 14.2 KB
/
build.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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
#!/bin/bash
###################################################################################
# Const Variables, PATH
###################################################################################
LOCALARCH=`uname -m`
if [ x"$LOCALARCH" = x"x86_64" ]; then
DEFAULT_ESTUARYCFG="./estuarycfg_x86_64.json"
else
DEFAULT_ESTUARYCFG="./estuarycfg.json"
fi
SUPPORT_DISTROS=(`sed -n '/^\"distros\":\[/,/^\]/p' $DEFAULT_ESTUARYCFG 2>/dev/null | sed 's/\"//g' | grep -Po "(?<=name:)(.*?)(?=,)" | sort`)
export WGET_OPTS="-T 120 -c -q"
export LC_ALL=C
export LANG=C
###################################################################################
# Includes
###################################################################################
top_dir=$(cd `dirname $0` ; pwd)
source ${top_dir}/Include.sh
###################################################################################
# check host arch, docker running permission
###################################################################################
check_running_not_in_container
###################################################################################
# Variables
###################################################################################
declare -l distros DISTROS
action=build # build or clean, default to build
build_dir=${top_dir}/build # Build output directory
build_kernel=false # Build kernel packages
version=master # estuary repo's tag or branch
cfg_file=${DEFAULT_ESTUARYCFG} # config file
###################################################################################
# Usage
###################################################################################
Usage()
{
local distros=`echo ${SUPPORT_DISTROS[*]} | sed 's/ /, /g'`
cat << EOF
Usage: ./build.sh [options]
Options:
-h, --help: Display this information
-d, --distro: the distribuations
* support distros: $distros
--build_dir: Build output directory, default is ./build
-k, --build_kernel: Build kernel packages, default is false
clean: Clean all distros.
Example:
sudo ./build.sh --help
sudo ./build.sh --build_dir=./workspace -d ubuntu -k true # build kernel packages
sudo ./build.sh --build_dir=./workspace # build distros from json configuration
sudo ./build.sh --build_dir=./workspace -d ubuntu,centos # build specified distros,separated with ","
sudo ./build.sh --build_dir=./workspace -d ubuntu clean # clean distros
EOF
}
###################################################################################
# Get all args
###################################################################################
while test $# != 0
do
case $1 in
--*=*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ; ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ; ac_shift=: ;;
-*) ac_option=$1 ; ac_optarg=$2; ac_shift=shift ;;
*) ac_option=$1 ; ac_shift=: ;;
esac
case ${ac_option} in
clean) action=clean ;;
--build_dir) eval build_dir=$ac_optarg ;;
-k | --build_kernel) eval build_kernel=$ac_optarg ;;
-d | --distro) DISTROS=$ac_optarg ;;
-h | --help) Usage ; exit 0 ;;
*) Usage ; echo "Unknown option $1" ; exit 1 ;;
esac
${ac_shift}
shift
done
###################################################################################
# Install development tools
###################################################################################
install_dev_tools
###################################################################################
# get estuary version
###################################################################################
tag=$(cd ${top_dir} && git describe --tags --exact-match || true)
version=${tag:-${version}}
###################################################################################
# create workspace
###################################################################################
cd ${top_dir}
build_dir=$(mkdir -p ${build_dir} && cd ${build_dir} && pwd)
###################################################################################
# check build kernel packages flag
###################################################################################
build_kernel=`echo $build_kernel | tr 'A-Z' 'a-z'`
if [ x"$build_kernel" != x"false" ] && [ x"$build_kernel" != x"true" ] ; then
echo -e "\033[31mError! $build_kernel is not supported!\033[0m"
echo -e "\033[31mSupport build kernel flag: true false\033[0m" ; exit 1
fi
###################################################################################
# Parse configuration file
###################################################################################
envlist=$(get_envlist ${cfg_file})
get_common=`echo $DISTROS |grep -w common`
distros=$(echo $DISTROS |sed 's/common//g' |tr ',' ' ')
if [ x"$DISTROS" = x"" ]; then
get_common=`echo $(get_install_distros ${cfg_file}) |grep -w common`
distros=$(get_install_distros ${cfg_file} |sed 's/common//g')
fi
DISTROS=$(echo $distros | tr ' ' ',')
all_distros=$distros
if [ x"$get_common" != x"" ] && [ x"$build_kernel" != x"true" ]; then
# -d centos,common -k false
build_common=true
elif [ x"$get_common" != x"" ] && [ x"$build_kernel" = x"true" ] && [ x"$distros" = x"" ]; then
# -d common -k true
exit 0
fi
for dist in ${distros};do
check_distro=`echo ${SUPPORT_DISTROS[*]} |grep -w $dist`
if [ x"$check_distro" = x"" ]; then
echo -e "\033[31mError! $dist is not supported!\033[0m"
echo -e "\033[31mSupport distros: ${SUPPORT_DISTROS[*]}\033[0m" ; exit 1
fi
done
cat << EOF
##############################################################################
# distro: ${all_distros}
# version: ${version}
# build_dir: ${build_dir}
# envlist: ${envlist}
##############################################################################
EOF
###################################################################################
# Check args
###################################################################################
for var in ${envlist}; do
repo_url=`echo ${var} |sed 's/.*=//g'`
wget -T 30 -q --spider $repo_url/
if [ $? -eq 0 ];then
new="$new $var"
fi
done
envlist=${new}
export ${envlist}
###################################################################################
# Update Estuary FTP configuration file
###################################################################################
DOWNLOAD_FTP_ADDR=`grep -Po "(?<=estuary_interal_ftp: )(.*)" $top_dir/estuary.txt`
DOWNLOAD_FTP_ADDR=${ESTUARY_FTP:-"$DOWNLOAD_FTP_ADDR"}
ESTUARY_FTP_CFGFILE="${version}.xml"
if [ x"$build_common" = x"true" ] || [ x"$build_kernel" = x"false" ]; then
if ! check_ftp_update $version . ; then
if ! update_ftp_cfgfile $version $DOWNLOAD_FTP_ADDR . ; then
echo -e "\033[31mError! Update Estuary FTP configuration file failed!\033[0m" ; exit 1
fi
rm -f prebuild/.*.sum prebuild/*.sum 2>/dev/null
rm -f toolchain/.*.sum toolchain/*.sum 2>/dev/null
fi
fi
###################################################################################
# Download/uncompress toolchains
###################################################################################
if [ x"$LOCALARCH" = x"x86_64" ]; then
mkdir -p toolchain
download_toolchains $ESTUARY_FTP_CFGFILE $DOWNLOAD_FTP_ADDR toolchain
if [[ $? != 0 ]]; then
echo -e "\033[31mError! Download toolchains failed!\033[0m" >&2 ; exit 1
fi
if ! uncompress_toolchains $ESTUARY_FTP_CFGFILE toolchain; then
echo -e "\033[31mError! Uncompress toolchains failed!\033[0m" >&2 ; exit 1
fi
toolchain=`get_toolchain $ESTUARY_FTP_CFGFILE arm`
toolchain_dir=`get_compress_file_prefix $toolchain`
export PATH=`pwd`/toolchain/$toolchain_dir/bin:$PATH
toolchain=`get_toolchain $ESTUARY_FTP_CFGFILE aarch64`
toolchain_dir=`get_compress_file_prefix $toolchain`
TOOLCHAIN=$toolchain
TOOLCHAIN_DIR=`cd toolchain/$toolchain_dir; pwd`
CROSS_COMPILE=`get_cross_compile $LOCALARCH $TOOLCHAIN_DIR`
export PATH=$TOOLCHAIN_DIR/bin:$PATH
fi
###################################################################################
# Download binaries
###################################################################################
if [ x"$build_common" = x"true" ] && [ x"$action" != x"clean" ]; then
mkdir -p prebuild
download_binaries $ESTUARY_FTP_CFGFILE $DOWNLOAD_FTP_ADDR prebuild
if [[ $? != 0 ]]; then
echo -e "\033[31mError! Download binaries failed!\033[0m" ; exit 1
fi
fi
echo ""
###################################################################################
# Copy toolchains
###################################################################################
if [ x"$LOCALARCH" = x"x86_64" ]; then
mkdir -p $BUILD_DIR/binary/arm64 2>/dev/null
if ! copy_toolchains $ESTUARY_FTP_CFGFILE toolchain $BUILD_DIR/binary/arm64; then
echo -e "\033[31mError! Copy toolchains failed!\033[0m" ; exit 1
fi
fi
###################################################################################
# Download UEFI and kernel depository
###################################################################################
if [ x"$build_common" = x"true" ] && [ x"$action" != x"clean" ]; then
module_name="estuary-uefi kernel"
elif [ x"$build_common" != x"true" ] && [ x"$action" != x"clean" ]; then
module_name="kernel"
fi
for module in $module_name; do
cd ${top_dir}/..
process_cmd="git clone --depth 1 -b ${version} https://github.com/open-estuary/${module}.git"
process_count="ps -ef | grep \"\${process_cmd}\" | grep -v grep | wc -l"
process_num=`eval ${process_count}`
if [ ! -f "${module}-${version}-ready" ] && [ $process_num -eq 0 ]; then
rm -rf ${module}
fi
if [ ! -d "${module}" ] && [ $process_num -eq 0 ]; then
eval ${process_cmd}
rm -rf ${module}-*-ready
touch ${module}-${version}-ready
elif [ -d "${module}" ] && [ $process_num -gt 0 ]; then
while [ 1 ];do
flag=`eval ${process_count}`
if [ $flag == 1 ]; then
echo "Waiting clone '${module}' complete..."
sleep 30s
continue
else
break
fi
done
else
(cd ${module} ; git fetch origin ${version} || true)
fi
cd ${top_dir}
if [ x"$module" = x"estuary-uefi" ]; then
binary_dir=${build_dir}/out/release/${version}/binary
mkdir -p ${binary_dir}
cp -rf ${top_dir}/../estuary-uefi/* ${binary_dir}
fi
done
###################################################################################
# Copy binaries/docs ...
###################################################################################
if [ x"$action" != x"clean" ] && [ x"$build_common" = x"true" ]; then
binary_src_dir="./prebuild"
doc_src_dir=${top_dir}/doc/release-files
doc_dir=${build_dir}/out/release/${version}
if ! copy_all_binaries $binary_src_dir $binary_dir; then
echo -e "\033[31mError! Copy binaries failed!\033[0m" ; exit 1
fi
cp -rf ${doc_src_dir}/* ${doc_dir}
fi
###################################################################################
# Build/clean distros
###################################################################################
for dist in ${distros};do
export ${dist}_image="estuary/${dist}:5.1-full"
eval image="$"${dist}"_image"
docker pull ${image}
status=$?
while [ $status != 0 ];
do
docker pull ${image}
status=$?
done;
done
for dist in ${distros}; do
./submodules/${action}-distro.sh --distro=${dist} \
--version=${version} --envlist="${envlist}" \
--build_dir=${build_dir} --build_kernel=${build_kernel}
if [ $? -ne 0 ]; then
exit 1
fi
echo "${action} ${dist} done!"
done
###################################################################################
# Build/clean common rootfs
###################################################################################
if [ x"$build_common" = x"true" ]; then
./submodules/${action}-distro.sh --distro=common \
--version=${version} --envlist="${envlist}" \
--build_dir=${build_dir} --build_kernel=${build_kernel}
if [ $? -ne 0 ]; then
exit 1
fi
echo "${action} common rootfs done!"
fi
###################################################################################
# Build/clean kernel packages finish here
###################################################################################
if [ x"$build_kernel" = x"true" ]; then
echo "${action} kernel packages done!"
exit 0
fi
###################################################################################
# Download/uncompress distros tar
###################################################################################
if [ x"$DISTROS" != x"" ] && [ x"$action" != x"clean" ]; then
mkdir -p distro
download_distros $ESTUARY_FTP_CFGFILE $DOWNLOAD_FTP_ADDR distro $DISTROS
if [[ $? != 0 ]]; then
echo -e "\033[31mError! Download distros failed!\033[0m" ; exit 1
fi
echo ""
rootfs_dir=$build_dir/out/release/${version}/.rootfs
if ! uncompress_distros $DISTROS distro $rootfs_dir; then
echo -e "\033[31mError! Uncompress distro files failed!\033[0m" ; exit 1
fi
echo ""
fi
###################################################################################
# Install modules
###################################################################################
if [ x"$DISTROS" != x"" ] && [ x"$action" != x"clean" ]; then
for distro in ${distros[*]}; do
kernel_dir=${top_dir}/../${distro}
mkdir -p ${kernel_dir}
./submodules/build-modules.sh --kerneldir=${kernel_dir} --rootfs=$rootfs_dir/$distro --cross=$CROSS_COMPILE || exit 1
echo "- Build modules done!"
echo ""
done
fi
###################################################################################
# Build distros tar
###################################################################################
if [ x"$DISTROS" != x"" ] && [ x"$action" != x"clean" ]; then
if ! create_distros $DISTROS $rootfs_dir; then
echo -e "\033[31mError! Create distro files failed!\033[0m" ; exit 1
fi
for distro in ${distros[*]}; do
rm -rf ${rootfs_dir}/${distro}*
done
echo "Build distros done!"
echo ""
fi