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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
|
#!/usr/bin/env mksh
#
# Copyright © 2014-2015
# Waldemar Brodkorb <wbx@embedded-test.org>
#
# Provided that these terms and disclaimer and all copyright notices
# are retained or reproduced in an accompanying document, permission
# is granted to deal in this work without restriction, including un‐
# limited rights to use, publicly perform, distribute, sell, modify,
# merge, give away, or sublicence.
#
# This work is provided “AS IS” and WITHOUT WARRANTY of any kind, to
# the utmost extent permitted by applicable law, neither express nor
# implied; without malicious intent or gross negligence. In no event
# may a licensor, author or contributor be held liable for indirect,
# direct, other damage, loss, or other issues arising in any way out
# of dealing in the work, even if advised of the possibility of such
# damage or existence of a defect, except proven that it results out
# of said person’s immediate fault when using the work as intended.
#
# Alternatively, this work may be distributed under the Terms of the
# General Public License, any version as published by the Free Soft‐
# ware Foundation.
# architecture specific notes:
# sheb network card get no ip
# uClibc-ng
arch_list_uclibcng="armv5 armv7 armeb arcv1 arcv2 arcv1-be arcv2-be avr32 bfin c6x crisv10 crisv32 m68k m68k-nommu metag microblazeel microblazebe mips mipssf mipsel mipselsf mips64 mips64eln32 mips64n32 mips64n64 mips64el mips64el mips64eln64 or1k ppc ppcsf sh2 sh3 sh4 sh4eb sparc x86 x86_64 xtensa"
# musl
arch_list_musl="aarch64 armv5 armv7 armeb microblazeel microblazebe mips mipssf mipsel mipselsf or1k ppc sh4 sh4eb x86 x86_64"
# glibc
arch_list_glibc="aarch64 armv5 armv7 armeb ia64 microblazeel microblazebe mips mipssf mipsel mipselsf mips64 mips64eln32 mips64n32 mips64n64 mips64el mips64eln32 mips64eln64 nios2 ppc ppcsf ppc64 s390 sh4 sh4eb sparc sparc64 tile x86 x86_64"
# newlib
arch_list_newlib="armv5 armeb bfin crisv10 crisv32 frv lm32 m68k microblazeel mips mipsel or1k ppc sparc x86"
topdir=$(pwd)
giturl=http://git.openadk.org/openadk.git
valid_libc="uclibc-ng musl glibc newlib"
valid_tests="boot libc ltp mksh native"
tools='make git wget xz cpio tar awk sed'
f=0
for tool in $tools; do
if ! which $tool >/dev/null; then
echo "Checking if $tool is installed... failed"
f=1
fi
done
if [ $f -eq 1 ];then exit 1; fi
help() {
cat >&2 <<EOF
Syntax: $0 [ --libc=<libc> --arch=<arch> --tests=<tests> ]
Explanation:
--libc=<libc> c library to use (${valid_libc})
--arch=<arch> architecture to check (otherwise all supported)
--skiparch=<arch> architectures to skip when all choosen
--tests=<tests> run tests (${valid_tests})
--source=<dir> use directory with source for C library
--ntp=<ntpserver> set NTP server for test run
--packages=<packagelist> add extra packages to the build
--update update OpenADK source via git pull, before building
--continue continue on a broken build
--cleandir clean OpenADK build directories before build
--clean clean OpenADK build directory for single arch
--debug enable debug output from OpenADK
--shell start a shell instead auf autorun of test
--help this help text
EOF
exit 1
}
cont=0
clean=0
cleandir=0
shell=0
update=0
debug=0
piggyback=0
ntp=""
libc=""
while [[ $1 != -- && $1 = -* ]]; do case $1 {
(--cleandir) cleandir=1; shift ;;
(--clean) clean=1; shift ;;
(--debug) debug=1; shift ;;
(--update) update=1; shift ;;
(--continue) cont=1; shift ;;
(--shell) shell=1 shift ;;
(--libc=*) libc=${1#*=}; shift ;;
(--arch=*) archs=${1#*=}; shift ;;
(--skiparch=*) skiparchs=${1#*=}; shift ;;
(--tests=*) tests=${1#*=}; shift ;;
(--source=*) source=${1#*=}; shift ;;
(--ntp=*) ntp=${1#*=}; shift ;;
(--help) help; shift ;;
(--*) echo "unknown option $1"; exit 1 ;;
(-*) help ;;
}; done
if [ -z "$libc" ];then
libc="uclibc-ng musl glibc newlib"
fi
if [ ! -d openadk ];then
git clone $giturl
if [ $? -ne 0 ];then
echo "Cloning from $giturl failed."
exit 1
fi
else
if [ $update -eq 1 ];then
(cd openadk && git pull)
if [ $? -ne 0 ];then
echo "Updating from $giturl failed."
exit 1
fi
fi
fi
runtest() {
lib=$1
arch=$2
test=$3
emulator=qemu
qemu=qemu-system-${arch}
qemu_args=
if [ $ntp ]; then
qemu_append="-append ntpserver=$ntp"
fi
if [ $shell -eq 1 ]; then
qemu_append="-append shell"
fi
noappend=0
piggyback=0
suffix=
libdir=lib
march=${arch}
case ${arch} in
aarch64)
cpu_arch=aarch64
qemu_machine=virt
qemu_args="${qemu_args} -cpu cortex-a57 -netdev user,id=eth0 -device virtio-net-device,netdev=eth0"
;;
armv5)
cpu_arch=arm
march=arm-versatilepb
qemu=qemu-system-${cpu_arch}
qemu_machine=versatilepb
suffix=soft_eabi
dtbdir=openadk/firmware/qemu-${march}_${lib}_${cpu_arch}_${suffix}
qemu_args="${qemu_args} -cpu arm926 -net user -net nic,model=smc91c111"
;;
armv7)
cpu_arch=arm
march=arm-vexpress-a9
qemu=qemu-system-${cpu_arch}
qemu_machine=vexpress-a9
suffix=hard_eabihf
dtbdir=openadk/firmware/qemu-${march}_${lib}_${cpu_arch}_${suffix}
qemu_args="${qemu_args} -cpu cortex-a9 -net user -net nic,model=lan9118 -dtb ${dtbdir}/vexpress-v2p-ca9.dtb"
;;
arcv1|arcv2)
emulator=nsim
cpu_arch=arc
piggyback=1
;;
arcv1-be)
emulator=nsim
cpu_arch=arceb
march=arcv1
piggyback=1
;;
arcv2-be)
emulator=nsim
cpu_arch=arceb
march=arcv2
piggyback=1
;;
crisv32)
cpu_arch=crisv32
march=cris
qemu=qemu-system-${march}
qemu_machine=axis-dev88
piggyback=1
;;
metag)
cpu_arch=metag
march=meta
qemu=qemu-system-${march}
qemu_args="${qemu_args} -display none -device da,exit_threads=1 -chardev stdio,id=chan1 -chardev pty,id=chan2"
qemu_machine=01sp
piggyback=1
;;
microblazeel)
cpu_arch=microblazeel
march=microblaze-ml605
qemu_machine=petalogix-s3adsp1800
;;
microblazebe)
cpu_arch=microblaze
march=microblaze-ml605
qemu=qemu-system-${cpu_arch}
qemu_machine=petalogix-s3adsp1800
;;
mips)
cpu_arch=mips
qemu=qemu-system-${cpu_arch}
qemu_machine=malta
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
suffix=hard
;;
mipssf)
cpu_arch=mips
march=mips
qemu=qemu-system-${cpu_arch}
qemu_machine=malta
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
suffix=soft
;;
mipsel)
cpu_arch=mipsel
march=mips
qemu=qemu-system-${cpu_arch}
qemu_machine=malta
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
suffix=hard
;;
mipselsf)
cpu_arch=mipsel
march=mips
qemu=qemu-system-${cpu_arch}
qemu_machine=malta
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
suffix=soft
;;
mips64)
cpu_arch=mips64
qemu_machine=malta
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
suffix=o32
;;
mips64n32)
cpu_arch=mips64
march=mips64
qemu=qemu-system-${cpu_arch}
qemu_machine=malta
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
suffix=n32
;;
mips64n64)
cpu_arch=mips64
march=mips64
qemu=qemu-system-${cpu_arch}
qemu_machine=malta
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
suffix=n64
;;
mips64el)
cpu_arch=mips64el
march=mips64
qemu_machine=malta
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
suffix=o32
;;
mips64eln32)
cpu_arch=mips64el
march=mips64
qemu=qemu-system-${cpu_arch}
qemu_machine=malta
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
suffix=n32
;;
mips64eln64)
cpu_arch=mips64el
march=mips64
qemu=qemu-system-${cpu_arch}
qemu_machine=malta
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
suffix=n64
;;
ppcsf)
cpu_arch=ppc
march=ppc-bamboo
qemu=qemu-system-${cpu_arch}
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
qemu_machine=bamboo
suffix=soft
;;
ppc)
cpu_arch=ppc
march=ppc-macppc
qemu=qemu-system-${cpu_arch}
qemu_args="${qemu_args} -device e1000,netdev=adk0 -netdev user,id=adk0"
qemu_machine=mac99
suffix=hard
noappend=1
;;
ppc64)
cpu_arch=ppc64
qemu=qemu-system-${cpu_arch}
qemu_machine=pseries
;;
s390)
cpu_arch=s390x
qemu=qemu-system-${cpu_arch}
qemu_machine=s390-ccw-virtio-2.4
;;
sh4)
cpu_arch=sh4
march=sh
qemu=qemu-system-${cpu_arch}
qemu_machine=r2d
qemu_args="${qemu_args} -monitor null -serial null -serial stdio"
;;
sh4eb)
cpu_arch=sh4eb
march=sh
qemu=qemu-system-${cpu_arch}
qemu_machine=r2d
qemu_args="${qemu_args} -monitor null -serial null -serial stdio"
;;
sparc)
cpu_arch=sparc
qemu_machine=SS-5
;;
sparc64)
cpu_arch=sparc64
qemu_machine=sun4u
qemu_args="${qemu_args} -net nic,model=e1000 -net user"
;;
x86)
cpu_arch=i686
qemu=qemu-system-i386
qemu_machine=pc
qemu_args="${qemu_args}"
;;
x86_64)
cpu_arch=x86_64
qemu_machine=pc
libdir=lib64
;;
x86_64_x32)
cpu_arch=x86_64
qemu=qemu-system-${cpu_arch}
qemu_machine=pc
libdir=libx32
;;
xtensa)
cpu_arch=xtensa
qemu=qemu-system-${cpu_arch}
qemu_machine=lx60
qemu_args="${qemu_args} -cpu dc233c"
;;
*)
echo "architecture ${arch} not supported"; exit 1;;
esac
case $emulator in
qemu)
echo "Using QEMU as emulator"
if ! which $qemu >/dev/null; then
echo "Checking if $qemu is installed... failed"
exit 1
fi
qemuver=$(${qemu} -version|awk '{ print $4 }')
if [ "$arch" != "metag" ]; then
if [ $(echo $qemuver |sed -e "s#\.##g" -e "s#,##") -lt 210 ];then
echo "Your qemu version is too old. Please update to 2.1 or greater"
exit 1
fi
fi
;;
nsim)
echo "Using Synopsys NSIM as simulator"
if ! which nsimdrv >/dev/null; then
echo "Checking if $emulator is installed... failed"
exit 1
fi
;;
*)
echo "emulator/simulator not supported"; exit 1;;
esac
echo "Starting test for $lib and $arch"
# check if initramfs or piggyback is used
if [ $piggyback -eq 1 ]; then
echo "Using extra directory for test image creation"
root=openadk/extra
rm -rf openadk/extra 2>/dev/null
mkdir openadk/extra 2>/dev/null
if [ ! -z $suffix ]; then
kernel=openadk/firmware/${emulator}-${march}_${lib}_${cpu_arch}_${suffix}/${emulator}-${march}-initramfspiggyback-kernel
else
kernel=openadk/firmware/${emulator}-${march}_${lib}_${cpu_arch}/${emulator}-${march}-initramfspiggyback-kernel
fi
else
echo "Generating root filesystem for test run"
root=$(mktemp -d /tmp/XXXX)
if [ ! -z $suffix ]; then
archive=openadk/firmware/${emulator}-${march}_${lib}_${cpu_arch}_${suffix}/qemu-${march}-${lib}-initramfsarchive.tar.xz
kernel=openadk/firmware/${emulator}-${march}_${lib}_${cpu_arch}_${suffix}/qemu-${march}-initramfsarchive-kernel
else
archive=openadk/firmware/${emulator}-${march}_${lib}_${cpu_arch}/${emulator}-${march}-${lib}-initramfsarchive.tar.xz
kernel=openadk/firmware/${emulator}-${march}_${lib}_${cpu_arch}/${emulator}-${march}-initramfsarchive-kernel
fi
if [ ! -f $archive ];then
echo "No root filesystem available for architecture ${arch} tried $archive"
exit 1
fi
tar -xf $archive -C $root
fi
# creating test script to be run on boot
cat > ${root}/run.sh << EOF
#!/bin/sh
uname -a
if [ \$ntpserver ]; then
rdate \$ntpserver
else
rdate time.fu-berlin.de
fi
EOF
if [ $test = "boot" ];then
cat >> ${root}/run.sh << EOF
file /bin/busybox
size /bin/busybox
for i in \$(ls /lib/*.so|grep -v libgcc);do
size \$i
done
exit
EOF
fi
if [ $test = "ltp" ];then
cat >> ${root}/run.sh << EOF
/opt/ltp/runltp
exit
EOF
fi
if [ $test = "mksh" ];then
cat >> ${root}/run.sh << EOF
mksh /opt/mksh/test.sh
exit
EOF
fi
if [ $test = "libc" ];then
case $lib in
uclibc-ng)
cat >> ${root}/run.sh << EOF
cd /opt/uclibc-ng/test
sh ./uclibcng-testrunner.sh
exit
EOF
;;
musl|glibc)
cat >> ${root}/run.sh << EOF
cd /opt/libc-test
CC=: make run
exit
EOF
;;
esac
fi
chmod u+x ${root}/run.sh
if [ $piggyback -eq 1 ]; then
(cd openadk && make v)
else
echo "Creating initramfs filesystem"
(cd $root; find . | cpio -o -C512 -Hnewc |xz --check=crc32 --stdout > ${topdir}/initramfs.${arch})
rm -rf $root
qemu_args="$qemu_args -initrd initramfs.${arch}"
fi
# qemu-ppc overwrites existing commandline
if [ $noappend -eq 0 ]; then
qemu_args="$qemu_args ${qemu_append}"
fi
echo "Now running the test ${test} in ${emulator} for architecture ${arch} and ${lib}"
case $emulator in
qemu)
echo "${qemu} -M ${qemu_machine} ${qemu_args} -kernel ${kernel} -qmp tcp:127.0.0.1:4444,server,nowait -no-reboot -nographic"
${qemu} -M ${qemu_machine} ${qemu_args} -kernel ${kernel} -qmp tcp:127.0.0.1:4444,server,nowait -no-reboot -nographic | tee REPORT.${arch}.${test}.${libver}
;;
nsim)
echo "./openadk/scripts/nsim.sh ${arch} ${kernel}"
./openadk/scripts/nsim.sh ${arch} ${kernel} | tee REPORT.${arch}.${test}.${libver}
;;
esac
if [ $? -eq 0 ];then
echo "Test ${test} for ${arch} finished. See REPORT.${arch}.${test}.${libver}"
echo
else
echo "Test ${test} failed for ${arch} with ${lib} ${libver}."
echo
fi
}
compile() {
rm .config* .defconfig 2>/dev/null
make $1 defconfig
for pkg in $pkgs; do p=$(echo $pkg|tr '[:lower:]' '[:upper:]');printf "ADK_COMPILE_$p=y\nADK_PACKAGE_$p=y" >> .config;done
make $1 all
}
build() {
lib=$1
arch=$2
test=$3
cd openadk
make prereq
# rebuild uClibc-ng package to get test-suite
if [ "$lib" = "uclibc-ng" ]; then
make package=$lib clean
fi
DEFAULT="ADK_TARGET_LIBC=$lib"
if [ $debug -eq 1 ];then
DEFAULT="$DEFAULT ADK_VERBOSE=1"
fi
if [ $test = "boot" ];then
DEFAULT="$DEFAULT ADK_TEST_BASE=y"
fi
if [ $test = "ltp" ];then
DEFAULT="$DEFAULT ADK_TEST_LTP=y"
fi
if [ $test = "mksh" ];then
DEFAULT="$DEFAULT ADK_TEST_MKSH=y"
fi
if [ $test = "libc" ];then
case $lib in
uclibc-ng)
DEFAULT="$DEFAULT ADK_TEST_UCLIBC_NG_TESTSUITE=y"
;;
glibc)
DEFAULT="$DEFAULT ADK_TEST_GLIBC_TESTSUITE=y"
;;
musl)
DEFAULT="$DEFAULT ADK_TEST_MUSL_TESTSUITE=y"
;;
esac
fi
if [ $test = "native" ];then
case $lib in
uclibc-ng)
DEFAULT="$DEFAULT ADK_TEST_UCLIBC_NG_NATIVE=y"
;;
musl)
DEFAULT="$DEFAULT ADK_TEST_MUSL_NATIVE=y"
;;
glibc)
DEFAULT="$DEFAULT ADK_TEST_GLIBC_NATIVE=y"
;;
esac
fi
case $arch in
aarch64)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=aarch64 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-aarch64"
compile "$DEFAULT"
;;
arcv1)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=arc ADK_TARGET_FS=initramfspiggyback ADK_TARGET_SYSTEM=nsim-arcv1 ADK_TARGET_ENDIAN=little"
compile "$DEFAULT"
;;
arcv2)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=arc ADK_TARGET_FS=initramfspiggyback ADK_TARGET_SYSTEM=nsim-arcv2 ADK_TARGET_ENDIAN=little"
compile "$DEFAULT"
;;
arcv1-be)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=arc ADK_TARGET_FS=initramfspiggyback ADK_TARGET_SYSTEM=nsim-arcv1 ADK_TARGET_ENDIAN=big"
compile "$DEFAULT"
;;
arcv2-be)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=arc ADK_TARGET_FS=initramfspiggyback ADK_TARGET_SYSTEM=nsim-arcv2 ADK_TARGET_ENDIAN=big"
compile "$DEFAULT"
;;
armv5)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=arm ADK_TARGET_ENDIAN=little ADK_TARGET_SYSTEM=toolchain-arm"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=arm ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-arm-versatilepb"
fi
compile "$DEFAULT"
;;
armeb)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=arm ADK_TARGET_ENDIAN=big ADK_TARGET_SYSTEM=toolchain-arm"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=arm ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=toolchain-arm ADK_TARGET_FLOAT=soft ADK_TARGET_ENDIAN=big"
fi
compile "$DEFAULT"
;;
armv7)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=arm ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-arm-vexpress-a9"
compile "$DEFAULT"
;;
avr32)
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=avr32 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=toolchain-avr32"
compile "$DEFAULT"
;;
bfin)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=bfin ADK_TARGET_SYSTEM=toolchain-bfin"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=bfin ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=toolchain-bfin"
fi
compile "$DEFAULT"
;;
c6x)
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=c6x ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=toolchain-c6x"
compile "$DEFAULT"
;;
crisv10)
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=cris ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=toolchain-cris ADK_TARGET_CPU=crisv10"
compile "$DEFAULT"
;;
crisv32)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=cris ADK_TARGET_ENDIAN=little ADK_TARGET_SYSTEM=toolchain-cris ADK_TARGET_CPU=crisv32"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=cris ADK_TARGET_FS=initramfspiggyback ADK_TARGET_SYSTEM=qemu-cris"
fi
compile "$DEFAULT"
;;
ia64)
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=ia64 ADK_TARGET_SYSTEM=toolchain-ia64"
compile "$DEFAULT"
;;
h8300)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=h8300 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=toolchain-h8300"
compile "$DEFAULT"
;;
lm32)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=$arch ADK_TARGET_SYSTEM=toolchain-$arch"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=$arch ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-$arch"
fi
compile "$DEFAULT"
;;
m68k)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=m68k ADK_TARGET_SYSTEM=toolchain-m68k"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=m68k ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-m68k-q800"
fi
compile "$DEFAULT"
;;
m68k-nommu)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=m68k ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-m68k-mcf5208"
compile "$DEFAULT"
;;
metag)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=metag ADK_TARGET_FS=initramfspiggyback ADK_TARGET_SYSTEM=qemu-metag"
compile "$DEFAULT"
;;
microblazebe)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=microblaze ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-microblaze-ml605 ADK_TARGET_ENDIAN=big"
compile "$DEFAULT"
;;
microblazeel)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=microblaze ADK_TARGET_SYSTEM=toolchain-microblaze ADK_TARGET_ENDIAN=little"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=microblaze ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-microblaze-ml605 ADK_TARGET_ENDIAN=little"
fi
compile "$DEFAULT"
;;
mips)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=mips ADK_TARGET_SYSTEM=toolchain-mips ADK_TARGET_ENDIAN=big"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=mips ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-mips ADK_TARGET_ENDIAN=big ADK_TARGET_FLOAT=hard"
fi
compile "$DEFAULT"
;;
mipssf)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=mips ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-mips ADK_TARGET_ENDIAN=big ADK_TARGET_FLOAT=soft"
compile "$DEFAULT"
;;
mipsel)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=mips ADK_TARGET_SYSTEM=toolchain-mips ADK_TARGET_ENDIAN=little"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=mips ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-mips ADK_TARGET_ENDIAN=little ADK_TARGET_FLOAT=hard"
fi
compile "$DEFAULT"
;;
mipselsf)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=mips ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-mips ADK_TARGET_ENDIAN=little ADK_TARGET_FLOAT=soft"
compile "$DEFAULT"
;;
mips64)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=mips64 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-mips64 ADK_TARGET_ENDIAN=big ADK_TARGET_ABI=o32"
compile "$DEFAULT"
;;
mips64n32)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=mips64 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-mips64 ADK_TARGET_ENDIAN=big ADK_TARGET_ABI=n32"
compile "$DEFAULT"
;;
mips64n64)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=mips64 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-mips64 ADK_TARGET_ENDIAN=big ADK_TARGET_ABI=n64"
compile "$DEFAULT"
;;
mips64el)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=mips64 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-mips64 ADK_TARGET_ENDIAN=little ADK_TARGET_ABI=o32"
compile "$DEFAULT"
;;
mips64eln32)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=mips64 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-mips64 ADK_TARGET_ENDIAN=little ADK_TARGET_ABI=n32"
compile "$DEFAULT"
;;
mips64eln64)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=mips64 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-mips64 ADK_TARGET_ENDIAN=little ADK_TARGET_ABI=n64"
compile "$DEFAULT"
;;
nios2)
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=nios2 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=toolchain-nios2"
compile "$DEFAULT"
;;
or1k)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=$arch ADK_TARGET_SYSTEM=toolchain-$arch"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=or1k ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=toolchain-or1k"
fi
compile "$DEFAULT"
;;
ppc)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=ppc ADK_TARGET_SYSTEM=toolchain-ppc"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=ppc ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-ppc-macppc ADK_TARGET_FLOAT=hard"
fi
compile "$DEFAULT"
;;
ppcsf)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=ppc ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-ppc-bamboo ADK_TARGET_FLOAT=soft"
compile "$DEFAULT"
;;
ppc64)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=ppc64 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-ppc64 ADK_TARGET_ENDIAN=big"
compile "$DEFAULT"
;;
s390)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=s390 ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-s390"
compile "$DEFAULT"
;;
sh2)
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=sh ADK_TARGET_SYSTEM=toolchain-sh ADK_TARGET_CPU=sh2"
compile "$DEFAULT"
;;
sh3)
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=sh ADK_TARGET_SYSTEM=toolchain-sh ADK_TARGET_CPU=sh3"
compile "$DEFAULT"
;;
sh4)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=sh ADK_TARGET_SYSTEM=toolchain-sh ADK_TARGET_CPU=sh4"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=sh ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-sh ADK_TARGET_ENDIAN=little"
fi
compile "$DEFAULT"
;;
sh4eb)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=sh ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-sh ADK_TARGET_ENDIAN=big"
compile "$DEFAULT"
;;
sparc|sparc64)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=$arch ADK_TARGET_SYSTEM=toolchain-$arch"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=$arch ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-$arch"
fi
compile "$DEFAULT"
;;
tile)
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=tile ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=toolchain-tile"
compile "$DEFAULT"
;;
x86|x86_64)
if [ "$lib" = "newlib" ]; then
DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=$arch ADK_TARGET_SYSTEM=toolchain-$arch"
else
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=$arch ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-$arch"
fi
compile "$DEFAULT"
;;
*)
DEFAULT="$DEFAULT ADK_APPLIANCE=test ADK_TARGET_ARCH=$arch ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-$arch"
compile "$DEFAULT"
;;
esac
if [ $? -ne 0 ];then
echo "build failed"
exit 1
fi
cd ..
}
for lib in ${libc}; do
case $lib in
uclibc-ng)
archlist=$arch_list_uclibcng
version=1.0.9
libver=uClibc-ng-${version}
libdir=uClibc-ng
;;
glibc)
archlist=$arch_list_glibc
version=2.22
libver=glibc-${version}
libdir=glibc
;;
musl)
archlist=$arch_list_musl
version=1.1.12
libver=musl-${version}
libdir=musl
;;
newlib)
archlist=$arch_list_newlib
version=2.2.0
libver=newlib-${version}
libdir=newlib
;;
*)
echo "$lib not supported"
exit 1
;;
esac
if [ ! -z $archs ]; then
archlist="$archs"
fi
if [ ! -z $source ]; then
if [ ! -d $source ]; then
echo "Not a directory."
exit 1
fi
usrc=$(mktemp -d /tmp/XXXX)
echo "Creating source tarball openadk/dl/${libver}.tar.xz"
cp -a $source $usrc/$libver
mkdir -p $topdir/openadk/dl 2>/dev/null
rm $topdir/openadk/dl/${libver}.tar.xz 2>/dev/null
(cd $usrc && tar cJf $topdir/openadk/dl/${libver}.tar.xz ${libver} )
touch $topdir/openadk/dl/${libver}.tar.xz.nohash
fi
# start with a clean dir
if [ $cleandir -eq 1 ]; then
echo "completely cleaning openadk build directory"
(cd openadk && make cleandir)
fi
if [ ! -z "$tests" ];then
testinfo="$tests testing"
else
testinfo="toolchain testing"
fi
echo "Summary: testing $archlist with C library $lib and $testinfo"
sleep 2
for arch in ${archlist}; do
if [ $cont -eq 1 ]; then
if [ -f "REPORT.${arch}.${tests}.${libver}" -o -f "REPORT.${arch}.toolchain.${libver}" ]; then
echo "Skipping already run test for $arch"
continue
fi
fi
if [ "$arch" = "$skiparchs" ];then
echo "Skipping $skiparchs"
continue
fi
if [ $clean -eq 1 ]; then
echo "cleaning openadk build directory"
(cd openadk && make cleansystem)
fi
echo "Compiling base system and toolchain for $lib and $arch"
build $lib $arch notest
echo "$arch with $lib successfully build" > REPORT.${arch}.toolchain.${libver}
if [ ! -z "$tests" ];then
for test in ${tests}; do
if [ $test = "boot" -o $test = "libc" -o $test = "ltp" -o $test = "native" -o $test = "mksh" ];then
case $lib in
uclibc-ng)
case $arch in
armeb|avr32|bfin|c6x|crisv10|h8300|ia64|lm32|microblazeel|microblazebe|m68k|m68k-nommu|nios2|or1k|sh2|sh3|sh4eb)
echo "runtime tests disabled for $arch."
;;
*)
build $lib $arch $test
runtest $lib $arch $test
;;
esac
;;
musl)
case $arch in
armeb|or1k|sh4eb)
echo "runtime tests disabled for $arch."
;;
*)
build $lib $arch $test
runtest $lib $arch $test
;;
esac
;;
glibc)
case $arch in
armeb|ia64|m68k|nios2|s390|sh4eb|tile)
echo "runtime tests disabled for $arch."
;;
*)
build $lib $arch $test
runtest $lib $arch $test
;;
esac
;;
newlib)
echo "runtime tests disabled for newlib."
;;
esac
else
echo "Test $test is not valid. Allowed tests: $valid_tests"
exit 1
fi
done
fi
done
done
echo "All tests finished."
exit 0
|