forked from libremesh/lime-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cooker
executable file
·517 lines (473 loc) · 17.6 KB
/
cooker
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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
#!/bin/bash
[ -f options.conf.local ] && . options.conf.local || . options.conf
[ -f flavors.conf.local ] && . flavors.conf.local || . flavors.conf
[ ! -d "$tmp_dir" ] && mkdir -p "$tmp_dir"
[ ! -d "$downloads_dir" ] && mkdir -p "$downloads_dir"
[ ! -d "$bin_output" ] && mkdir -p "$bin_output"
[ ! -d "$files_dir" ] && mkdir -p "$files_dir"
J=${J:-$make_j}
usage() {
echo "Usage: $0 [-f [--force]] [-d <target> [--sdk|ib|force]] [-i <target> [--sdk-file=<file>|ib-file=<file>]]
[-b <target> [--no-update|no-link-ib|remote] [--profile=<profile>] [--flavor=<flavor>]]
[--download-all|build-all|update-feeds] [--targets|flavors|communities|profiles=<target>]
[-c <target> [--profile=<profile>] [--flavor=<flavor>] [--community=<name/profile>]] [--help]"
echo ""
echo " --help : show full help with examples"
echo " --download-all : download all SDK and ImageBuilders"
echo " --build-all : build SDK for all available tagets"
echo " --cook-all : cook firmwares for all available targets and profiles"
echo " --targets : list all officialy supported targets"
echo " --profiles=<target> : list available hardware profiles for a specific target"
echo " --flavors : list available LibreMesh flavors for cooking"
echo " --communities : list available community profiles"
echo " --update-feeds : update previously downloaded feeds (only works for Git feeds)"
echo " -f : download feeds based on feeds.conf.default file. Feeds will be shared among all targets"
echo " --force : force reinstall of feeds (remove old if exist)"
echo " -d <target> : download SDK and ImageBuilder for specific target"
echo " --sdk : download only SDK"
echo " --ib : download only ImageBuilder"
echo " --force : force reinstall of SDK and/or ImageBuilder (remove old if exist)"
echo " -i <target> : install local/custom SDK or ImageBuilder"
echo " --sdk-file=<file> : specify SDK file to unpack"
echo " --ib-file=<file> : specify ImageBuilder file to unpack"
echo " -b <target> : build SDK for specific target and link it to the ImageBuilder"
echo " --no-link-ib : do not download and link ImageBuilder when building the SDK"
echo " --no-update : do not update feeds when building SDK"
echo " -c <target> : cook the firmware for specific target. Can be used with next options"
echo " --profile=<profile> : use <profile> when cooking firmware (default is all available target profiles)"
echo " --flavor=<flavor> : use <flavor> when cooking firmware (default $default_flavor)"
echo " --remote : instead of building local SDK packages. Use only remote repositories for cooking"
echo " --community=<name/prof> : specify which network community and profile device to use (if any)"
echo ""
}
examples() {
echo "Examples:"
echo ""
echo " - Build packages using the SDK and cook the firmware for target tl-wdr3500-v1 and flavor generic (all in one command)"
echo ""
echo " $0 -c ar71xx/generic --flavor=lime_default --profile=tl-wdr3500-v1"
echo ""
echo " - Cook the firmware without compiling the SDK but using only remote precompiled binaries"
echo ""
echo " $0 -c ar71xx/generic --remote --flavor=lime_basic --profile=tl-wdr3500-v1"
echo ""
echo " - Build SDK and cook ar71xx target with all available profiles (step by step)"
echo ""
echo " $0 -d ar71xx/generic # download SDK and IB "
echo " $0 -f # download and prepare feeds"
echo " $0 -b ar71xx/generic # build the SDK and link it to IB"
echo " $0 -c ar71xx/generic --flavor=lime_default # cook the firmware"
echo ""
echo " - If you want to use an existing community network profile, specify it when cooking (in addition to the device profile)"
echo ""
echo " $0 -c ar71xx/generic --flavor=lime_default --community=quintanalibre.org.ar/comun --profile=tl-wdr3500-v1"
echo ""
echo " - PKG can be used to add extra packages when cooking. Also J to parallelize and V to verbose"
echo ""
echo " PKG=\"luci-app-3g iperf\" J=4 V=s $0 -c ar71xx/generic"
echo ""
}
list_targets() {
cat $targets_list
}
cook() {
local target="$1"
local profile="$2"
local ib="$release/$target/ib"
local output_dir="$PWD/$bin_output/$target/$profile/$flavor"
[ ! -d "$ib" ] && {
echo "-> ImageBuilder for target $target not ready"
download_ib $target
}
[ -n "$use_remote_pkgs" ] && {
local arch=`get_arch_from_ib $target`
echo "-> Using remote repository for ImageBuilder, architecture: $arch"
cat $ib/repositories.original.conf $remote_pkg_repos | sed s/"{ARCH}"/$arch/g > $ib/repositories.conf
}
[ -z "$use_remote_pkgs" ] && {
[ ! -f $ib/repositories.sdk.conf ] && build_sdk $target
cp -f $ib/repositories.sdk.conf $ib/repositories.conf
}
echo "-> Cooking $target/$profile"
[ ! -d "$output_dir" ] && mkdir -p $output_dir
local ib_files=""
local myfiles="$PWD/$files_dir"
[ -n "$community_files" ] && myfiles="$community_files"
local fw_extra_name="libremesh"
[ -n "$community" ] && fw_extra_name="$community-$community_profile"
find $myfiles/* 2>/dev/null && ib_files="FILES=$myfiles" # if files directory is empty, IB crashes
[ "$profile" == "Default" ] && profile="" # if profile is Default better leave it blank. some targets do not have any profile
[ -n "$profile" ] && profile="PROFILE=$profile"
[ -n "$no_update" ] && force_no_update="NO_UPDATE=1"
[ -f "files_remove" ] && files_remove="FILES_REMOVE=$(pwd)/files_remove"
make -C $ib image $profile PACKAGES="${!flavor} $PKG" EXTRA_IMAGE_NAME="$fw_extra_name" BIN_DIR="$output_dir" $ib_files $force_no_update $files_remove && {
echo -e "\n-> Firmware for target $target, profile $profile and flavor $flavor cooked!\nFind the binaries in $output_dir directory" || {
echo -e "\n-> Firmware not cooked, something wrong happened on the ImageBuilder compilation process"
ERROR_PROFILES="$ERROR_PROFILES $target/$profile/$flavor"
return 1
}
}
}
cook_all_profiles() {
local target=$1
echo -n -e "\n-> Cooking ALL profiles for target $target"
local first=1
for p in `get_profile_names`; do
[ $first -eq 1 ] && first=0 || no_update=1
local log="$tmp_dir/$(echo $target.$p | sed s/"\/"/-/g).log"
echo -n -e "\n--> Cooking $target $p"
(cook $target $p &> $log) && {
echo -n ": SUCCESS!"; } || echo -n ": FAIL! (log at $log)"
done
[ -n "$ERROR_PROFILES" ] && echo "-> Profiles with errors: $ERROR_PROFILES"
}
cook_all_targets() {
for t in $(list_targets); do
cook_all_profiles $t
done
[ -n "$ERROR_PROFILES" ] && echo "-> Profiles with errors: $ERROR_PROFILES"
}
build_sdk() {
local target="$1"
local sdk="$release/$target/sdk"
local ib="$release/$target/ib"
[ ! -d "$sdk" ] && {
echo "-> SDK for target $target not found"
download_sdk $target
}
echo "-> Building $sdk"
[ -f "$feeds_file" ] || {
echo "-> Local feeds file not found"
download_feeds
}
cp -f "$feeds_file" "$sdk/feeds.conf"
[ -z "$no_update" ] && (cd $sdk && scripts/feeds update -a) || (cd $sdk && scripts/feeds update -i)
for r in $sdk_install_repos; do
(cd $sdk && scripts/feeds install -p $r -a)
done
for p in $sdk_install_packages; do
(cd $sdk && scripts/feeds install $p)
done
cp $sdk_config $sdk/.config
make -C $sdk defconfig
make -j$J -C $sdk V=$V && [ -z "$no_link_ib" ] && {
[ -f "$ib/repositories.original.conf" ] || download_ib $target
[ -f "$ib/repositories.sdk.conf" ] || {
cat $ib/repositories.original.conf > $tmp_dir/repositories.sdk.conf
echo "-> Linking IB with SDK"
echo "" >> $tmp_dir/repositories.sdk.conf
echo "##SDK_repos" >> $tmp_dir/repositories.sdk.conf
for r in $PWD/$sdk/bin/packages/*/*; do
echo "src sdk_$(basename $r) file:$r" >> $tmp_dir/repositories.sdk.conf
done
echo "src sdk_target file:$(find $PWD/$sdk/bin/targets -type d -name packages)" >> $tmp_dir/repositories.sdk.conf
echo "" >> $tmp_dir/repositories.sdk.conf
cp -f $tmp_dir/repositories.sdk.conf $ib/repositories.sdk.conf
echo "-> Using custom $tmp_dir/repositories.sdk.conf"
}
} || echo "-> Error compiling SDK"
}
download_feeds() {
local feeds_template="$feeds_default_file"
local output="$feeds_dir"
[ -f "$feeds_file" ] && [ -z "$force_install" ] && {
echo "-> Feeds already downloaded, doing nothing. Use --force to reinstall"
return
}
[ -f $feeds_file ] && rm -f $feeds_file
[ ! -d "$output" ] && mkdir -p "$output"
echo "-> Downloading feeds into $output/"
cat $feeds_template | grep ^src-git | while read feed; do
name="$(echo $feed | awk '{print $2}')"
full_url="$(echo $feed | awk '{print $3}')"
[ -d $output/$name ] && rm -rf $output/$name
if echo "$full_url" | grep \;; then
url="$(echo $full_url | awk -F\; '{print $1}')"
branch="$(echo $full_url | awk -F\; '{print $2}')"
git clone $url -b $branch $output/$name
elif echo "$full_url" | grep \^; then
url="$(echo $full_url | awk -F\^ '{print $1}')"
commit="$(echo $full_url | awk -F\^ '{print $2}')"
git clone $url $output/$name
( cd $output/$name && git checkout $commit )
fi
echo "src-link $name $PWD/$output/$name" >> $feeds_file
done
}
download_communities() {
[ ! -d "$communities_dir" ] && {
echo "-> Downloading communities repository"
git clone $communities_git $communities_dir || {
echo "-> Cannot fetch communities repository"
exit 1
}
}
}
list_communities() {
download_communities
find $communities_dir/ -maxdepth 1 -type d | grep -v .git | \
while read c; do echo ${c#*/}; done | grep -v ^$
}
update_feeds() {
for f in $feeds_dir/*; do
[ -d $f/.git ] && (cd $f && git pull)
done
}
build_all_sdk() {
cat $targets_list | while read t; do build_sdk $t; done
}
download_all() {
cat $targets_list | while read t; do download_sdk $t; download_ib $t; done
}
download_sdk() {
local target="$1"
[ -z "$target" ] && {
echo "-> You must specify target to download, check $targets_list file"
usage
exit 1
}
local url="$base_url/$target"
local output="$release/$target"
[ ! -d "$output" ] && mkdir -p "$output"
local sdk_file="$(wget -q -O- $url | grep lede-sdk | grep href | awk -F\> '{print $4}' | awk -F\< '{print $1}')"
echo "-> Downloading $url/$sdk_file"
wget -c "$url/$sdk_file" -O "$tmp_dir/$sdk_file" || {
echo "-> Error, cannot download SDK $url/$sdk_file"
exit 1
}
unpack_sdk $tmp_dir/$sdk_file $output
}
unpack_sdk() {
local file="$1"
local output="$2"
[ -d $output/sdk ] && [ -z "$force_install" ] && {
echo "-> SDK for $target already exist, doing nothing. Use --force to reinstall"
} || {
echo "-> Unpacking SDK to $output"
tar xf $file -C $output/ && {
[ -d $output/sdk ] && rm -rf $output/sdk
mv $output/lede-sdk* $output/sdk
rm -rf $output/sdk/dl
local dl=$downloads_dir
echo $dl | grep -q / || dl="$PWD/$dl"
ln -s $dl $output/sdk/dl
#rm -f $TMP/$SDK_FILE
} || echo "-> Error installing SDK"
}
}
download_ib() {
local target="$1"
[ -z "$target" ] && {
echo "-> You must specify target to download, check $targets_list file"
usage
exit 1
}
local url="$base_url/$target"
local output="$release/$target"
[ ! -d "$output" ] && mkdir -p "$output"
local ib_file="$(wget -q -O- $url | grep lede-imagebuilder | grep href | awk -F\> '{print $4}' | awk -F\< '{print $1}')"
echo "-> Downloading $url/$ib_file"
wget -c "$url/$ib_file" -O "$tmp_dir/$ib_file" || {
echo "-> Error, cannot download ImageBuilder $url/$ib_file"
exit 1
}
unpack_ib $tmp_dir/$ib_file $output
}
unpack_ib() {
local file="$1"
local output="$2"
[ -d $output/ib ] && [ -z "$force_install" ] && {
echo "-> ImageBuilder for $target already exist, doing nothing. Use --force to reinstall"
} || {
echo "-> Unpacking ImageBuilder to $output"
tar xf $file -C $output/ && {
[ -d $output/ib ] && rm -rf $output/ib
mv $output/lede-imagebuilder* $output/ib
cp -f $output/ib/repositories.conf $output/ib/repositories.original.conf
} || echo "-> Error installing ImageBuilder"
}
}
list_flavors() {
cat flavors.conf | egrep -v "^_|^#|^$" | awk -F= '{print $1}'
}
get_profile_names() {
local profiles="$(cat $release/$target/ib/.profiles.mk 2>/dev/null | grep ^PROFILE_NAMES | \
sed -e s/"PROFILE_NAMES = Default"//g -e s/DEVICE_//g)"
profiles="${profiles:-Default}"
echo "$profiles"
}
get_arch_from_ib() {
local target=$1
[ ! -d $release/$target/ib ] && download_ib $target
grep CONFIG_TARGET_ARCH_PACKAGES $release/$target/ib/.config | cut -d= -f2 | tr -d \"
}
list_profiles() {
local target="$1"
[ ! -d $release/$target/ib ] && download_ib $target
make -C $release/$target/ib info
}
[ -z "$1" ] && usage
OPTS=$(getopt -o hd:fb:c:d:i: -l targets,build-all,download-all,profiles:,flavors,profile:,flavor:,\
update-feeds,no-update,no-link-ib,only-sdk,only-ib,remote,ib,sdk,sdk-file:,ib-file:,help,force,\
communities,community:,cook-all -n $0 -- "$@")
eval set -- "$OPTS"
while true; do
case $1 in
--help)
usage
examples
break
;;
--download-all)
download_all
break
;;
--build-all)
build_all_sdk
break
;;
--cook-all)
cook_all=1
shift
;;
--targets)
list_targets
break
;;
--profiles)
list_profiles $2
break
;;
--flavors)
list_flavors
break
;;
--communities)
list_communities
break
;;
--update-feeds)
update_feeds
break
;;
--no-update)
no_update=1
shift
;;
--no-link-ib)
no_link_ib=1
shift
;;
-d)
download=1
target=$2
shift;shift
;;
--sdk)
only_sdk=1
shift
;;
--ib)
only_ib=1
shift
;;
--force)
force_install=1
shift
;;
-i)
local_install=1
target=$2
shift;shift
;;
--sdk-file)
sdk_path=$2
shift;shift
;;
--ib-file)
ib_path=$2
shift;shift
;;
-f)
download_feeds=1
shift
;;
-b)
build_sdk=1
target=$2
shift;shift
;;
-c)
cook=1
target="$2"
shift;shift
;;
--profile)
profile="$2"
shift;shift
;;
--flavor)
flavor="$2"
shift;shift
;;
--remote)
use_remote_pkgs="1"
shift
;;
--community)
community="${2%/*}"
community_profile="${2#*/}"
shift;shift
;;
-h)
usage
break
;;
--)
shift
break
;;
*)
;;
esac
done
flavor=${flavor:-$default_flavor}
profile=${profile:-Default}
[ "$local_install" == "1" ] && {
[ -n "$sdk_path" ] && unpack_sdk "$sdk_path" $release/$target
[ -n "$ib_path" ] && unpack_ib "$ib_path" $release/$target
[ -z "$sdk_path$ib_path" ] && {
echo "-> Either --sdk-file or --ib-file must be specified (or both)"
exit 1
}
}
[ "$download" == "1" ] && {
[ "$only_sdk" == "1" ] && download_sdk $target
[ "$only_ib" == "1" ] && download_ib $target
[ -z "$only_sdk$only_ib" ] && download_sdk $target && download_ib $target
}
[ "$download_feeds" == "1" ] && {
download_feeds
}
[ "$build_sdk" == "1" ] && build_sdk $target
[ "$cook" == "1" ] && {
[ -n "$community" ] && [ -z "$community_profile" ] && {
echo "-> If community is defined you must also specify its profile: --community=name/profile"
exit 0
} || [ -n "$community" ] && {
download_communities
community_files="$PWD/$communities_dir/$community/$community_profile"
[ ! -d "$community_files" ] && {
echo "-> The community and profile specified does not exist ($community_files)"
exit 0
} || echo "-> Using Community files from $community_files"
}
if [ "$profile" == "Default" ]; then
cook_all_profiles $target
else
cook $target $profile
fi
}
[ "$cook_all" == "1" ] && {
cook_all_targets
}