summaryrefslogtreecommitdiffstats
path: root/oeselftest/testresults.json
blob: ab369c789cf62e5675e8d5ee04f8aa6939427e29 (plain)
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
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
{
    "oeselftest_centos-7_qemux86-64_20190605184244": {
        "configuration": {
            "HOST_DISTRO": "centos-7",
            "HOST_NAME": "centos7-ty-1",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                }
            },
            "MACHINE": "qemux86-64",
            "STARTTIME": "20190605184244",
            "TESTSERIES": "oe-selftest",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "archiver.Archiver.test_archiver_allows_to_filter_on_recipe_name": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_filters_by_type": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_filters_by_type_and_name": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_srpm_mode": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_add_remove": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_createlayer": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_flatten": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showappends": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showcrossdepends": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showlayers": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showoverlayed": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showrecipes": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bbappend_order": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_g": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_invalid_recipe": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_invalid_target": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_checkuri": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_continue": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_dry_run": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_environment": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_event_handler": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_force_task_1": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_force_task_2": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_image_manifest": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_invalid_patch": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_invalid_recipe_src_uri": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_just_parse": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_local_sstate": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_non_gplv3": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_postfile": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_prefile": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_rename_downloaded_file": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_1": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_2": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_3": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_setscene_only": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_version": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_warnings_errors": {
                "status": "PASSED"
            },
            "buildoptions.ArchiverTest.test_arch_work_dir_and_export_source": {
                "status": "PASSED"
            },
            "buildoptions.BuildhistoryTests.test_buildhistory_basic": {
                "status": "PASSED"
            },
            "buildoptions.BuildhistoryTests.test_buildhistory_buildtime_pr_backwards": {
                "status": "PASSED"
            },
            "buildoptions.DiskMonTest.test_stoptask_behavior": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_ccache_tool": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_incremental_image_generation": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_read_only_image": {
                "status": "PASSED"
            },
            "buildoptions.SanityOptionsTest.test_layer_without_git_dir": {
                "status": "PASSED"
            },
            "buildoptions.SanityOptionsTest.test_options_warnqa_errorqa_switch": {
                "status": "PASSED"
            },
            "buildoptions.SourceMirroring.test_yocto_source_mirror": {
                "log": "Skip by the command line argument \"buildoptions.SourceMirroring.test_yocto_source_mirror\"\n",
                "status": "SKIPPED"
            },
            "buildoptions.ToolchainOptions.test_toolchain_fortran": {
                "status": "PASSED"
            },
            "containerimage.ContainerImageTests.test_expected_files": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch_simple": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_git_local": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_library": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_build_image": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_deploy_target": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_extract": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_extract_virtual": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_reset_all": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_buildclean": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_invalid": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_localfiles": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_native": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_virtual": {
                "status": "PASSED"
            },
            "devtool.DevtoolTests.test_create_workspace": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_append": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_append_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_2": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_3": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_subdir": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_patch_gz": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_modify_origlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_modify_otherlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_upgrade_origlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_upgrade_otherlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_layer_plugins": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_load_plugin": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_rename": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_upgrade": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_upgrade_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_virtual_kernel_modify": {
                "status": "PASSED"
            },
            "distrodata.Distrodata.test_checkpkg": {
                "log": "Skip by the command line argument \"buildoptions.SourceMirroring.test_yocto_source_mirror\"\n",
                "status": "SKIPPED"
            },
            "distrodata.Distrodata.test_maintainers": {
                "status": "PASSED"
            },
            "eSDK.oeSDKExtSelfTest.test_image_generation_binary_feeds": {
                "status": "PASSED"
            },
            "eSDK.oeSDKExtSelfTest.test_install_libraries_headers": {
                "status": "PASSED"
            },
            "efibootpartition.GenericEFITest.test_boot_efi": {
                "status": "PASSED"
            },
            "fetch.Fetch.test_git_mirrors": {
                "status": "PASSED"
            },
            "gotoolchain.oeGoToolchainSelfTest.test_go_dep_build": {
                "status": "PASSED"
            },
            "image_typedep.ImageTypeDepTests.test_conversion_typedep_added": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_all_users_can_connect_via_ssh_without_password": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_bmap": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_clutter_image_can_be_built": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_hypervisor_fmts": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_image_fstypes": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_long_chain_conversion": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_no_busybox_base_utils": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_non_root_user_can_connect_via_ssh_without_password": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_useradd_static": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest/build/meta/lib/oeqa/selftest/cases/imagefeatures.py\", line 233, in test_useradd_static\n    bitbake(\"core-image-base\")\n  File \"/home/pokybuild/yocto-worker/oe-selftest/build/meta/lib/oeqa/utils/commands.py\", line 218, in bitbake\n    return runCmd(cmd, ignore_status, timeout, output_log=output_log, **options)\n  File \"/home/pokybuild/yocto-worker/oe-selftest/build/meta/lib/oeqa/utils/commands.py\", line 196, in runCmd\n    raise AssertionError(\"Command '%s' returned non-zero exit status %d:\\n%s\" % (command, result.status, exc_output))\nAssertionError: Command 'bitbake  core-image-base' returned non-zero exit status 1:\nParsing recipes...done.\nParsing of 811 .bb files complete (0 cached, 811 parsed). 1341 targets, 59 skipped, 0 masked, 0 errors.\nRemoving 3 recipes from the core2-64 sysroot...done.\nRemoving 3 recipes from the qemux86_64 sysroot...done.\nNOTE: Resolving any missing task queue dependencies\nERROR: Nothing RPROVIDES 'bash' (but /home/pokybuild/yocto-worker/oe-selftest/build/meta/recipes-devtools/packagegroups/packagegroup-core-device-devel.bb, /home/pokybuild/yocto-worker/oe-selftest/build/meta/recipes-core/util-linux/util-linux_2.32.1.bb, /home/pokybuild/yocto-worker/oe-selftest/build/meta/recipes-support/bash-completion/bash-completion_2.9.bb, /home/pokybuild/yocto-worker/oe-selftest/build/meta/recipes-connectivity/openssl/openssl_1.1.1b.bb RDEPENDS on or otherwise requires it)\nbash was skipped: bash - bash-ptest: normal username test does not have a static ID defined. Add test to one of these files: /home/pokybuild/yocto-worker/oe-selftest/build/build-st-131990/meta-selftest/files/static-passwd\nNOTE: Runtime target 'bash' is unbuildable, removing...\nMissing or unbuildable dependency chain was: ['bash']\nNOTE: Runtime target 'packagegroup-core-device-devel' is unbuildable, removing...\nMissing or unbuildable dependency chain was: ['packagegroup-core-device-devel', 'bash']\nNOTE: Runtime target 'packagegroup-base-extended' is unbuildable, removing...\nMissing or unbuildable dependency chain was: ['packagegroup-base-extended', 'packagegroup-core-device-devel', 'bash']\nERROR: Required build target 'core-image-base' has no buildable providers.\nMissing or unbuildable dependency chain was: ['core-image-base', 'packagegroup-base-extended', 'packagegroup-core-device-devel', 'bash']\n\nSummary: There were 2 ERROR messages shown, returning a non-zero exit code.\n\n",
                "status": "FAILED"
            },
            "imagefeatures.ImageFeatures.test_wayland_support_in_image": {
                "status": "PASSED"
            },
            "layerappend.LayerAppendTests.test_layer_appends": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_hardlink_tree_count": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_tree_special": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_tree_xattr": {
                "status": "PASSED"
            },
            "lic_checksum.LicenseTests.test_nonmatching_checksum": {
                "status": "PASSED"
            },
            "manifest.VerifyManifest.test_SDK_manifest_entries": {
                "status": "PASSED"
            },
            "manifest.VerifyManifest.test_image_manifest_entries": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "multiconfig.MultiConfig.test_multiconfig": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_blob_to_dict": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_compare_dict_blobs": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_compare_dict_blobs_default": {
                "status": "PASSED"
            },
            "oelib.elf.TestElf.test_machine_name": {
                "status": "PASSED"
            },
            "oelib.license.TestComplexCombinations.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestIsIncluded.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestSimpleCombinations.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestSingleLicense.test_invalid_licenses": {
                "status": "PASSED"
            },
            "oelib.license.TestSingleLicense.test_single_licenses": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_loop": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_norm": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_phys": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_bool_equality": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_false": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_invalid": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_true": {
                "status": "PASSED"
            },
            "oelib.types.TestList.test_list_nosep": {
                "status": "PASSED"
            },
            "oelib.types.TestList.test_list_usersep": {
                "status": "PASSED"
            },
            "oelib.utils.TestMultiprocessLaunch.test_multiprocesslaunch": {
                "status": "PASSED"
            },
            "oelib.utils.TestPackagesFilterOutSystem.test_filter": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_num_exception": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_valid": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_version_exception": {
                "status": "PASSED"
            },
            "oescripts.BuildhistoryDiffTests.test_buildhistory_diff": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_help": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_pdf_output": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_png_output": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_svg_output": {
                "status": "PASSED"
            },
            "package.PackageTests.test_gdb_hardlink_debug": {
                "status": "PASSED"
            },
            "package.PackageTests.test_preserve_sparse_hardlinks": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_dpkg": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_opkg": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_rpm": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_find_path": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_glob": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_list_pkg_files": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_list_pkgs": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_lookup_pkg": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_lookup_recipe": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_read_value": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_specify_pkgdatadir": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_import_export_override_db": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_import_export_replace_db": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_deb_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_deb_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_ipk_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_ipk_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_rpm_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_rpm_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_stopping_prservice_message": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_basic_wildcard": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_existing_in_src_uri": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_existing_in_src_uri_diff_params": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_replace_file_srcdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_srcdir_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_subdir_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_subdir_basic_dirdest": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfiles_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfiles_basic_subdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add_bindir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add_machine": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_alternatives": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_binary": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_extlayer": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_func": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_todir_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_invalid": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_orig": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_patch": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_postinstall": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_renamed": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_script": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_src_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_subdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_todir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_wildcard": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_cmake": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_git": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_git_http": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_github": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_github_tarball": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_simple": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_load_plugin": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_appends": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_singleappend": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_varflag": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_split_var_value": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_validate_pn": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_merge_can_merged_results": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_regression_can_get_regression_base_target_pair": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_regrresion_can_get_regression_result": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_report_can_aggregate_test_result": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_list_not_found": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_list_okay": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_log": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_log_split": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_no_shell": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_output": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_output_split": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_assertion": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_exception": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_false": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_okay": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_shell": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_stdin": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_stdin_timeout": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_timeout": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_timeout_split": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            },
            "runtime_test.Postinst.test_failing_postinst": {
                "status": "PASSED"
            },
            "runtime_test.Postinst.test_postinst_rootfs_and_boot": {
                "status": "PASSED"
            },
            "runtime_test.TestExport.test_testexport_basic": {
                "status": "PASSED"
            },
            "runtime_test.TestExport.test_testexport_sdk": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_dnf": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_install": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_virgl_gtk": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_virgl_headless": {
                "log": "No render nodes found in /dev/dri: ['card0']\n",
                "status": "SKIPPED"
            },
            "selftest.ExternalLayer.test_list_imported": {
                "status": "PASSED"
            },
            "signing.LockedSignatures.test_locked_signatures": {
                "status": "PASSED"
            },
            "signing.Signing.test_signing_packages": {
                "status": "PASSED"
            },
            "signing.Signing.test_signing_sstate_archive": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_autorev_sstate_works": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_nonspecific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_specific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_specific_nonspecific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_cross_native_targets": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_cross_target": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_native_target": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_32_64_same_hash": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_allarch_samesigs": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_machine": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_1": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_2": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_3": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_nonspecific_fail": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_nonspecific_pass": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_specific_fail": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_specific_pass": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_nativelsbstring_same_hash": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_nativesdk_samesigs_multilib": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_noop_samesigs": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_sametune_samesigs": {
                "status": "PASSED"
            },
            "systemd_boot.Systemdboot.test_efi_systemdboot_images_can_be_built": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_datastore_operations": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_expand": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_getvar": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_getvar_bb_origenv": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_list_recipes": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe_copy_expand": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe_initial_datastore": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_setvariable_clean": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_variable_history": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_wait_event": {
                "status": "PASSED"
            },
            "wic.Wic.test_bootloader_config": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_artifacts": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_image_name": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_rootfs_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_rootfs_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_bzip2": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_gzip": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_xz": {
                "status": "PASSED"
            },
            "wic.Wic.test_createhelp": {
                "status": "PASSED"
            },
            "wic.Wic.test_debug_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_debug_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_default_output_dir": {
                "status": "PASSED"
            },
            "wic.Wic.test_exclude_path": {
                "status": "PASSED"
            },
            "wic.Wic.test_exclude_path_errors": {
                "status": "PASSED"
            },
            "wic.Wic.test_gpt_image": {
                "status": "PASSED"
            },
            "wic.Wic.test_help": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_create": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_kickstart": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_list": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_overview": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_plugins": {
                "status": "PASSED"
            },
            "wic.Wic.test_iso_image": {
                "status": "PASSED"
            },
            "wic.Wic.test_list_images": {
                "status": "PASSED"
            },
            "wic.Wic.test_list_source_plugins": {
                "status": "PASSED"
            },
            "wic.Wic.test_listed_images_help": {
                "status": "PASSED"
            },
            "wic.Wic.test_listhelp": {
                "status": "PASSED"
            },
            "wic.Wic.test_mkefidisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_no_command": {
                "status": "PASSED"
            },
            "wic.Wic.test_qemux86_directdisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_rootfs_artifacts": {
                "status": "PASSED"
            },
            "wic.Wic.test_rootfs_indirect_recipes": {
                "status": "PASSED"
            },
            "wic.Wic.test_sdimage_bootpart": {
                "status": "PASSED"
            },
            "wic.Wic.test_skip_build_check_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_skip_build_check_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_systemd_bootdisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_unsupported_subcommand": {
                "status": "PASSED"
            },
            "wic.Wic.test_version": {
                "status": "PASSED"
            },
            "wic.Wic.test_wrong_compressor": {
                "status": "PASSED"
            },
            "wic.Wic2.test_bmap_long": {
                "status": "PASSED"
            },
            "wic.Wic2.test_bmap_short": {
                "status": "PASSED"
            },
            "wic.Wic2.test_expand_mbr_image": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fixed_size": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fixed_size_error": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fs_types": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_bootpart_globbed": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_env": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_vars_dir_long": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_vars_dir_short": {
                "status": "PASSED"
            },
            "wic.Wic2.test_kickstart_parser": {
                "status": "PASSED"
            },
            "wic.Wic2.test_mkfs_extraopts": {
                "status": "PASSED"
            },
            "wic.Wic2.test_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_qemu_efi": {
                "status": "PASSED"
            },
            "wic.Wic2.test_rawcopy_plugin": {
                "status": "PASSED"
            },
            "wic.Wic2.test_rawcopy_plugin_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_sparse_copy": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_cp": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_cp_ext": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_image_type": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_ls": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_ls_ext": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_rm": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_rm_ext": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_centos-7_qemux86_20190605183506": {
        "configuration": {
            "HOST_DISTRO": "centos-7",
            "HOST_NAME": "centos7-ty-4.yocto.io",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                }
            },
            "MACHINE": "qemux86",
            "STARTTIME": "20190605183506",
            "TESTSERIES": "a-quick",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "buildoptions.SourceMirroring.test_yocto_source_mirror": {
                "log": "Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/a-quick/build/meta/lib/oeqa/selftest/cases/buildoptions.py\", line 200, in test_yocto_source_mirror\n    bitbake(\"world --runall fetch\")\n  File \"/home/pokybuild/yocto-worker/a-quick/build/meta/lib/oeqa/utils/commands.py\", line 218, in bitbake\n    return runCmd(cmd, ignore_status, timeout, output_log=output_log, **options)\n  File \"/home/pokybuild/yocto-worker/a-quick/build/meta/lib/oeqa/utils/commands.py\", line 196, in runCmd\n    raise AssertionError(\"Command '%s' returned non-zero exit status %d:\\n%s\" % (command, result.status, exc_output))\nAssertionError: Command 'bitbake  world --runall fetch' returned non-zero exit status 1:\nParsing recipes...done.\nParsing of 811 .bb files complete (0 cached, 811 parsed). 1341 targets, 46 skipped, 0 masked, 0 errors.\nNOTE: Resolving any missing task queue dependencies\n\nBuild Configuration:\nBB_VERSION           = \"1.43.0\"\nBUILD_SYS            = \"x86_64-linux\"\nNATIVELSBSTRING      = \"universal-4.8\"\nTARGET_SYS           = \"i686-poky-linux\"\nMACHINE              = \"qemux86\"\nDISTRO               = \"poky\"\nDISTRO_VERSION       = \"2.7+snapshot-20190605\"\nTUNE_FEATURES        = \"m32 core2\"\nTARGET_FPU           = \"\"\nmeta                 \nmeta-poky            \nmeta-yocto-bsp       \nmeta-selftest        = \"master-next:06c202e6457c6833c3e7229523bad40c03b21d3a\"\n\nInitialising tasks...done.\nNOTE: Executing RunQueue Tasks\nNOTE: Running task 1 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxtst_1.2.3.bb:do_fetch)\nNOTE: Running task 2 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxdmcp_1.1.3.bb:do_fetch)\nNOTE: Running task 3 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxau_1.0.9.bb:do_fetch)\nNOTE: Running task 4 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libpthread-stubs_0.4.bb:do_fetch)\nNOTE: Running task 5 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-proto/xcb-proto_1.13.bb:do_fetch)\nNOTE: Running task 6 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libice_1.0.9.bb:do_fetch)\nNOTE: Running task 7 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/xtrans_1.4.0.bb:do_fetch)\nNOTE: Running task 8 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/atk/at-spi2-core_2.32.1.bb:do_fetch)\nNOTE: Running task 9 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxcb_1.13.1.bb:do_fetch)\nNOTE: Running task 10 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libsm_1.2.3.bb:do_fetch)\nNOTE: Running task 11 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/harfbuzz/harfbuzz_2.4.0.bb:do_fetch)\nNOTE: Running task 12 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/fribidi/fribidi_1.0.5.bb:do_fetch)\nNOTE: Running task 13 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxft_2.3.3.bb:do_fetch)\nNOTE: Running task 14 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/glibc/cross-localedef-native_2.29.bb:do_fetch)\nNOTE: Running task 15 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libcroco/libcroco_0.6.13.bb:do_fetch)\nNOTE: Running task 16 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/nspr/nspr_4.21.bb:do_fetch)\nNOTE: recipe cross-localedef-native-2.29-r0: task do_fetch: Started\nNOTE: recipe libxtst-native-1_1.2.3-r0: task do_fetch: Started\nNOTE: recipe xcb-proto-native-1.13-r0: task do_fetch: Started\nNOTE: recipe fribidi-native-1.0.5-r0: task do_fetch: Started\nNOTE: recipe libxau-native-1_1.0.9-r0: task do_fetch: Started\nNOTE: recipe libice-native-1_1.0.9-r0: task do_fetch: Started\nNOTE: recipe libxcb-native-1.13.1-r0: task do_fetch: Started\nNOTE: recipe libsm-native-1_1.2.3-r0: task do_fetch: Started\nNOTE: recipe libxft-native-1_2.3.3-r0: task do_fetch: Started\nNOTE: recipe xtrans-native-1_1.4.0-r0: task do_fetch: Started\nNOTE: recipe at-spi2-core-native-2.32.1-r0: task do_fetch: Started\nNOTE: recipe libxdmcp-native-1_1.1.3-r0: task do_fetch: Started\nNOTE: recipe harfbuzz-native-2.4.0-r0: task do_fetch: Started\nNOTE: recipe libcroco-native-0.6.13-r0: task do_fetch: Started\nNOTE: recipe nspr-native-4.21-r0: task do_fetch: Started\nNOTE: recipe libpthread-stubs-native-0.4-r0: task do_fetch: Started\nNOTE: recipe libxau-native-1_1.0.9-r0: task do_fetch: Succeeded\nNOTE: recipe xtrans-native-1_1.4.0-r0: task do_fetch: Succeeded\nNOTE: recipe libxcb-native-1.13.1-r0: task do_fetch: Succeeded\nNOTE: recipe libpthread-stubs-native-0.4-r0: task do_fetch: Succeeded\nNOTE: Running task 17 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/acpica/acpica_20190509.bb:do_fetch)\nNOTE: recipe libxtst-native-1_1.2.3-r0: task do_fetch: Succeeded\nNOTE: Running task 18 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/pixman_0.38.4.bb:do_fetch)\nNOTE: Running task 19 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb:do_fetch)\nNOTE: Running task 20 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/libsdl2/libsdl2_2.0.9.bb:do_fetch)\nNOTE: Running task 21 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/dtc/dtc_1.5.0.bb:do_fetch)\nNOTE: recipe at-spi2-core-native-2.32.1-r0: task do_fetch: Succeeded\nNOTE: Running task 22 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/lz4/lz4_1.9.1.bb:do_fetch)\nNOTE: recipe fribidi-native-1.0.5-r0: task do_fetch: Succeeded\nNOTE: Running task 23 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/attr/acl_2.2.52.bb:do_fetch)\nNOTE: recipe xcb-proto-native-1.13-r0: task do_fetch: Succeeded\nNOTE: recipe libxdmcp-native-1_1.1.3-r0: task do_fetch: Succeeded\nNOTE: recipe libice-native-1_1.0.9-r0: task do_fetch: Succeeded\nNOTE: Running task 24 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/lzo/lzo_2.10.bb:do_fetch)\nNOTE: recipe libxft-native-1_2.3.3-r0: task do_fetch: Succeeded\nNOTE: Running task 25 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/freetype/freetype_2.10.0.bb:do_fetch)\nNOTE: recipe libsm-native-1_1.2.3-r0: task do_fetch: Succeeded\nNOTE: Running task 26 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libfontenc_1.1.4.bb:do_fetch)\nNOTE: Running task 27 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/fontconfig/fontconfig_2.13.1.bb:do_fetch)\nNOTE: Running task 28 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libx11_1.6.7.bb:do_fetch)\nNOTE: recipe libcroco-native-0.6.13-r0: task do_fetch: Succeeded\nNOTE: Running task 29 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxi_1.7.9.bb:do_fetch)\nNOTE: recipe nspr-native-4.21-r0: task do_fetch: Succeeded\nNOTE: Running task 30 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/atk/at-spi2-atk_2.32.0.bb:do_fetch)\nNOTE: recipe pixman-native-1_0.38.4-r0: task do_fetch: Started\nNOTE: recipe lz4-native-1_1.9.1-r0: task do_fetch: Started\nNOTE: recipe alsa-lib-native-1.1.9-r0: task do_fetch: Started\nNOTE: recipe acpica-native-20190509-r0: task do_fetch: Started\nNOTE: recipe dtc-native-1.5.0-r0: task do_fetch: Started\nNOTE: recipe libsdl2-native-2.0.9-r0: task do_fetch: Started\nNOTE: recipe acl-native-2.2.52-r0: task do_fetch: Started\nNOTE: recipe libfontenc-native-1_1.1.4-r0: task do_fetch: Started\nNOTE: recipe libx11-native-1_1.6.7-r0: task do_fetch: Started\nNOTE: recipe freetype-native-2.10.0-r0: task do_fetch: Started\nNOTE: recipe lzo-native-2.10-r0: task do_fetch: Started\nNOTE: recipe libxi-native-1_1.7.9-r0: task do_fetch: Started\nNOTE: recipe fontconfig-native-2.13.1-r0: task do_fetch: Started\nNOTE: recipe acpica-native-20190509-r0: task do_fetch: Succeeded\nNOTE: recipe at-spi2-atk-native-2.32.0-r0: task do_fetch: Started\nNOTE: recipe alsa-lib-native-1.1.9-r0: task do_fetch: Succeeded\nNOTE: Running task 31 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/cairo/cairo_1.16.0.bb:do_fetch)\nNOTE: Running task 32 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxext_1.3.4.bb:do_fetch)\nNOTE: recipe dtc-native-1.5.0-r0: task do_fetch: Succeeded\nNOTE: Running task 33 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/atk/atk_2.32.0.bb:do_fetch)\nNOTE: recipe libfontenc-native-1_1.1.4-r0: task do_fetch: Succeeded\nNOTE: Running task 34 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/pango/pango_1.42.4.bb:do_fetch)\nNOTE: recipe acl-native-2.2.52-r0: task do_fetch: Succeeded\nNOTE: Running task 35 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxcursor_1.2.0.bb:do_fetch)\nNOTE: recipe harfbuzz-native-2.4.0-r0: task do_fetch: Succeeded\nNOTE: recipe lzo-native-2.10-r0: task do_fetch: Succeeded\nNOTE: Running task 36 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxdamage_1.1.5.bb:do_fetch)\nNOTE: recipe libxi-native-1_1.7.9-r0: task do_fetch: Succeeded\nNOTE: Running task 37 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxcomposite_0.4.5.bb:do_fetch)\nNOTE: Running task 38 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxfixes_5.0.3.bb:do_fetch)\nNOTE: recipe at-spi2-atk-native-2.32.0-r0: task do_fetch: Succeeded\nNOTE: recipe libx11-native-1_1.6.7-r0: task do_fetch: Succeeded\nNOTE: recipe libsdl2-native-2.0.9-r0: task do_fetch: Succeeded\nNOTE: Running task 39 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxrender_0.9.10.bb:do_fetch)\nNOTE: Running task 40 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxrandr_1.5.2.bb:do_fetch)\nNOTE: Running task 41 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libyaml/libyaml_0.2.2.bb:do_fetch)\nNOTE: recipe freetype-native-2.10.0-r0: task do_fetch: Succeeded\nNOTE: Running task 42 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-util/makedepend_1.0.6.bb:do_fetch)\nNOTE: recipe lz4-native-1_1.9.1-r0: task do_fetch: Succeeded\nNOTE: Running task 43 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/lzop/lzop_1.04.bb:do_fetch)\nNOTE: recipe fontconfig-native-2.13.1-r0: task do_fetch: Succeeded\nNOTE: recipe pixman-native-1_0.38.4-r0: task do_fetch: Succeeded\nNOTE: Running task 44 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/jpeg/libjpeg-turbo_2.0.2.bb:do_fetch)\nNOTE: Running task 45 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/libpng/libpng_1.6.37.bb:do_fetch)\nNOTE: recipe libxext-native-1_1.3.4-r0: task do_fetch: Started\nNOTE: recipe cairo-native-1.16.0-r0: task do_fetch: Started\nNOTE: recipe atk-native-2.32.0-r0: task do_fetch: Started\nNOTE: recipe libxfixes-native-1_5.0.3-r0: task do_fetch: Started\nNOTE: recipe pango-native-1.42.4-r0: task do_fetch: Started\nNOTE: recipe libxext-native-1_1.3.4-r0: task do_fetch: Succeeded\nNOTE: Running task 46 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/autoconf-archive/autoconf-archive_2018.03.13.bb:do_fetch)\nNOTE: recipe libxdamage-native-1_1.1.5-r0: task do_fetch: Started\nNOTE: recipe libxcursor-native-1_1.2.0-r0: task do_fetch: Started\nNOTE: recipe libxrender-native-1_0.9.10-r0: task do_fetch: Started\nNOTE: recipe libxrandr-native-1_1.5.2-r0: task do_fetch: Started\nNOTE: recipe makedepend-native-1_1.0.6-r0: task do_fetch: Started\nNOTE: recipe lzop-native-1.04-r0: task do_fetch: Started\nNOTE: recipe libxcomposite-native-1_0.4.5-r0: task do_fetch: Started\nNOTE: recipe libpng-native-1.6.37-r0: task do_fetch: Started\nNOTE: recipe libjpeg-turbo-native-1_2.0.2-r0: task do_fetch: Started\nNOTE: recipe libyaml-native-0.2.2-r0: task do_fetch: Started\nNOTE: recipe atk-native-2.32.0-r0: task do_fetch: Succeeded\nNOTE: recipe libxdamage-native-1_1.1.5-r0: task do_fetch: Succeeded\nNOTE: Running task 47 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/binutils/binutils_2.32.bb:do_fetch)\nNOTE: recipe libxfixes-native-1_5.0.3-r0: task do_fetch: Succeeded\nNOTE: Running task 48 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-proto/xorgproto_2018.4.bb:do_fetch)\nNOTE: recipe libxrender-native-1_0.9.10-r0: task do_fetch: Succeeded\nNOTE: recipe libxrandr-native-1_1.5.2-r0: task do_fetch: Succeeded\nNOTE: recipe pango-native-1.42.4-r0: task do_fetch: Succeeded\nNOTE: Running task 49 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/libnsl/libnsl2_git.bb:do_fetch)\nNOTE: recipe makedepend-native-1_1.0.6-r0: task do_fetch: Succeeded\nNOTE: Running task 50 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/gdbm/gdbm_1.18.1.bb:do_fetch)\nNOTE: Running task 51 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb:do_fetch)\nNOTE: Running task 52 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/readline/readline_8.0.bb:do_fetch)\nNOTE: recipe lzop-native-1.04-r0: task do_fetch: Succeeded\nNOTE: Running task 53 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libpcre/libpcre_8.43.bb:do_fetch)\nNOTE: recipe libxcursor-native-1_1.2.0-r0: task do_fetch: Succeeded\nNOTE: Running task 54 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libffi/libffi_3.2.1.bb:do_fetch)\nNOTE: Running task 55 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/gmp/gmp_6.1.2.bb:do_fetch)\nNOTE: recipe autoconf-archive-native-2018.03.13-r0: task do_fetch: Started\nNOTE: recipe libxcomposite-native-1_0.4.5-r0: task do_fetch: Succeeded\nNOTE: recipe libyaml-native-0.2.2-r0: task do_fetch: Succeeded\nNOTE: recipe libpng-native-1.6.37-r0: task do_fetch: Succeeded\nNOTE: Running task 56 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/mpfr/mpfr_4.0.2.bb:do_fetch)\nNOTE: Running task 57 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libmpc/libmpc_1.1.0.bb:do_fetch)\nNOTE: Running task 58 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/make/make_4.2.1.bb:do_fetch)\nNOTE: recipe libjpeg-turbo-native-1_2.0.2-r0: task do_fetch: Succeeded\nNOTE: Running noexec task 59 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/gcc/libgcc-initial_9.1.bb:do_fetch)\nNOTE: Running task 60 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/popt/popt_1.16.bb:do_fetch)\nNOTE: recipe libnsl2-native-1.2.0+gitAUTOINC+37c5ffe303-r0: task do_fetch: Started\nNOTE: recipe xorgproto-native-2018.4-r0: task do_fetch: Started\nNOTE: recipe autoconf-archive-native-2018.03.13-r0: task do_fetch: Succeeded\nNOTE: Running task 61 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/elfutils/elfutils_0.176.bb:do_fetch)\nNOTE: recipe libtirpc-native-1.1.4-r0: task do_fetch: Started\nNOTE: recipe gdbm-native-1.18.1-r0: task do_fetch: Started\nNOTE: recipe libffi-native-3.2.1-r0: task do_fetch: Started\nNOTE: recipe readline-native-8.0-r0: task do_fetch: Started\nNOTE: recipe binutils-native-2.32.0-r0: task do_fetch: Started\nNOTE: recipe gmp-native-6.1.2-r0: task do_fetch: Started\nNOTE: recipe libpcre-native-8.43-r0: task do_fetch: Started\nNOTE: recipe mpfr-native-4.0.2-r0: task do_fetch: Started\nNOTE: recipe popt-native-1.16-r3: task do_fetch: Started\nNOTE: recipe make-native-4.2.1-r0: task do_fetch: Started\nNOTE: recipe libmpc-native-1.1.0-r0: task do_fetch: Started\nNOTE: recipe elfutils-native-0.176-r0: task do_fetch: Started\nNOTE: recipe xorgproto-native-2018.4-r0: task do_fetch: Succeeded\nNOTE: Running task 62 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/db/db_5.3.28.bb:do_fetch)\nNOTE: recipe libtirpc-native-1.1.4-r0: task do_fetch: Succeeded\nNOTE: Running task 63 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/dbus/dbus_1.12.14.bb:do_fetch)\nNOTE: recipe gdbm-native-1.18.1-r0: task do_fetch: Succeeded\nNOTE: Running task 64 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/libarchive/libarchive_3.3.3.bb:do_fetch)\nNOTE: recipe libffi-native-3.2.1-r0: task do_fetch: Succeeded\nNOTE: Running task 65 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/expat/expat_2.2.6.bb:do_fetch)\nNOTE: recipe libnsl2-native-1.2.0+gitAUTOINC+37c5ffe303-r0: task do_fetch: Succeeded\nNOTE: recipe libpcre-native-8.43-r0: task do_fetch: Succeeded\nNOTE: Running task 66 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/curl/curl_7.64.1.bb:do_fetch)\nNOTE: Running task 67 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/sqlite/sqlite3_3.28.0.bb:do_fetch)\nNOTE: recipe gmp-native-6.1.2-r0: task do_fetch: Succeeded\nNOTE: Running task 68 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/attr/attr_2.4.47.bb:do_fetch)\nNOTE: recipe popt-native-1.16-r3: task do_fetch: Succeeded\nNOTE: Running task 69 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/gettext/gettext-minimal-native_0.19.8.1.bb:do_fetch)\nNOTE: recipe mpfr-native-4.0.2-r0: task do_fetch: Succeeded\nNOTE: Running task 70 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-pip_19.1.1.bb:do_fetch)\nNOTE: recipe libmpc-native-1.1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 71 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/pseudo/pseudo_git.bb:do_fetch)\nNOTE: recipe db-native-1_5.3.28-r1: task do_fetch: Started\nNOTE: recipe readline-native-8.0-r0: task do_fetch: Succeeded\nNOTE: Running task 72 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb:do_fetch)\nNOTE: recipe gettext-minimal-native-0.19.8.1-r0: task do_fetch: Started\nNOTE: recipe libarchive-native-3.3.3-r0: task do_fetch: Started\nNOTE: recipe make-native-4.2.1-r0: task do_fetch: Succeeded\nNOTE: Running task 73 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/make/make_4.2.1.bb:do_fetch)\nNOTE: recipe gettext-minimal-native-0.19.8.1-r0: task do_fetch: Succeeded\nNOTE: Running task 74 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-pbr_5.2.0.bb:do_fetch)\nNOTE: recipe dbus-native-1.12.14-r0: task do_fetch: Started\nNOTE: recipe expat-native-2.2.6-r0: task do_fetch: Started\nNOTE: recipe elfutils-native-0.176-r0: task do_fetch: Succeeded\nNOTE: Running task 75 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/libsdl2/libsdl2_2.0.9.bb:do_fetch)\nNOTE: recipe curl-native-7.64.1-r0: task do_fetch: Started\nNOTE: recipe sqlite3-native-3_3.28.0-r0: task do_fetch: Started\nNOTE: recipe attr-native-2.4.47-r0: task do_fetch: Started\nNOTE: recipe pseudo-1.9.0+gitAUTOINC+3fa7c853e0-r0: task do_fetch: Started\nNOTE: recipe python3-pip-native-19.1.1-r0: task do_fetch: Started\nNOTE: recipe make-4.2.1-r0: task do_fetch: Started\nNOTE: recipe pkgconfig-0.29.2+gitAUTOINC+edf8e6f0ea-r0: task do_fetch: Started\nNOTE: recipe make-4.2.1-r0: task do_fetch: Succeeded\nNOTE: Running task 76 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/icu/icu_64.2.bb:do_fetch)\nNOTE: recipe python3-pbr-native-5.2.0-r0: task do_fetch: Started\nNOTE: recipe libsdl2-2.0.9-r0: task do_fetch: Started\nNOTE: recipe expat-native-2.2.6-r0: task do_fetch: Succeeded\nNOTE: Running task 77 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/bc/bc_1.07.1.bb:do_fetch)\nNOTE: recipe libsdl2-2.0.9-r0: task do_fetch: Succeeded\nNOTE: Running task 78 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/texinfo/texinfo_6.5.bb:do_fetch)\nNOTE: recipe icu-native-64.2-r0: task do_fetch: Started\nNOTE: recipe attr-native-2.4.47-r0: task do_fetch: Succeeded\nNOTE: recipe curl-native-7.64.1-r0: task do_fetch: Succeeded\nNOTE: Running task 79 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/boost/bjam-native_1.69.0.bb:do_fetch)\nNOTE: Running task 80 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb:do_fetch)\nNOTE: recipe sqlite3-native-3_3.28.0-r0: task do_fetch: Succeeded\nNOTE: Running task 81 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/librsvg/librsvg_2.40.20.bb:do_fetch)\nNOTE: recipe pseudo-1.9.0+gitAUTOINC+3fa7c853e0-r0: task do_fetch: Succeeded\nNOTE: recipe bc-native-1.07.1-r0: task do_fetch: Started\nNOTE: Running task 82 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb:do_fetch)\nNOTE: recipe python3-pbr-native-5.2.0-r0: task do_fetch: Succeeded\nNOTE: Running task 83 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/nss/nss_3.44.bb:do_fetch)\nNOTE: recipe texinfo-native-6.5-r0: task do_fetch: Started\nNOTE: recipe python3-pip-native-19.1.1-r0: task do_fetch: Succeeded\nNOTE: recipe cairo-native-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 84 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/timezone/tzcode-native.bb:do_fetch)\nNOTE: Running task 85 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/ovmf/ovmf_git.bb:do_fetch)\nNOTE: recipe bjam-native-1.69.0-r0: task do_fetch: Started\nNOTE: recipe cwautomacros-native-20110201-r0: task do_fetch: Started\nNOTE: recipe xmlto-native-0.0.28-r0: task do_fetch: Started\nNOTE: recipe tzcode-native-2019a-r0: task do_fetch: Started\nNOTE: recipe nss-native-3.44-r0: task do_fetch: Started\nNOTE: recipe ovmf-native-git-r0: task do_fetch: Started\nNOTE: recipe librsvg-native-2.40.20-r0: task do_fetch: Started\nNOTE: recipe libarchive-native-3.3.3-r0: task do_fetch: Succeeded\nNOTE: Running task 86 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/qemu/qemu-system-native_4.0.0.bb:do_fetch)\nNOTE: recipe dbus-native-1.12.14-r0: task do_fetch: Succeeded\nNOTE: Running task 87 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/lzip/lzip_1.21.bb:do_fetch)\nNOTE: recipe qemu-system-native-4.0.0-r0: task do_fetch: Started\nNOTE: recipe cwautomacros-native-20110201-r0: task do_fetch: Succeeded\nNOTE: Running task 88 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy-native.bb:do_fetch)\nNOTE: recipe xmlto-native-0.0.28-r0: task do_fetch: Succeeded\nNOTE: Running task 89 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/orc/orc_0.4.29.bb:do_fetch)\nNOTE: recipe lzip-native-1.21-r0: task do_fetch: Started\nNOTE: recipe texinfo-dummy-native-1.0-r0: task do_fetch: Started\nNOTE: recipe bc-native-1.07.1-r0: task do_fetch: Succeeded\nNOTE: Running task 90 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-font/font-util_1.3.1.bb:do_fetch)\nNOTE: recipe texinfo-dummy-native-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 91 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/shared-mime-info/shared-mime-info_1.10.bb:do_fetch)\nNOTE: recipe librsvg-native-2.40.20-r0: task do_fetch: Succeeded\nNOTE: Running task 92 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/go/go-native_1.12.bb:do_fetch)\nNOTE: recipe orc-native-0.4.29-r0: task do_fetch: Started\nNOTE: recipe font-util-native-1.3.1-r0: task do_fetch: Started\nNOTE: recipe tzcode-native-2019a-r0: task do_fetch: Succeeded\nNOTE: recipe pkgconfig-0.29.2+gitAUTOINC+edf8e6f0ea-r0: task do_fetch: Succeeded\nNOTE: Running task 93 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/mtools/mtools_4.0.23.bb:do_fetch)\nNOTE: recipe go-native-1.12.5-r0: task do_fetch: Started\nNOTE: Running task 94 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/util-linux/util-linux_2.32.1.bb:do_fetch)\nNOTE: recipe shared-mime-info-native-1.10-r0: task do_fetch: Started\nNOTE: recipe db-native-1_5.3.28-r1: task do_fetch: Succeeded\nNOTE: Running task 95 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/syslinux/syslinux_6.04-pre2.bb:do_fetch)\nNOTE: recipe lzip-native-1.21-r0: task do_fetch: Succeeded\nNOTE: Running task 96 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/cdrtools/cdrtools-native_3.01.bb:do_fetch)\nNOTE: recipe mtools-native-4.0.23-r0: task do_fetch: Started\nNOTE: recipe cdrtools-native-3.01a31+really3.01-r0: task do_fetch: Started\nNOTE: recipe util-linux-native-2.32.1-r0: task do_fetch: Started\nNOTE: recipe syslinux-native-6.04-pre2-r0: task do_fetch: Started\nNOTE: recipe font-util-native-1.3.1-r0: task do_fetch: Succeeded\nNOTE: Running task 97 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb:do_fetch)\nNOTE: recipe icu-native-64.2-r0: task do_fetch: Succeeded\nNOTE: Running task 98 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/parted/parted_3.2.bb:do_fetch)\nNOTE: recipe orc-native-0.4.29-r0: task do_fetch: Succeeded\nNOTE: Running task 99 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/bmap-tools/bmap-tools_3.5.bb:do_fetch)\nNOTE: recipe shared-mime-info-native-1.10-r0: task do_fetch: Succeeded\nNOTE: recipe texinfo-native-6.5-r0: task do_fetch: Succeeded\nNOTE: Running task 100 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/fdisk/gptfdisk_1.0.4.bb:do_fetch)\nNOTE: Running task 101 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.1.bb:do_fetch)\nNOTE: recipe bmap-tools-native-3.5+gitAUTOINC+db7087b883-r0: task do_fetch: Started\nNOTE: recipe squashfs-tools-native-4.3+gitrAUTOINC+9c1db6d13a-r0: task do_fetch: Started\nNOTE: recipe parted-native-3.2-r1: task do_fetch: Started\nNOTE: recipe gptfdisk-native-1.0.4-r0: task do_fetch: Started\nNOTE: recipe btrfs-tools-native-5.1-r0: task do_fetch: Started\nNOTE: recipe mtools-native-4.0.23-r0: task do_fetch: Succeeded\nNOTE: Running task 102 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_fetch)\nNOTE: recipe dosfstools-native-4.1-r0: task do_fetch: Started\nNOTE: recipe bmap-tools-native-3.5+gitAUTOINC+db7087b883-r0: task do_fetch: Succeeded\nNOTE: Running task 103 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/mkfontscale_1.1.3.bb:do_fetch)\nNOTE: recipe util-linux-native-2.32.1-r0: task do_fetch: Succeeded\nNOTE: Running task 104 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/mkfontdir_1.0.7.bb:do_fetch)\nNOTE: recipe gptfdisk-native-1.0.4-r0: task do_fetch: Succeeded\nNOTE: Running task 105 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/perl/libxml-parser-perl_2.44.bb:do_fetch)\nNOTE: recipe cdrtools-native-3.01a31+really3.01-r0: task do_fetch: Succeeded\nNOTE: recipe parted-native-3.2-r1: task do_fetch: Succeeded\nNOTE: Running task 106 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/docbook-xml/docbook-xml-dtd4_4.5.bb:do_fetch)\nNOTE: Running task 107 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/docbook-xml/docbook-xsl-stylesheets_1.79.1.bb:do_fetch)\nNOTE: recipe squashfs-tools-native-4.3+gitrAUTOINC+9c1db6d13a-r0: task do_fetch: Succeeded\nNOTE: Running task 108 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/rpcsvc-proto/rpcsvc-proto.bb:do_fetch)\nNOTE: recipe syslinux-native-6.04-pre2-r0: task do_fetch: Succeeded\nNOTE: Running task 109 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/llvm/llvm_git.bb:do_fetch)\nNOTE: recipe dosfstools-native-4.1-r0: task do_fetch: Succeeded\nNOTE: Running task 110 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/debianutils/debianutils_4.8.6.1.bb:do_fetch)\nNOTE: recipe mkfontscale-native-1.1.3-r0: task do_fetch: Started\nNOTE: recipe mkfontdir-native-1_1.0.7-r8.0: task do_fetch: Started\nNOTE: recipe docbook-xsl-stylesheets-native-1.79.1-r0: task do_fetch: Started\nNOTE: recipe docbook-xml-dtd4-native-4.5-r0: task do_fetch: Started\nNOTE: recipe libxml-parser-perl-native-2.44-r0: task do_fetch: Started\nNOTE: recipe nss-native-3.44-r0: task do_fetch: Succeeded\nNOTE: Running task 111 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/openssl/openssl_1.1.1b.bb:do_fetch)\nNOTE: recipe btrfs-tools-native-5.1-r0: task do_fetch: Succeeded\nNOTE: Running task 112 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/ghostscript/ghostscript_9.27.bb:do_fetch)\nNOTE: recipe rpcsvc-proto-native-1.4+gitAUTOINC+9bc3b5b785-r0: task do_fetch: Started\nNOTE: recipe mkfontscale-native-1.1.3-r0: task do_fetch: Succeeded\nNOTE: recipe llvm-native-8.0.0-r0: task do_fetch: Started\nNOTE: Running task 113 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/unfs3/unfs3_0.9.22.r497.bb:do_fetch)\nNOTE: recipe debianutils-native-4.8.6.1-r0: task do_fetch: Started\nNOTE: recipe mkfontdir-native-1_1.0.7-r8.0: task do_fetch: Succeeded\nNOTE: Running task 114 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/gdb/gdb-cross_8.3.bb:do_fetch)\nNOTE: recipe docbook-xml-dtd4-native-4.5-r0: task do_fetch: Succeeded\nNOTE: Running task 115 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python-numpy/python3-numpy_1.16.3.bb:do_fetch)\nNOTE: recipe libxml-parser-perl-native-2.44-r0: task do_fetch: Succeeded\nNOTE: Running task 116 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-six_1.12.0.bb:do_fetch)\nNOTE: recipe openssl-native-1.1.1b-r0: task do_fetch: Started\nNOTE: recipe ghostscript-native-9.27-r0: task do_fetch: Started\nNOTE: recipe gdb-cross-i686-8.3-r0: task do_fetch: Started\nNOTE: recipe rpcsvc-proto-native-1.4+gitAUTOINC+9bc3b5b785-r0: task do_fetch: Succeeded\nNOTE: Running task 117 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-mako_1.0.10.bb:do_fetch)\nNOTE: recipe unfs3-native-0.9.22.r497-r0: task do_fetch: Started\nNOTE: recipe python3-numpy-native-1.16.3-r0: task do_fetch: Started\nNOTE: recipe python3-six-native-1.12.0-r0: task do_fetch: Started\nNOTE: recipe debianutils-native-4.8.6.1-r0: task do_fetch: Succeeded\nNOTE: Running task 118 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python-scons-native_3.0.5.bb:do_fetch)\nNOTE: recipe qemu-system-native-4.0.0-r0: task do_fetch: Succeeded\nNOTE: Running task 119 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/re2c/re2c_1.0.1.bb:do_fetch)\nNOTE: recipe python3-mako-native-1.0.10-r0: task do_fetch: Started\nNOTE: recipe python-scons-native-3.0.5-r0: task do_fetch: Started\nNOTE: recipe re2c-native-1.0.1-r0: task do_fetch: Started\nNOTE: recipe unfs3-native-0.9.22.r497-r0: task do_fetch: Succeeded\nNOTE: Running task 120 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_fetch)\nNOTE: recipe go-native-1.12.5-r0: task do_fetch: Succeeded\nNOTE: Running task 121 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/zip/zip_3.0.bb:do_fetch)\nNOTE: recipe grub-efi-native-2.02-r0: task do_fetch: Started\nNOTE: recipe python3-six-native-1.12.0-r0: task do_fetch: Succeeded\nNOTE: Running task 122 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/tcltk/tcl_8.6.9.bb:do_fetch)\nNOTE: recipe python-scons-native-3.0.5-r0: task do_fetch: Succeeded\nNOTE: Running task 123 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/wayland/wayland_1.17.0.bb:do_fetch)\nNOTE: recipe python3-mako-native-1.0.10-r0: task do_fetch: Succeeded\nNOTE: Running task 124 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/m4/m4-native_1.4.18.bb:do_fetch)\nNOTE: recipe zip-native-3.0-r2: task do_fetch: Started\nNOTE: recipe tcl-native-8.6.9-r0: task do_fetch: Started\nNOTE: recipe wayland-native-1.17.0-r0: task do_fetch: Started\nNOTE: recipe m4-native-1.4.18-r0: task do_fetch: Started\nNOTE: recipe openssl-native-1.1.1b-r0: task do_fetch: Succeeded\nNOTE: Running task 125 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/go/go-runtime_1.12.bb:do_fetch)\nNOTE: recipe docbook-xsl-stylesheets-native-1.79.1-r0: task do_fetch: Succeeded\nNOTE: Running task 126 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/go/go-cross_1.12.bb:do_fetch)\nNOTE: recipe zip-native-3.0-r2: task do_fetch: Succeeded\nNOTE: Running task 127 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/chrpath/chrpath_0.16.bb:do_fetch)\nNOTE: recipe wayland-native-1.17.0-r0: task do_fetch: Succeeded\nNOTE: Running task 128 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/zlib/zlib_1.2.11.bb:do_fetch)\nNOTE: recipe go-runtime-1.12.5-r0: task do_fetch: Started\nNOTE: recipe go-runtime-1.12.5-r0: task do_fetch: Succeeded\nNOTE: Running task 129 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/cracklib/cracklib_2.9.5.bb:do_fetch)\nNOTE: recipe go-cross-core2-32-1.12.5-r0: task do_fetch: Started\nNOTE: recipe go-cross-core2-32-1.12.5-r0: task do_fetch: Succeeded\nNOTE: recipe chrpath-native-0.16-r0: task do_fetch: Started\nNOTE: Running task 130 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/groff/groff_1.22.4.bb:do_fetch)\nNOTE: recipe zlib-native-1.2.11-r0: task do_fetch: Started\nNOTE: recipe gdb-cross-i686-8.3-r0: task do_fetch: Succeeded\nNOTE: Running task 131 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/bzip2/bzip2_1.0.6.bb:do_fetch)\nNOTE: recipe re2c-native-1.0.1-r0: task do_fetch: Succeeded\nNOTE: Running task 132 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python-native_2.7.16.bb:do_fetch)\nNOTE: recipe python3-numpy-native-1.16.3-r0: task do_fetch: Succeeded\nNOTE: Running task 133 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python-setuptools_41.0.1.bb:do_fetch)\nNOTE: recipe cracklib-native-2.9.5-r0: task do_fetch: Started\nNOTE: recipe grub-efi-native-2.02-r0: task do_fetch: Succeeded\nNOTE: Running task 134 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/unzip/unzip_6.0.bb:do_fetch)\nNOTE: recipe chrpath-native-0.16-r0: task do_fetch: Succeeded\nNOTE: Running task 135 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-setuptools_41.0.1.bb:do_fetch)\nNOTE: recipe python-native-2.7.16-r0: task do_fetch: Started\nNOTE: recipe groff-native-1.22.4-r0: task do_fetch: Started\nNOTE: recipe m4-native-1.4.18-r0: task do_fetch: Succeeded\nNOTE: Running task 136 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gtk+/gtk+3_3.24.5.bb:do_fetch)\nNOTE: recipe bzip2-native-1.0.6-r5: task do_fetch: Started\nNOTE: recipe cracklib-native-2.9.5-r0: task do_fetch: Succeeded\nNOTE: Running task 137 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/dbus/dbus-glib_0.110.bb:do_fetch)\nNOTE: recipe python-setuptools-native-41.0.1-r0: task do_fetch: Started\nNOTE: recipe bjam-native-1.69.0-r0: task do_fetch: Succeeded\nNOTE: Running task 138 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/file/file_5.37.bb:do_fetch)\nNOTE: recipe unzip-native-1_6.0-r5: task do_fetch: Started\nNOTE: recipe python3-setuptools-native-41.0.1-r0: task do_fetch: Started\nNOTE: recipe bzip2-native-1.0.6-r5: task do_fetch: Succeeded\nNOTE: recipe gtk+3-native-3.24.5-r0: task do_fetch: Started\nNOTE: Running task 139 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/gcc/gcc-source_9.1.bb:do_fetch)\nNOTE: recipe dbus-glib-native-0.110-r0: task do_fetch: Started\nNOTE: recipe file-native-5.37-r0: task do_fetch: Started\nNOTE: recipe gcc-source-9.1.0-9.1.0-r0: task do_fetch: Started\nNOTE: recipe tcl-native-8.6.9-r0: task do_fetch: Succeeded\nNOTE: Running task 140 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/perl/libxml-namespacesupport-perl_1.12.bb:do_fetch)\nNOTE: recipe python-setuptools-native-41.0.1-r0: task do_fetch: Succeeded\nNOTE: recipe python3-setuptools-native-41.0.1-r0: task do_fetch: Succeeded\nNOTE: Running task 141 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/kmod/kmod-native_git.bb:do_fetch)\nNOTE: Running task 142 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/intltool/intltool_0.51.0.bb:do_fetch)\nNOTE: recipe unzip-native-1_6.0-r5: task do_fetch: Succeeded\nNOTE: Running task 143 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/ruby/ruby_2.5.3.bb:do_fetch)\nNOTE: recipe groff-native-1.22.4-r0: task do_fetch: Succeeded\nNOTE: Running task 144 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/vala/vala_0.44.3.bb:do_fetch)\nNOTE: recipe kmod-native-26-r0: task do_fetch: Started\nNOTE: recipe ghostscript-native-9.27-r0: task do_fetch: Succeeded\nNOTE: recipe dbus-glib-native-0.110-r0: task do_fetch: Succeeded\nNOTE: Running task 145 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/mesa/mesa_19.0.5.bb:do_fetch)\nNOTE: Running task 146 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb:do_fetch)\nNOTE: recipe libxml-namespacesupport-perl-native-1.12-r0: task do_fetch: Started\nNOTE: recipe intltool-native-0.51.0-r0: task do_fetch: Started\nNOTE: recipe ruby-native-2.5.3-r0: task do_fetch: Started\nNOTE: recipe zlib-native-1.2.11-r0: task do_fetch: Succeeded\nNOTE: Running task 147 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/gperf/gperf_3.1.bb:do_fetch)\nNOTE: recipe vala-native-0.44.3-r0: task do_fetch: Started\nNOTE: recipe libtirpc-1.1.4-r0: task do_fetch: Started\nNOTE: recipe mesa-2_19.0.5-r0: task do_fetch: Started\nNOTE: recipe libtirpc-1.1.4-r0: task do_fetch: Succeeded\nNOTE: recipe python-native-2.7.16-r0: task do_fetch: Succeeded\nNOTE: Running task 148 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libxslt/libxslt_1.1.33.bb:do_fetch)\nNOTE: Running task 149 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/libxcrypt/libxcrypt_4.4.6.bb:do_fetch)\nNOTE: recipe kmod-native-26-r0: task do_fetch: Succeeded\nNOTE: Running task 150 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb:do_fetch)\nNOTE: recipe libxml-namespacesupport-perl-native-1.12-r0: task do_fetch: Succeeded\nNOTE: Running task 151 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/ncurses/ncurses_6.1+20181013.bb:do_fetch)\nNOTE: recipe gperf-native-3.1-r0: task do_fetch: Started\nNOTE: recipe libxslt-native-1.1.33-r0: task do_fetch: Started\nNOTE: recipe kern-tools-native-0.2+gitAUTOINC+af1a779f66-r12: task do_fetch: Started\nNOTE: recipe libxcrypt-4.4.6-r0: task do_fetch: Started\nNOTE: recipe intltool-native-0.51.0-r0: task do_fetch: Succeeded\nNOTE: Running task 152 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/update-rc.d/update-rc.d_0.8.bb:do_fetch)\nNOTE: recipe ncurses-native-6.1+20181013-r0: task do_fetch: Started\nNOTE: recipe update-rc.d-native-0.8-r0: task do_fetch: Started\nNOTE: recipe vala-native-0.44.3-r0: task do_fetch: Succeeded\nNOTE: Running task 153 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/perl-sanity/perl_5.30.0.bb:do_fetch)\nNOTE: recipe gperf-native-3.1-r0: task do_fetch: Succeeded\nNOTE: Running task 154 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-util/util-macros_1.19.2.bb:do_fetch)\nNOTE: recipe libxcrypt-4.4.6-r0: task do_fetch: Succeeded\nNOTE: Running task 155 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_fetch)\nNOTE: recipe update-rc.d-native-0.8-r0: task do_fetch: Succeeded\nNOTE: Running task 156 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.5.bb:do_fetch)\nNOTE: recipe kern-tools-native-0.2+gitAUTOINC+af1a779f66-r12: task do_fetch: Succeeded\nNOTE: recipe perl-native-5.30.0-r0: task do_fetch: Started\nNOTE: Running task 157 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.38.0.bb:do_fetch)\nNOTE: recipe gtk+3-native-3.24.5-r0: task do_fetch: Succeeded\nNOTE: Running task 158 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.4.bb:do_fetch)\nNOTE: recipe util-macros-native-1_1.19.2-r0: task do_fetch: Started\nNOTE: recipe libxslt-native-1.1.33-r0: task do_fetch: Succeeded\nNOTE: Running task 159 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/unifdef/unifdef_2.11.bb:do_fetch)\nNOTE: recipe xserver-xorg-2_1.20.4-r0: task do_fetch: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+31de88e51d_00638cdd8f-r0: task do_fetch: Started\nNOTE: recipe e2fsprogs-native-1.44.5-r0: task do_fetch: Started\nNOTE: recipe gdk-pixbuf-native-2.38.0-r0: task do_fetch: Started\nNOTE: recipe ncurses-native-6.1+20181013-r0: task do_fetch: Succeeded\nNOTE: Running task 160 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/nasm/nasm_2.14.02.bb:do_fetch)\nNOTE: recipe unifdef-native-2.11-r0: task do_fetch: Started\nNOTE: recipe ruby-native-2.5.3-r0: task do_fetch: Succeeded\nNOTE: Running task 161 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/swig/swig_3.0.12.bb:do_fetch)\nNOTE: recipe mesa-2_19.0.5-r0: task do_fetch: Succeeded\nNOTE: Running task 162 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/libxml/libxml2_2.9.9.bb:do_fetch)\nNOTE: recipe util-macros-native-1_1.19.2-r0: task do_fetch: Succeeded\nNOTE: Running task 163 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gnome/gconf_3.2.6.bb:do_fetch)\nNOTE: recipe nasm-native-2.14.02-r0: task do_fetch: Started\nNOTE: recipe file-native-5.37-r0: task do_fetch: Succeeded\nNOTE: Running task 164 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.60.1.bb:do_fetch)\nNOTE: recipe swig-native-3.0.12-r0: task do_fetch: Started\nNOTE: recipe libxml2-native-2.9.9-r0: task do_fetch: Started\nNOTE: recipe gconf-native-3.2.6-r0: task do_fetch: Started\nNOTE: recipe unifdef-native-2.11-r0: task do_fetch: Succeeded\nNOTE: Running task 165 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/prelink/prelink_git.bb:do_fetch)\nNOTE: recipe gobject-introspection-native-1.60.1-r0: task do_fetch: Started\nNOTE: recipe xserver-xorg-2_1.20.4-r0: task do_fetch: Succeeded\nNOTE: Running task 166 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libx11_1.6.7.bb:do_fetch)\nNOTE: recipe gdk-pixbuf-native-2.38.0-r0: task do_fetch: Succeeded\nNOTE: Running task 167 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/flex/flex_2.6.0.bb:do_fetch)\nNOTE: recipe nasm-native-2.14.02-r0: task do_fetch: Succeeded\nNOTE: Running task 168 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/bison/bison_3.3.2.bb:do_fetch)\nNOTE: recipe prelink-native-1.0+gitAUTOINC+a853a5d715-r0: task do_fetch: Started\nNOTE: recipe libx11-1_1.6.7-r0: task do_fetch: Started\nNOTE: recipe libx11-1_1.6.7-r0: task do_fetch: Succeeded\nNOTE: Running task 169 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/dpkg/dpkg_1.19.4.bb:do_fetch)\nNOTE: recipe flex-native-2.6.0-r0: task do_fetch: Started\nNOTE: recipe bison-native-3.3.2-r0: task do_fetch: Started\nNOTE: recipe dpkg-1.19.4-r0: task do_fetch: Started\nNOTE: recipe gobject-introspection-native-1.60.1-r0: task do_fetch: Succeeded\nNOTE: Running task 170 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb:do_fetch)\nNOTE: recipe e2fsprogs-native-1.44.5-r0: task do_fetch: Succeeded\nNOTE: recipe perl-native-5.30.0-r0: task do_fetch: Succeeded\nNOTE: Running task 171 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/opkg-utils/opkg-utils_0.4.0.bb:do_fetch)\nNOTE: recipe gconf-native-3.2.6-r0: task do_fetch: Succeeded\nNOTE: Running task 172 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/shadow/shadow_4.6.bb:do_fetch)\nNOTE: Running task 173 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/cmake/cmake-native_3.14.1.bb:do_fetch)\nNOTE: recipe prelink-native-1.0+gitAUTOINC+a853a5d715-r0: task do_fetch: Succeeded\nNOTE: Running task 174 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/autoconf/autoconf_2.69.bb:do_fetch)\nNOTE: recipe flex-native-2.6.0-r0: task do_fetch: Succeeded\nNOTE: Running task 175 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/automake/automake_1.16.1.bb:do_fetch)\nNOTE: recipe ovmf-native-git-r0: task do_fetch: Succeeded\nNOTE: recipe bison-native-3.3.2-r0: task do_fetch: Succeeded\nNOTE: Running task 176 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/gnu-config/gnu-config_git.bb:do_fetch)\nNOTE: recipe opkg-utils-0.4.0-r0: task do_fetch: Started\nNOTE: Running task 177 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/libtool/libtool-native_2.4.6.bb:do_fetch)\nNOTE: recipe chkconfig-1.3.58-r7: task do_fetch: Started\nNOTE: recipe cmake-native-3.14.1-r0: task do_fetch: Started\nNOTE: recipe dpkg-1.19.4-r0: task do_fetch: Succeeded\nNOTE: Running task 178 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gtk-doc/gtk-doc_1.30.bb:do_fetch)\nNOTE: recipe gnu-config-native-20190501+gitAUTOINC+b98424c249-r0: task do_fetch: Started\nNOTE: recipe libtool-native-2.4.6-r0: task do_fetch: Started\nNOTE: recipe libxml2-native-2.9.9-r0: task do_fetch: Succeeded\nNOTE: recipe shadow-native-4.6-r0: task do_fetch: Started\nNOTE: Running task 179 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3_3.7.3.bb:do_fetch)\nNOTE: recipe autoconf-native-2.69-r11: task do_fetch: Started\nNOTE: recipe automake-native-1.16.1-r0: task do_fetch: Started\nNOTE: recipe swig-native-3.0.12-r0: task do_fetch: Succeeded\nNOTE: recipe opkg-utils-0.4.0-r0: task do_fetch: Succeeded\nNOTE: Running task 180 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/gettext/gettext_0.19.8.1.bb:do_fetch)\nNOTE: Running task 181 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb:do_fetch)\nNOTE: recipe chkconfig-1.3.58-r7: task do_fetch: Succeeded\nNOTE: Running task 182 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/ninja/ninja_1.9.0.bb:do_fetch)\nNOTE: recipe gtk-doc-native-1.30-r0: task do_fetch: Started\nNOTE: recipe gettext-0.19.8.1-r0: task do_fetch: Started\nNOTE: recipe shadow-native-4.6-r0: task do_fetch: Succeeded\nNOTE: Running noexec task 183 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/gcc/gcc-runtime_9.1.bb:do_fetch)\nNOTE: Running task 184 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/glib-2.0/glib-2.0_2.58.3.bb:do_fetch)\nNOTE: recipe pkgconfig-native-0.29.2+gitAUTOINC+edf8e6f0ea-r0: task do_fetch: Started\nNOTE: recipe pkgconfig-native-0.29.2+gitAUTOINC+edf8e6f0ea-r0: task do_fetch: Succeeded\nNOTE: recipe ninja-native-1.9.0-r0: task do_fetch: Started\nNOTE: Running task 185 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/gettext/gettext_0.19.8.1.bb:do_fetch)\nNOTE: recipe cmake-native-3.14.1-r0: task do_fetch: Succeeded\nNOTE: Running noexec task 186 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/gcc/gcc-cross_9.1.bb:do_fetch)\nNOTE: Running task 187 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/meson/meson_0.50.1.bb:do_fetch)\nNOTE: recipe libtool-native-2.4.6-r0: task do_fetch: Succeeded\nNOTE: Running task 188 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/glibc/glibc_2.29.bb:do_fetch)\nNOTE: recipe python3-native-3.7.3-r0: task do_fetch: Started\nNOTE: recipe gtk-doc-native-1.30-r0: task do_fetch: Succeeded\nNOTE: Running task 189 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/opkg-utils/opkg-utils_0.4.0.bb:do_fetch)\nNOTE: recipe glib-2.0-native-1_2.58.3-r0: task do_fetch: Started\nNOTE: recipe gnu-config-native-20190501+gitAUTOINC+b98424c249-r0: task do_fetch: Succeeded\nNOTE: Running task 190 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/dpkg/dpkg_1.19.4.bb:do_fetch)\nNOTE: recipe automake-native-1.16.1-r0: task do_fetch: Succeeded\nNOTE: Running task 191 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/dwarfsrcfiles/dwarfsrcfiles.bb:do_fetch)\nNOTE: recipe gcc-source-9.1.0-9.1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 192 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/rpm/rpm_4.14.2.1.bb:do_fetch)\nNOTE: recipe meson-native-0.50.1-r0: task do_fetch: Started\nNOTE: recipe gettext-native-0.19.8.1-r0: task do_fetch: Started\nNOTE: recipe glibc-2.29-r0: task do_fetch: Started\nNOTE: recipe opkg-utils-native-0.4.0-r0: task do_fetch: Started\nNOTE: recipe opkg-utils-native-0.4.0-r0: task do_fetch: Succeeded\nNOTE: Running task 193 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb:do_fetch)\nNOTE: recipe dwarfsrcfiles-native-1.0-r0: task do_fetch: Started\nNOTE: recipe dwarfsrcfiles-native-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 194 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/qemu/qemu-native_4.0.0.bb:do_fetch)\nNOTE: recipe dpkg-native-1.19.4-r0: task do_fetch: Started\nNOTE: recipe rpm-native-1_4.14.2.1-r0: task do_fetch: Started\nNOTE: recipe qemu-helper-native-1.0-r1: task do_fetch: Started\nNOTE: recipe dpkg-native-1.19.4-r0: task do_fetch: Succeeded\nNOTE: Running task 195 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/pseudo/pseudo_git.bb:do_fetch)\nNOTE: recipe qemu-helper-native-1.0-r1: task do_fetch: Succeeded\nNOTE: Running task 196 of 817 (virtual:native:/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/xz/xz_5.2.4.bb:do_fetch)\nNOTE: recipe qemu-native-4.0.0-r0: task do_fetch: Started\nNOTE: recipe qemu-native-4.0.0-r0: task do_fetch: Succeeded\nNOTE: Running task 197 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/binutils/binutils-cross_2.32.bb:do_fetch)\nNOTE: recipe glib-2.0-native-1_2.58.3-r0: task do_fetch: Succeeded\nNOTE: recipe autoconf-native-2.69-r11: task do_fetch: Succeeded\nNOTE: Running task 198 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/quilt/quilt-native_0.65.bb:do_fetch)\nNOTE: Running task 199 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/gstreamer/gst-examples_git.bb:do_fetch)\nNOTE: recipe ninja-native-1.9.0-r0: task do_fetch: Succeeded\nNOTE: recipe meson-native-0.50.1-r0: task do_fetch: Succeeded\nNOTE: Running task 200 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/mc/mc_4.8.22.bb:do_fetch)\nNOTE: Running task 201 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/libogg/libogg_1.3.3.bb:do_fetch)\nNOTE: recipe pseudo-native-1.9.0+gitAUTOINC+3fa7c853e0-r0: task do_fetch: Started\nNOTE: recipe quilt-native-0.65-r0: task do_fetch: Started\nNOTE: recipe pseudo-native-1.9.0+gitAUTOINC+3fa7c853e0-r0: task do_fetch: Succeeded\nNOTE: Running task 202 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_0.1.1.bb:do_fetch)\nNOTE: recipe binutils-cross-i686-2.32.0-r0: task do_fetch: Started\nNOTE: recipe gst-examples-1.16.0-r0: task do_fetch: Started\nNOTE: recipe xz-native-5.2.4-r0: task do_fetch: Started\nNOTE: recipe quilt-native-0.65-r0: task do_fetch: Succeeded\nNOTE: Running task 203 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/pm-utils/pm-utils_1.4.1.bb:do_fetch)\nNOTE: recipe libogg-1.3.3-r0: task do_fetch: Started\nNOTE: recipe mc-4.8.22-r0: task do_fetch: Started\nNOTE: recipe gettext-native-0.19.8.1-r0: task do_fetch: Succeeded\nNOTE: Running task 204 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-driver/xf86-input-synaptics_1.9.1.bb:do_fetch)\nNOTE: recipe gettext-0.19.8.1-r0: task do_fetch: Succeeded\nNOTE: Running task 205 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-testtools_2.3.0.bb:do_fetch)\nNOTE: recipe gst-examples-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 206 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/virglrenderer/virglrenderer_0.7.0.bb:do_fetch)\nNOTE: recipe matchbox-keyboard-0.1.1-r0: task do_fetch: Started\nNOTE: recipe glibc-2.29-r0: task do_fetch: Succeeded\nNOTE: Running task 207 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/wayland/wayland_1.17.0.bb:do_fetch)\nNOTE: recipe pm-utils-1.4.1-r1: task do_fetch: Started\nNOTE: recipe libogg-1.3.3-r0: task do_fetch: Succeeded\nNOTE: recipe python3-native-3.7.3-r0: task do_fetch: Succeeded\nNOTE: Running task 208 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/perl/liberror-perl_0.17027.bb:do_fetch)\nNOTE: Running task 209 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/libnss-nis/libnss-nis.bb:do_fetch)\nNOTE: recipe xf86-input-synaptics-2_1.9.1-r0: task do_fetch: Started\nNOTE: recipe python3-testtools-2.3.0-r0: task do_fetch: Started\nNOTE: recipe xz-native-5.2.4-r0: task do_fetch: Succeeded\nNOTE: recipe mc-4.8.22-r0: task do_fetch: Succeeded\nNOTE: Running task 210 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/wayland/weston-init.bb:do_fetch)\nNOTE: Running task 211 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libgcrypt/libgcrypt_1.8.4.bb:do_fetch)\nNOTE: recipe cross-localedef-native-2.29-r0: task do_fetch: Succeeded\nNOTE: Running task 212 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/menu-cache/menu-cache_1.1.0.bb:do_fetch)\nNOTE: recipe virglrenderer-0.7.0-r0: task do_fetch: Started\nNOTE: recipe matchbox-keyboard-0.1.1-r0: task do_fetch: Succeeded\nNOTE: Running task 213 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/m4/m4_1.4.18.bb:do_fetch)\nNOTE: recipe pm-utils-1.4.1-r1: task do_fetch: Succeeded\nNOTE: Running task 214 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/tar/tar_1.32.bb:do_fetch)\nNOTE: recipe liberror-perl-0.17027-r0: task do_fetch: Started\nNOTE: recipe weston-init-1.0-r0: task do_fetch: Started\nNOTE: recipe wayland-1.17.0-r0: task do_fetch: Started\nNOTE: recipe libgcrypt-1.8.4-r0: task do_fetch: Started\nNOTE: recipe libnss-nis-3.0+gitAUTOINC+d4aea48657-r0: task do_fetch: Started\nNOTE: recipe wayland-1.17.0-r0: task do_fetch: Succeeded\nNOTE: recipe weston-init-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 215 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxscrnsaver_1.2.3.bb:do_fetch)\nNOTE: recipe python3-testtools-2.3.0-r0: task do_fetch: Succeeded\nNOTE: recipe menu-cache-1.1.0-r0: task do_fetch: Started\nNOTE: Running task 216 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/libmatchbox/libmatchbox_1.12.bb:do_fetch)\nNOTE: Running task 217 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_fetch)\nNOTE: recipe xf86-input-synaptics-2_1.9.1-r0: task do_fetch: Succeeded\nNOTE: Running task 218 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/apr/apr-util_1.6.1.bb:do_fetch)\nNOTE: recipe m4-1.4.18-r0: task do_fetch: Started\nNOTE: recipe m4-1.4.18-r0: task do_fetch: Succeeded\nNOTE: Running task 219 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/less/less_550.bb:do_fetch)\nNOTE: recipe tar-1.32-r0: task do_fetch: Started\nNOTE: recipe liberror-perl-0.17027-r0: task do_fetch: Succeeded\nNOTE: recipe grub-bootconf-1.00-r0: task do_fetch: Started\nNOTE: recipe virglrenderer-0.7.0-r0: task do_fetch: Succeeded\nNOTE: Running task 220 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/libmnl/libmnl_1.0.4.bb:do_fetch)\nNOTE: recipe libxscrnsaver-1_1.2.3-r0: task do_fetch: Started\nNOTE: recipe libmatchbox-1.12-r0: task do_fetch: Started\nNOTE: Running task 221 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/alsa-state/alsa-state.bb:do_fetch)\nNOTE: recipe grub-bootconf-1.00-r0: task do_fetch: Succeeded\nNOTE: recipe menu-cache-1.1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 222 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/perl/libxml-parser-perl_2.44.bb:do_fetch)\nNOTE: Running task 223 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.17.bb:do_fetch)\nNOTE: recipe libnss-nis-3.0+gitAUTOINC+d4aea48657-r0: task do_fetch: Succeeded\nNOTE: Running task 224 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/diffutils/diffutils_3.7.bb:do_fetch)\nNOTE: recipe libgcrypt-1.8.4-r0: task do_fetch: Succeeded\nNOTE: recipe apr-util-1.6.1-r0: task do_fetch: Started\nNOTE: Running task 225 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-pbr_5.2.0.bb:do_fetch)\nNOTE: recipe less-550-r0: task do_fetch: Started\nNOTE: recipe alsa-state-0.2.0-r5: task do_fetch: Started\nNOTE: recipe hicolor-icon-theme-0.17-r0: task do_fetch: Started\nNOTE: recipe libmnl-1.0.4-r0: task do_fetch: Started\nNOTE: recipe tar-1.32-r0: task do_fetch: Succeeded\nNOTE: recipe alsa-state-0.2.0-r5: task do_fetch: Succeeded\nNOTE: Running task 226 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/nfs-utils/nfs-utils_2.3.3.bb:do_fetch)\nNOTE: recipe diffutils-3.7-r0: task do_fetch: Started\nNOTE: recipe libxscrnsaver-1_1.2.3-r0: task do_fetch: Succeeded\nNOTE: recipe python3-pbr-5.2.0-r0: task do_fetch: Started\nNOTE: Running task 227 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-smmap_2.0.5.bb:do_fetch)\nNOTE: Running task 228 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/matchbox-session/matchbox-session_0.1.bb:do_fetch)\nNOTE: recipe libxml-parser-perl-2.44-r0: task do_fetch: Started\nNOTE: recipe python3-pbr-5.2.0-r0: task do_fetch: Succeeded\nNOTE: Running task 229 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libxslt/libxslt_1.1.33.bb:do_fetch)\nNOTE: recipe libxml-parser-perl-2.44-r0: task do_fetch: Succeeded\nNOTE: recipe libmatchbox-1.12-r0: task do_fetch: Succeeded\nNOTE: Running task 230 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libjitterentropy/libjitterentropy_2.1.2.bb:do_fetch)\nNOTE: Running task 231 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/pcmanfm/pcmanfm_1.3.1.bb:do_fetch)\nNOTE: recipe apr-util-1.6.1-r0: task do_fetch: Succeeded\nNOTE: recipe less-550-r0: task do_fetch: Succeeded\nNOTE: Running task 232 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/iso-codes/iso-codes_4.2.bb:do_fetch)\nNOTE: Running task 233 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libx11-locale_1.6.7.bb:do_fetch)\nNOTE: recipe hicolor-icon-theme-0.17-r0: task do_fetch: Succeeded\nNOTE: Running task 234 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.0.bb:do_fetch)\nNOTE: recipe matchbox-session-0.1-r4: task do_fetch: Started\nNOTE: recipe nfs-utils-2.3.3-r0: task do_fetch: Started\nNOTE: recipe pcmanfm-1.3.1-r0: task do_fetch: Started\nNOTE: recipe matchbox-session-0.1-r4: task do_fetch: Succeeded\nNOTE: Running task 235 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/vte/vte_0.56.1.bb:do_fetch)\nNOTE: recipe libxslt-1.1.33-r0: task do_fetch: Started\nNOTE: recipe libjitterentropy-2.1.2-r0: task do_fetch: Started\nNOTE: recipe python3-smmap-2.0.5-r0: task do_fetch: Started\nNOTE: recipe libx11-locale-1.6.7-r0: task do_fetch: Started\nNOTE: recipe libxslt-1.1.33-r0: task do_fetch: Succeeded\nNOTE: Running task 236 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/keymaps/keymaps_1.0.bb:do_fetch)\nNOTE: recipe iso-codes-4.2-r0: task do_fetch: Started\nNOTE: recipe gstreamer1.0-rtsp-server-1.16.0-r0: task do_fetch: Started\nNOTE: recipe libx11-locale-1.6.7-r0: task do_fetch: Succeeded\nNOTE: Running task 237 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/wayland/weston-conf.bb:do_fetch)\nNOTE: recipe libmnl-1.0.4-r0: task do_fetch: Succeeded\nNOTE: recipe pcmanfm-1.3.1-r0: task do_fetch: Succeeded\nNOTE: Running task 238 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxvmc_1.0.11.bb:do_fetch)\nNOTE: Running task 239 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-util/makedepend_1.0.6.bb:do_fetch)\nNOTE: recipe diffutils-3.7-r0: task do_fetch: Succeeded\nNOTE: recipe python3-smmap-2.0.5-r0: task do_fetch: Succeeded\nNOTE: Running task 240 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/distcc/distcc_3.3.2.bb:do_fetch)\nNOTE: Running task 241 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-six_1.12.0.bb:do_fetch)\nNOTE: recipe keymaps-1.0-r31: task do_fetch: Started\nNOTE: recipe weston-conf-1.0-r0: task do_fetch: Started\nNOTE: recipe libjitterentropy-2.1.2-r0: task do_fetch: Succeeded\nNOTE: recipe nfs-utils-2.3.3-r0: task do_fetch: Succeeded\nNOTE: Running task 242 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.5.bb:do_fetch)\nNOTE: Running task 243 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-setuptools_41.0.1.bb:do_fetch)\nNOTE: recipe weston-conf-1.0-r0: task do_fetch: Succeeded\nNOTE: recipe keymaps-1.0-r31: task do_fetch: Succeeded\nNOTE: Running task 244 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/meson/meson_0.50.1.bb:do_fetch)\nNOTE: Running task 245 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.0.bb:do_fetch)\nNOTE: recipe vte-0.56.1-r0: task do_fetch: Started\nNOTE: recipe gstreamer1.0-rtsp-server-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 246 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb:do_fetch)\nNOTE: recipe makedepend-1_1.0.6-r0: task do_fetch: Started\nNOTE: recipe libxvmc-1_1.0.11-r0: task do_fetch: Started\nNOTE: recipe makedepend-1_1.0.6-r0: task do_fetch: Succeeded\nNOTE: Running task 247 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/libtiff/tiff_4.0.10.bb:do_fetch)\nNOTE: recipe python3-setuptools-41.0.1-r0: task do_fetch: Started\nNOTE: recipe python3-six-1.12.0-r0: task do_fetch: Started\nNOTE: recipe distcc-3.3.2-r0: task do_fetch: Started\nNOTE: recipe python3-setuptools-41.0.1-r0: task do_fetch: Succeeded\nNOTE: Running task 248 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/p11-kit/p11-kit_0.23.16.1.bb:do_fetch)\nNOTE: recipe meson-0.50.1-r0: task do_fetch: Started\nNOTE: recipe python3-six-1.12.0-r0: task do_fetch: Succeeded\nNOTE: Running task 249 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/psmisc/psmisc_23.2.bb:do_fetch)\nNOTE: recipe e2fsprogs-1.44.5-r0: task do_fetch: Started\nNOTE: recipe gstreamer1.0-plugins-good-1.16.0-r0: task do_fetch: Started\nNOTE: recipe meson-0.50.1-r0: task do_fetch: Succeeded\nNOTE: Running task 250 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxpm_3.5.12.bb:do_fetch)\nNOTE: recipe lttng-tools-2.10.6-r0: task do_fetch: Started\nNOTE: recipe e2fsprogs-1.44.5-r0: task do_fetch: Succeeded\nNOTE: Running task 251 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libgpg-error/libgpg-error_1.36.bb:do_fetch)\nNOTE: recipe tiff-4.0.10-r0: task do_fetch: Started\nNOTE: recipe vte-0.56.1-r0: task do_fetch: Succeeded\nNOTE: Running task 252 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/powertop/powertop_2.10.bb:do_fetch)\nNOTE: recipe p11-kit-0.23.16.1-r0: task do_fetch: Started\nNOTE: recipe psmisc-23.2-r0: task do_fetch: Started\nNOTE: recipe libxvmc-1_1.0.11-r0: task do_fetch: Succeeded\nNOTE: Running task 253 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libfm/libfm-extra_1.3.1.bb:do_fetch)\nNOTE: recipe libxpm-1_3.5.12-r0: task do_fetch: Started\nNOTE: recipe libgpg-error-1.36-r0: task do_fetch: Started\nNOTE: recipe powertop-2.10-r0: task do_fetch: Started\nNOTE: recipe libfm-extra-1.3.1-r0: task do_fetch: Started\nNOTE: recipe gstreamer1.0-plugins-good-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 254 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/util-linux/util-linux_2.32.1.bb:do_fetch)\nNOTE: recipe tiff-4.0.10-r0: task do_fetch: Succeeded\nNOTE: recipe psmisc-23.2-r0: task do_fetch: Succeeded\nNOTE: Running task 255 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/cairo/cairo_1.16.0.bb:do_fetch)\nNOTE: Running task 256 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/initrdscripts/initramfs-live-boot-tiny_1.0.bb:do_fetch)\nNOTE: recipe p11-kit-0.23.16.1-r0: task do_fetch: Succeeded\nNOTE: Running task 257 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/qemu/qemu_4.0.0.bb:do_fetch)\nNOTE: recipe libgpg-error-1.36-r0: task do_fetch: Succeeded\nNOTE: Running task 258 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libdmx_1.1.4.bb:do_fetch)\nNOTE: recipe libxpm-1_3.5.12-r0: task do_fetch: Succeeded\nNOTE: Running task 259 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/icu/icu_64.2.bb:do_fetch)\nNOTE: recipe libfm-extra-1.3.1-r0: task do_fetch: Succeeded\nNOTE: Running task 260 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/nspr/nspr_4.21.bb:do_fetch)\nNOTE: recipe rpm-native-1_4.14.2.1-r0: task do_fetch: Succeeded\nNOTE: Running task 261 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libusb/libusb1_1.0.22.bb:do_fetch)\nNOTE: recipe lttng-tools-2.10.6-r0: task do_fetch: Succeeded\nNOTE: Running task 262 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta-poky/recipes-core/tiny-init/tiny-init.bb:do_fetch)\nNOTE: recipe powertop-2.10-r0: task do_fetch: Succeeded\nNOTE: Running task 263 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/x11-common/xserver-nodm-init_3.0.bb:do_fetch)\nNOTE: recipe util-linux-2.32.1-r0: task do_fetch: Started\nNOTE: recipe initramfs-live-boot-tiny-1.0-r12: task do_fetch: Started\nNOTE: recipe util-linux-2.32.1-r0: task do_fetch: Succeeded\nNOTE: Running task 264 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/dhcp/dhcp_4.4.1.bb:do_fetch)\nNOTE: recipe nspr-4.21-r0: task do_fetch: Started\nNOTE: recipe initramfs-live-boot-tiny-1.0-r12: task do_fetch: Succeeded\nNOTE: Running task 265 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/v86d/v86d_0.1.10.bb:do_fetch)\nNOTE: recipe libdmx-1_1.1.4-r0: task do_fetch: Started\nNOTE: recipe cairo-1.16.0-r0: task do_fetch: Started\nNOTE: recipe nspr-4.21-r0: task do_fetch: Succeeded\nNOTE: Running task 266 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-font/font-alias_1.0.3.bb:do_fetch)\nNOTE: recipe qemu-4.0.0-r0: task do_fetch: Started\nNOTE: recipe libusb1-1.0.22-r0: task do_fetch: Started\nNOTE: recipe icu-64.2-r0: task do_fetch: Started\nNOTE: recipe cairo-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 267 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/drm/libdrm_2.4.98.bb:do_fetch)\nNOTE: recipe icu-64.2-r0: task do_fetch: Succeeded\nNOTE: Running task 268 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/libidn/libidn_1.35.bb:do_fetch)\nNOTE: recipe tiny-init-1.0-r2: task do_fetch: Started\nNOTE: recipe xserver-nodm-init-3.0-r31: task do_fetch: Started\nNOTE: recipe qemu-4.0.0-r0: task do_fetch: Succeeded\nNOTE: recipe tiny-init-1.0-r2: task do_fetch: Succeeded\nNOTE: Running task 269 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/fdisk/gptfdisk_1.0.4.bb:do_fetch)\nNOTE: Running task 270 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/libacpi/libacpi_0.2.bb:do_fetch)\nNOTE: recipe v86d-0.1.10-r2: task do_fetch: Started\nNOTE: recipe xserver-nodm-init-3.0-r31: task do_fetch: Succeeded\nNOTE: Running task 271 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/librsvg/librsvg_2.40.20.bb:do_fetch)\nNOTE: recipe libdmx-1_1.1.4-r0: task do_fetch: Succeeded\nNOTE: Running task 272 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb:do_fetch)\nNOTE: recipe dhcp-4.4.1-r0: task do_fetch: Started\nNOTE: recipe libusb1-1.0.22-r0: task do_fetch: Succeeded\nNOTE: Running task 273 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xrandr_1.5.0.bb:do_fetch)\nNOTE: recipe font-alias-1_1.0.3-r2.3: task do_fetch: Started\nNOTE: recipe v86d-0.1.10-r2: task do_fetch: Succeeded\nNOTE: Running task 274 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xmodmap_1.0.10.bb:do_fetch)\nNOTE: recipe libdrm-2.4.98-r0: task do_fetch: Started\nNOTE: recipe libidn-1.35-r0: task do_fetch: Started\nNOTE: recipe libacpi-0.2-r6: task do_fetch: Started\nNOTE: recipe gptfdisk-1.0.4-r0: task do_fetch: Started\nNOTE: recipe gptfdisk-1.0.4-r0: task do_fetch: Succeeded\nNOTE: Running task 275 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/diffstat/diffstat_1.62.bb:do_fetch)\nNOTE: recipe alsa-lib-1.1.9-r0: task do_fetch: Started\nNOTE: recipe librsvg-2.40.20-r0: task do_fetch: Started\nNOTE: recipe xrandr-1_1.5.0-r0: task do_fetch: Started\nNOTE: recipe alsa-lib-1.1.9-r0: task do_fetch: Succeeded\nNOTE: Running task 276 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-driver/xf86-video-vesa_2.4.0.bb:do_fetch)\nNOTE: recipe distcc-3.3.2-r0: task do_fetch: Succeeded\nNOTE: recipe librsvg-2.40.20-r0: task do_fetch: Succeeded\nNOTE: Running task 277 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python-numpy/python-numpy_1.16.3.bb:do_fetch)\nNOTE: Running task 278 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/zip/zip_3.0.bb:do_fetch)\nNOTE: recipe xmodmap-1_1.0.10-r0: task do_fetch: Started\nNOTE: recipe font-alias-1_1.0.3-r2.3: task do_fetch: Succeeded\nNOTE: Running task 279 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb:do_fetch)\nNOTE: recipe diffstat-1.62-r0: task do_fetch: Started\nNOTE: recipe libdrm-2.4.98-r0: task do_fetch: Succeeded\nNOTE: Running task 280 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/patchelf/patchelf_0.10.bb:do_fetch)\nNOTE: recipe python-numpy-1.16.3-r0: task do_fetch: Started\nNOTE: recipe libacpi-0.2-r6: task do_fetch: Succeeded\nNOTE: recipe zip-3.0-r2: task do_fetch: Started\nNOTE: recipe xf86-video-vesa-2_2.4.0-r0: task do_fetch: Started\nNOTE: Running task 281 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libexif/libexif_0.6.21.bb:do_fetch)\nNOTE: recipe xrandr-1_1.5.0-r0: task do_fetch: Succeeded\nNOTE: Running task 282 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/avahi/avahi-ui_0.7.bb:do_fetch)\nNOTE: recipe zip-3.0-r2: task do_fetch: Succeeded\nNOTE: Running task 283 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/watchdog/watchdog-config.bb:do_fetch)\nNOTE: recipe xmodmap-1_1.0.10-r0: task do_fetch: Succeeded\nNOTE: recipe python-numpy-1.16.3-r0: task do_fetch: Succeeded\nNOTE: Running task 284 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/base-passwd/base-passwd_3.5.29.bb:do_fetch)\nNOTE: Running task 285 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/xz/xz_5.2.4.bb:do_fetch)\nNOTE: recipe libidn-1.35-r0: task do_fetch: Succeeded\nNOTE: Running task 286 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libbsd/libbsd_0.9.1.bb:do_fetch)\nNOTE: recipe sysvinit-inittab-2.88dsf-r10: task do_fetch: Started\nNOTE: recipe sysvinit-inittab-2.88dsf-r10: task do_fetch: Succeeded\nNOTE: Running task 287 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libunistring/libunistring_0.9.10.bb:do_fetch)\nNOTE: recipe dhcp-4.4.1-r0: task do_fetch: Succeeded\nNOTE: Running task 288 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/watchdog/watchdog_5.15.bb:do_fetch)\nNOTE: recipe patchelf-0.10-r0: task do_fetch: Started\nNOTE: recipe watchdog-config-1.0-r0: task do_fetch: Started\nNOTE: recipe libexif-0.6.21-r0: task do_fetch: Started\nNOTE: recipe watchdog-config-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 289 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/xcb-util_0.4.0.bb:do_fetch)\nNOTE: recipe xf86-video-vesa-2_2.4.0-r0: task do_fetch: Succeeded\nNOTE: recipe avahi-ui-0.7-r0: task do_fetch: Started\nNOTE: Running task 290 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/lzip/lzip_1.21.bb:do_fetch)\nNOTE: recipe diffstat-1.62-r0: task do_fetch: Succeeded\nNOTE: recipe libbsd-0.9.1-r0: task do_fetch: Started\nNOTE: Running task 291 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/usbutils/usbutils_012.bb:do_fetch)\nNOTE: recipe base-passwd-3.5.29-r0: task do_fetch: Started\nNOTE: recipe xz-5.2.4-r0: task do_fetch: Started\nNOTE: recipe libunistring-0.9.10-r0: task do_fetch: Started\nNOTE: recipe xz-5.2.4-r0: task do_fetch: Succeeded\nNOTE: Running task 292 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/clutter/clutter-1.0_1.26.2.bb:do_fetch)\nNOTE: recipe watchdog-5.15-r0: task do_fetch: Started\nNOTE: recipe lzip-1.21-r0: task do_fetch: Started\nNOTE: recipe patchelf-0.10-r0: task do_fetch: Succeeded\nNOTE: recipe xcb-util-0.4.0-r0: task do_fetch: Started\nNOTE: Running task 293 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/libgudev/libgudev_232.bb:do_fetch)\nNOTE: recipe libexif-0.6.21-r0: task do_fetch: Succeeded\nNOTE: recipe lzip-1.21-r0: task do_fetch: Succeeded\nNOTE: Running task 294 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-dbus_1.2.8.bb:do_fetch)\nNOTE: Running task 295 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/xtrans_1.4.0.bb:do_fetch)\nNOTE: recipe avahi-ui-0.7-r0: task do_fetch: Succeeded\nNOTE: recipe libbsd-0.9.1-r0: task do_fetch: Succeeded\nNOTE: Running task 296 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/epiphany/epiphany_3.32.2.bb:do_fetch)\nNOTE: Running task 297 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/atk/at-spi2-atk_2.32.0.bb:do_fetch)\nNOTE: recipe usbutils-012-r0: task do_fetch: Started\nNOTE: recipe base-passwd-3.5.29-r0: task do_fetch: Succeeded\nNOTE: Running task 298 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/expect/expect_5.45.4.bb:do_fetch)\nNOTE: recipe iso-codes-4.2-r0: task do_fetch: Succeeded\nNOTE: Running task 299 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-rt/rt-tests/rt-tests_1.1.bb:do_fetch)\nNOTE: recipe watchdog-5.15-r0: task do_fetch: Succeeded\nNOTE: recipe clutter-1.0-1.26.2-r0: task do_fetch: Started\nNOTE: Running task 300 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxfont_1.5.4.bb:do_fetch)\nNOTE: recipe libgudev-232-r0: task do_fetch: Started\nNOTE: recipe xcb-util-0.4.0-r0: task do_fetch: Succeeded\nNOTE: recipe python3-dbus-1.2.8-r0: task do_fetch: Started\nNOTE: recipe at-spi2-atk-2.32.0-r0: task do_fetch: Started\nNOTE: Running task 301 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb:do_fetch)\nNOTE: recipe xtrans-1_1.4.0-r0: task do_fetch: Started\nNOTE: recipe usbutils-012-r0: task do_fetch: Succeeded\nNOTE: recipe libunistring-0.9.10-r0: task do_fetch: Succeeded\nNOTE: Running task 302 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gtk+/gtk+3_3.24.5.bb:do_fetch)\nNOTE: Running task 303 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-gitdb_2.0.5.bb:do_fetch)\nNOTE: recipe xtrans-1_1.4.0-r0: task do_fetch: Succeeded\nNOTE: Running task 304 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-driver/xf86-video-cirrus_1.5.3.bb:do_fetch)\nNOTE: recipe at-spi2-atk-2.32.0-r0: task do_fetch: Succeeded\nNOTE: Running task 305 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_fetch)\nNOTE: recipe epiphany-3.32.2-r0: task do_fetch: Started\nNOTE: recipe expect-5.45.4-r0: task do_fetch: Started\nNOTE: recipe libxfont-1_1.5.4-r0: task do_fetch: Started\nNOTE: recipe rt-tests-1_1.1-r0: task do_fetch: Started\nNOTE: recipe depmodwrapper-cross-1.0-r0: task do_fetch: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_fetch: Started\nNOTE: recipe depmodwrapper-cross-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 306 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libcroco/libcroco_0.6.13.bb:do_fetch)\nNOTE: recipe udev-extraconf-1.1-r0: task do_fetch: Succeeded\nNOTE: recipe python3-gitdb-2.0.5-r0: task do_fetch: Started\nNOTE: Running task 307 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/clutter/clutter-gtk-1.0_1.8.4.bb:do_fetch)\nNOTE: recipe gtk+3-3.24.5-r0: task do_fetch: Started\nNOTE: recipe xf86-video-cirrus-2_1.5.3-r0: task do_fetch: Started\nNOTE: recipe clutter-1.0-1.26.2-r0: task do_fetch: Succeeded\nNOTE: Running task 308 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb:do_fetch)\nNOTE: recipe gtk+3-3.24.5-r0: task do_fetch: Succeeded\nNOTE: Running task 309 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-async_0.6.2.bb:do_fetch)\nNOTE: recipe python3-dbus-1.2.8-r0: task do_fetch: Succeeded\nNOTE: Running task 310 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libfm/libfm_1.3.1.bb:do_fetch)\nNOTE: recipe libgudev-232-r0: task do_fetch: Succeeded\nNOTE: Running task 311 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/settings-daemon/settings-daemon_0.0.2.bb:do_fetch)\nNOTE: recipe libxfont-1_1.5.4-r0: task do_fetch: Succeeded\nNOTE: Running task 312 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb:do_fetch)\nNOTE: recipe clutter-gtk-1.0-1.8.4-r0: task do_fetch: Started\nNOTE: recipe libcroco-0.6.13-r0: task do_fetch: Started\nNOTE: recipe libcroco-0.6.13-r0: task do_fetch: Succeeded\nNOTE: recipe expect-5.45.4-r0: task do_fetch: Succeeded\nNOTE: Running task 313 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/clutter/clutter-gst-3.0_3.0.27.bb:do_fetch)\nNOTE: Running task 314 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/man-pages/man-pages_5.01.bb:do_fetch)\nNOTE: recipe rt-tests-1_1.1-r0: task do_fetch: Succeeded\nNOTE: recipe python3-gitdb-2.0.5-r0: task do_fetch: Succeeded\nNOTE: Running task 315 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/shadow/shadow-securetty_4.6.bb:do_fetch)\nNOTE: Running task 316 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb:do_fetch)\nNOTE: recipe python3-async-0.6.2-r0: task do_fetch: Started\nNOTE: recipe xf86-video-cirrus-2_1.5.3-r0: task do_fetch: Succeeded\nNOTE: Running task 317 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/atk/at-spi2-core_2.32.1.bb:do_fetch)\nNOTE: recipe libfm-1.3.1-r0: task do_fetch: Started\nNOTE: recipe epiphany-3.32.2-r0: task do_fetch: Succeeded\nNOTE: Running task 318 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/texinfo/texinfo_6.5.bb:do_fetch)\nNOTE: recipe qemuwrapper-cross-1.0-r0: task do_fetch: Started\nNOTE: recipe libfm-1.3.1-r0: task do_fetch: Succeeded\nNOTE: Running task 319 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb:do_fetch)\nNOTE: recipe qemuwrapper-cross-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 320 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/boost/boost_1.69.0.bb:do_fetch)\nNOTE: recipe settings-daemon-0.0.2-r0: task do_fetch: Started\nNOTE: recipe clutter-gtk-1.0-1.8.4-r0: task do_fetch: Succeeded\nNOTE: Running task 321 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/kmod/kmod_git.bb:do_fetch)\nNOTE: recipe make-mod-scripts-1.0-r0: task do_fetch: Started\nNOTE: recipe rpcbind-1.2.5-r0: task do_fetch: Started\nNOTE: recipe man-pages-5.01-r0: task do_fetch: Started\nNOTE: recipe python3-async-0.6.2-r0: task do_fetch: Succeeded\nNOTE: Running task 322 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/texi2html/texi2html_5.0.bb:do_fetch)\nNOTE: recipe shadow-securetty-4.6-r3: task do_fetch: Started\nNOTE: recipe make-mod-scripts-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 323 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/gpgme/gpgme_1.13.0.bb:do_fetch)\nNOTE: recipe clutter-gst-3.0-3.0.27-r0: task do_fetch: Started\nNOTE: recipe shadow-securetty-4.6-r3: task do_fetch: Succeeded\nNOTE: Running task 324 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/pciutils/pciutils_3.6.2.bb:do_fetch)\nNOTE: recipe tcf-agent-1.7.0+gitAUTOINC+a022ef2f1a-r0: task do_fetch: Started\nNOTE: recipe at-spi2-core-2.32.1-r0: task do_fetch: Started\nNOTE: recipe settings-daemon-0.0.2-r0: task do_fetch: Succeeded\nNOTE: recipe at-spi2-core-2.32.1-r0: task do_fetch: Succeeded\nNOTE: recipe texinfo-6.5-r0: task do_fetch: Started\nNOTE: Running task 325 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/netbase/netbase_5.6.bb:do_fetch)\nNOTE: Running task 326 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/ifupdown/ifupdown_0.8.16.bb:do_fetch)\nNOTE: recipe boost-1.69.0-r0: task do_fetch: Started\nNOTE: recipe kmod-26-r0: task do_fetch: Started\nNOTE: recipe texinfo-6.5-r0: task do_fetch: Succeeded\nNOTE: Running task 327 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/flex/flex_2.6.0.bb:do_fetch)\nNOTE: recipe rpcbind-1.2.5-r0: task do_fetch: Succeeded\nNOTE: Running task 328 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxtst_1.2.3.bb:do_fetch)\nNOTE: recipe boost-1.69.0-r0: task do_fetch: Succeeded\nNOTE: Running task 329 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb:do_fetch)\nNOTE: recipe pciutils-3.6.2-r0: task do_fetch: Started\nNOTE: recipe texi2html-5.0-r2: task do_fetch: Started\nNOTE: recipe clutter-gst-3.0-3.0.27-r0: task do_fetch: Succeeded\nNOTE: recipe kmod-26-r0: task do_fetch: Succeeded\nNOTE: recipe gpgme-1.13.0-r0: task do_fetch: Started\nNOTE: Running task 330 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/atk/atk_2.32.0.bb:do_fetch)\nNOTE: Running task 331 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/startup-notification/startup-notification_0.12.bb:do_fetch)\nNOTE: recipe ifupdown-0.8.16-r0: task do_fetch: Started\nNOTE: recipe netbase-1_5.6-r0: task do_fetch: Started\nNOTE: recipe man-pages-5.01-r0: task do_fetch: Succeeded\nNOTE: Running task 332 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/mpg123/mpg123_1.25.10.bb:do_fetch)\nNOTE: recipe flex-2.6.0-r0: task do_fetch: Started\nNOTE: recipe cwautomacros-20110201-r0: task do_fetch: Started\nNOTE: recipe libxtst-1_1.2.3-r0: task do_fetch: Started\nNOTE: recipe flex-2.6.0-r0: task do_fetch: Succeeded\nNOTE: Running task 333 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/attr/attr_2.4.47.bb:do_fetch)\nNOTE: recipe cwautomacros-20110201-r0: task do_fetch: Succeeded\nNOTE: Running task 334 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/gnupg/gnupg_2.2.15.bb:do_fetch)\nNOTE: recipe libxtst-1_1.2.3-r0: task do_fetch: Succeeded\nNOTE: Running task 335 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xprop_1.2.4.bb:do_fetch)\nNOTE: recipe startup-notification-0.12-r2: task do_fetch: Started\nNOTE: recipe atk-2.32.0-r0: task do_fetch: Started\nNOTE: recipe pciutils-3.6.2-r0: task do_fetch: Succeeded\nNOTE: Running task 336 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/systemd/systemd-boot_242.bb:do_fetch)\nNOTE: recipe tcf-agent-1.7.0+gitAUTOINC+a022ef2f1a-r0: task do_fetch: Succeeded\nNOTE: Running task 337 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/debianutils/debianutils_4.8.6.1.bb:do_fetch)\nNOTE: recipe atk-2.32.0-r0: task do_fetch: Succeeded\nNOTE: recipe mpg123-1.25.10-r0: task do_fetch: Started\nNOTE: Running task 338 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-driver/xf86-input-vmmouse_13.1.0.bb:do_fetch)\nNOTE: recipe gnupg-2.2.15-r0: task do_fetch: Started\nNOTE: recipe xprop-1_1.2.4-r0: task do_fetch: Started\nNOTE: recipe debianutils-4.8.6.1-r0: task do_fetch: Started\nNOTE: recipe netbase-1_5.6-r0: task do_fetch: Succeeded\nNOTE: Running task 339 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/sysklogd/sysklogd_1.5.1.bb:do_fetch)\nNOTE: recipe attr-2.4.47-r0: task do_fetch: Started\nNOTE: recipe systemd-boot-242+AUTOINC+db2e367bfc-r0: task do_fetch: Started\nNOTE: recipe xf86-input-vmmouse-2_13.1.0-r0: task do_fetch: Started\nNOTE: recipe debianutils-4.8.6.1-r0: task do_fetch: Succeeded\nNOTE: Running task 340 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/webp/libwebp_1.0.2.bb:do_fetch)\nNOTE: recipe startup-notification-0.12-r2: task do_fetch: Succeeded\nNOTE: recipe attr-2.4.47-r0: task do_fetch: Succeeded\nNOTE: Running task 341 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/run-postinsts/run-postinsts_1.0.bb:do_fetch)\nNOTE: Running task 342 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/bash/bash_5.0.bb:do_fetch)\nNOTE: recipe mpg123-1.25.10-r0: task do_fetch: Succeeded\nNOTE: Running task 343 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/ed/ed_1.15.bb:do_fetch)\nNOTE: recipe gpgme-1.13.0-r0: task do_fetch: Succeeded\nNOTE: Running task 344 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/quilt/quilt_0.65.bb:do_fetch)\nNOTE: recipe xprop-1_1.2.4-r0: task do_fetch: Succeeded\nNOTE: Running task 345 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/rgb_1.0.6.bb:do_fetch)\nNOTE: recipe sysklogd-1.5.1-r0: task do_fetch: Started\nNOTE: recipe texi2html-5.0-r2: task do_fetch: Succeeded\nNOTE: Running task 346 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/desktop-file-utils/desktop-file-utils_0.23.bb:do_fetch)\nNOTE: recipe ifupdown-0.8.16-r0: task do_fetch: Succeeded\nNOTE: Running task 347 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/ttf-fonts/ttf-bitstream-vera_1.10.bb:do_fetch)\nNOTE: recipe run-postinsts-1.0-r10: task do_fetch: Started\nNOTE: recipe libwebp-1.0.2-r0: task do_fetch: Started\nNOTE: recipe ed-1.15-r0: task do_fetch: Started\nNOTE: recipe xf86-input-vmmouse-2_13.1.0-r0: task do_fetch: Succeeded\nNOTE: recipe bash-5.0-r0: task do_fetch: Started\nNOTE: Running task 348 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/dos2unix/dos2unix_7.4.0.bb:do_fetch)\nNOTE: recipe run-postinsts-1.0-r10: task do_fetch: Succeeded\nNOTE: Running task 349 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/which/which_2.21.bb:do_fetch)\nNOTE: recipe rgb-1_1.0.6-r0: task do_fetch: Started\nNOTE: recipe gnupg-2.2.15-r0: task do_fetch: Succeeded\nNOTE: recipe quilt-0.65-r0: task do_fetch: Started\nNOTE: Running task 350 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/readline/readline_8.0.bb:do_fetch)\nNOTE: recipe ttf-bitstream-vera-1.10-r7: task do_fetch: Started\nNOTE: recipe desktop-file-utils-0.23-r0: task do_fetch: Started\nNOTE: recipe quilt-0.65-r0: task do_fetch: Succeeded\nNOTE: Running task 351 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/kexec/kexec-tools_2.0.19.bb:do_fetch)\nNOTE: recipe dos2unix-7.4.0-r0: task do_fetch: Started\nNOTE: recipe which-2.21-r3: task do_fetch: Started\nNOTE: recipe sysklogd-1.5.1-r0: task do_fetch: Succeeded\nNOTE: Running task 352 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/stress/stress_1.0.4.bb:do_fetch)\nNOTE: recipe readline-8.0-r0: task do_fetch: Started\nNOTE: recipe ed-1.15-r0: task do_fetch: Succeeded\nNOTE: Running task 353 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/formfactor/formfactor_0.0.bb:do_fetch)\nNOTE: recipe kexec-tools-2.0.19-r0: task do_fetch: Started\nNOTE: recipe readline-8.0-r0: task do_fetch: Succeeded\nNOTE: Running task 354 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/ell/ell_0.20.bb:do_fetch)\nNOTE: recipe stress-1.0.4-r0: task do_fetch: Started\nNOTE: recipe libwebp-1.0.2-r0: task do_fetch: Succeeded\nNOTE: Running task 355 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/man-db/man-db_2.8.5.bb:do_fetch)\nNOTE: recipe rgb-1_1.0.6-r0: task do_fetch: Succeeded\nNOTE: Running task 356 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/cogl/cogl-1.0_1.22.4.bb:do_fetch)\nNOTE: recipe desktop-file-utils-0.23-r0: task do_fetch: Succeeded\nNOTE: Running task 357 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gnome/adwaita-icon-theme_3.32.0.bb:do_fetch)\nNOTE: recipe ttf-bitstream-vera-1.10-r7: task do_fetch: Succeeded\nNOTE: recipe ell-0.20-r0: task do_fetch: Started\nNOTE: Running task 358 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-rt/rt-tests/hwlatdetect_1.1.bb:do_fetch)\nNOTE: recipe formfactor-0.0-r45: task do_fetch: Started\nNOTE: recipe formfactor-0.0-r45: task do_fetch: Succeeded\nNOTE: Running task 359 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/dbus/dbus-glib_0.110.bb:do_fetch)\nNOTE: recipe man-db-2.8.5-r0: task do_fetch: Started\nNOTE: recipe cogl-1.0-1.22.4-r0: task do_fetch: Started\nNOTE: recipe stress-1.0.4-r0: task do_fetch: Succeeded\nNOTE: Running task 360 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/xdg-utils/xdg-utils_1.1.3.bb:do_fetch)\nNOTE: recipe which-2.21-r3: task do_fetch: Succeeded\nNOTE: recipe hwlatdetect-1_1.1-r0: task do_fetch: Started\nNOTE: Running task 361 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxrender_0.9.10.bb:do_fetch)\nNOTE: recipe adwaita-icon-theme-3.32.0-r0: task do_fetch: Started\nNOTE: recipe kexec-tools-2.0.19-r0: task do_fetch: Succeeded\nNOTE: Running task 362 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/dbus/dbus_1.12.14.bb:do_fetch)\nNOTE: recipe hwlatdetect-1_1.1-r0: task do_fetch: Succeeded\nNOTE: recipe dbus-glib-0.110-r0: task do_fetch: Started\nNOTE: Running task 363 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxxf86dga_1.1.5.bb:do_fetch)\nNOTE: recipe dbus-glib-0.110-r0: task do_fetch: Succeeded\nNOTE: Running task 364 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/coreutils/coreutils_8.31.bb:do_fetch)\nNOTE: recipe libxxf86dga-1_1.1.5-r0: task do_fetch: Started\nNOTE: recipe libxrender-1_0.9.10-r0: task do_fetch: Started\nNOTE: recipe xdg-utils-1.1.3-r0: task do_fetch: Started\nNOTE: recipe dbus-1.12.14-r0: task do_fetch: Started\nNOTE: recipe libxrender-1_0.9.10-r0: task do_fetch: Succeeded\nNOTE: Running task 365 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/socat/socat_1.7.3.3.bb:do_fetch)\nNOTE: recipe dbus-1.12.14-r0: task do_fetch: Succeeded\nNOTE: Running task 366 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libassuan/libassuan_2.5.3.bb:do_fetch)\nNOTE: recipe ell-0.20-r0: task do_fetch: Succeeded\nNOTE: Running task 367 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/glib-networking/glib-networking_2.60.2.bb:do_fetch)\nNOTE: recipe dos2unix-7.4.0-r0: task do_fetch: Succeeded\nNOTE: Running task 368 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/autoconf-archive/autoconf-archive_2018.03.13.bb:do_fetch)\nNOTE: recipe man-db-2.8.5-r0: task do_fetch: Succeeded\nNOTE: Running task 369 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xinput_1.6.2.bb:do_fetch)\nNOTE: recipe coreutils-8.31-r0: task do_fetch: Started\nNOTE: recipe cogl-1.0-1.22.4-r0: task do_fetch: Succeeded\nNOTE: recipe socat-1.7.3.3-r0: task do_fetch: Started\nNOTE: Running task 370 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/mingetty/mingetty_1.08.bb:do_fetch)\nNOTE: recipe glib-networking-2.60.2-r0: task do_fetch: Started\nNOTE: recipe autoconf-archive-2018.03.13-r0: task do_fetch: Started\nNOTE: recipe autoconf-archive-2018.03.13-r0: task do_fetch: Succeeded\nNOTE: Running task 371 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/eglinfo/eglinfo-fb_1.0.0.bb:do_fetch)\nNOTE: recipe libassuan-2.5.3-r0: task do_fetch: Started\nNOTE: recipe xinput-1.6.2-r0: task do_fetch: Started\nNOTE: recipe libxxf86dga-1_1.1.5-r0: task do_fetch: Succeeded\nNOTE: Running task 372 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.1.bb:do_fetch)\nNOTE: recipe xdg-utils-1.1.3-r0: task do_fetch: Succeeded\nNOTE: Running task 373 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/mtools/mtools_4.0.23.bb:do_fetch)\nNOTE: recipe mingetty-1.08-r3: task do_fetch: Started\nNOTE: recipe eglinfo-fb-1.0.0-r0: task do_fetch: Started\nNOTE: recipe btrfs-tools-5.1-r0: task do_fetch: Started\nNOTE: recipe mtools-4.0.23-r0: task do_fetch: Started\nNOTE: recipe btrfs-tools-5.1-r0: task do_fetch: Succeeded\nNOTE: Running task 374 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/makedevs/makedevs_1.0.1.bb:do_fetch)\nNOTE: recipe mtools-4.0.23-r0: task do_fetch: Succeeded\nNOTE: Running task 375 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-pygobject_3.32.1.bb:do_fetch)\nNOTE: recipe makedevs-1.0.1-r0: task do_fetch: Started\nNOTE: recipe glib-networking-2.60.2-r0: task do_fetch: Succeeded\nNOTE: Running task 376 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/pong-clock/pong-clock_1.0.bb:do_fetch)\nNOTE: recipe socat-1.7.3.3-r0: task do_fetch: Succeeded\nNOTE: Running task 377 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-pygments_2.4.2.bb:do_fetch)\nNOTE: recipe libassuan-2.5.3-r0: task do_fetch: Succeeded\nNOTE: Running task 378 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/perl-sanity/perl_5.30.0.bb:do_fetch)\nNOTE: recipe makedevs-1.0.1-r0: task do_fetch: Succeeded\nNOTE: Running task 379 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/initrdscripts/initramfs-live-install-efi-testfs_1.0.bb:do_fetch)\nNOTE: recipe mingetty-1.08-r3: task do_fetch: Succeeded\nNOTE: Running task 380 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gtk-doc/gtk-doc_1.30.bb:do_fetch)\nNOTE: recipe eglinfo-fb-1.0.0-r0: task do_fetch: Succeeded\nNOTE: recipe python3-pygobject-3.32.1-r0: task do_fetch: Started\nNOTE: Running task 381 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/x11perf_1.6.1.bb:do_fetch)\nNOTE: recipe xinput-1.6.2-r0: task do_fetch: Succeeded\nNOTE: Running task 382 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/perl/libxml-namespacesupport-perl_1.12.bb:do_fetch)\nNOTE: recipe initramfs-live-install-efi-testfs-1.0-r0: task do_fetch: Started\nNOTE: recipe pong-clock-1.0-r0: task do_fetch: Started\nNOTE: recipe initramfs-live-install-efi-testfs-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 383 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/acpid/acpid_2.0.31.bb:do_fetch)\nNOTE: recipe python3-pygments-2.4.2-r0: task do_fetch: Started\nNOTE: recipe pong-clock-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 384 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb:do_fetch)\nNOTE: recipe perl-5.30.0-r0: task do_fetch: Started\nNOTE: recipe adwaita-icon-theme-3.32.0-r0: task do_fetch: Succeeded\nNOTE: Running task 385 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/sysprof/sysprof_3.32.0.bb:do_fetch)\nNOTE: recipe gtk-doc-1.30-r0: task do_fetch: Started\nNOTE: recipe coreutils-8.31-r0: task do_fetch: Succeeded\nNOTE: recipe libxml-namespacesupport-perl-1.12-r0: task do_fetch: Started\nNOTE: Running task 386 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-driver/xf86-video-fbdev_0.5.0.bb:do_fetch)\nNOTE: recipe x11perf-1_1.6.1-r0: task do_fetch: Started\nNOTE: recipe perl-5.30.0-r0: task do_fetch: Succeeded\nNOTE: Running task 387 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/cmake/cmake_3.14.1.bb:do_fetch)\nNOTE: recipe gtk-doc-1.30-r0: task do_fetch: Succeeded\nNOTE: Running task 388 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-pycairo_1.18.1.bb:do_fetch)\nNOTE: recipe libxml-namespacesupport-perl-1.12-r0: task do_fetch: Succeeded\nNOTE: Running task 389 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxxf86vm_1.1.4.bb:do_fetch)\nNOTE: recipe init-ifupdown-1.0-r7: task do_fetch: Started\nNOTE: recipe acpid-2.0.31-r0: task do_fetch: Started\nNOTE: recipe init-ifupdown-1.0-r7: task do_fetch: Succeeded\nNOTE: recipe python3-pygobject-3.32.1-r0: task do_fetch: Succeeded\nNOTE: Running task 390 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxext_1.3.4.bb:do_fetch)\nNOTE: Running task 391 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/nss/nss_3.44.bb:do_fetch)\nNOTE: recipe sysprof-3.32.0-r0: task do_fetch: Started\nNOTE: recipe cmake-3.14.1-r0: task do_fetch: Started\nNOTE: recipe python3-pycairo-1.18.1-r0: task do_fetch: Started\nNOTE: recipe libxext-1_1.3.4-r0: task do_fetch: Started\nNOTE: recipe xf86-video-fbdev-2_0.5.0-r0: task do_fetch: Started\nNOTE: recipe cmake-3.14.1-r0: task do_fetch: Succeeded\nNOTE: recipe nss-3.44-r0: task do_fetch: Started\nNOTE: Running task 392 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/shadow/shadow_4.6.bb:do_fetch)\nNOTE: recipe x11perf-1_1.6.1-r0: task do_fetch: Succeeded\nNOTE: Running task 393 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-extras_1.0.0.bb:do_fetch)\nNOTE: recipe libxext-1_1.3.4-r0: task do_fetch: Succeeded\nNOTE: Running task 394 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/gstreamer/gst-validate_1.16.0.bb:do_fetch)\nNOTE: recipe nss-3.44-r0: task do_fetch: Succeeded\nNOTE: recipe libxxf86vm-1_1.1.4-r0: task do_fetch: Started\nNOTE: Running task 395 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/libnsl/libnsl2_git.bb:do_fetch)\nNOTE: recipe acpid-2.0.31-r0: task do_fetch: Succeeded\nNOTE: Running task 396 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/findutils/findutils_4.6.0.bb:do_fetch)\nNOTE: recipe sysprof-3.32.0-r0: task do_fetch: Succeeded\nNOTE: Running task 397 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/libepoxy/libepoxy_1.5.3.bb:do_fetch)\nNOTE: recipe shadow-4.6-r0: task do_fetch: Started\nNOTE: recipe python3-extras-1.0.0-r0: task do_fetch: Started\nNOTE: recipe python3-pygments-2.4.2-r0: task do_fetch: Succeeded\nNOTE: Running task 398 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/pinentry/pinentry_1.1.0.bb:do_fetch)\nNOTE: recipe xf86-video-fbdev-2_0.5.0-r0: task do_fetch: Succeeded\nNOTE: recipe python3-pycairo-1.18.1-r0: task do_fetch: Succeeded\nNOTE: Running task 399 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/timezone/tzdata.bb:do_fetch)\nNOTE: recipe libxxf86vm-1_1.1.4-r0: task do_fetch: Succeeded\nNOTE: Running task 400 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/perl/liburi-perl_1.74.bb:do_fetch)\nNOTE: Running task 401 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/gawk/gawk_5.0.0.bb:do_fetch)\nNOTE: recipe shadow-4.6-r0: task do_fetch: Succeeded\nNOTE: Running task 402 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/patch/patch_2.7.6.bb:do_fetch)\nNOTE: recipe gst-validate-1.16.0-r0: task do_fetch: Started\nNOTE: recipe libnsl2-1.2.0+gitAUTOINC+37c5ffe303-r0: task do_fetch: Started\nNOTE: recipe python3-extras-1.0.0-r0: task do_fetch: Succeeded\nNOTE: Running task 403 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/libva/libva_2.4.1.bb:do_fetch)\nNOTE: recipe findutils-4.6.0-r0: task do_fetch: Started\nNOTE: recipe libnsl2-1.2.0+gitAUTOINC+37c5ffe303-r0: task do_fetch: Succeeded\nNOTE: Running task 404 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libatomic-ops/libatomic-ops_7.6.10.bb:do_fetch)\nNOTE: recipe libepoxy-1.5.3-r0: task do_fetch: Started\nNOTE: recipe liburi-perl-1.74-r0: task do_fetch: Started\nNOTE: recipe pinentry-1.1.0-r0: task do_fetch: Started\nNOTE: recipe tzdata-2019a-r0: task do_fetch: Started\nNOTE: recipe patch-2.7.6-r0: task do_fetch: Started\nNOTE: recipe bash-5.0-r0: task do_fetch: Succeeded\nNOTE: recipe gst-validate-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 405 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/lsb/lsb_5.0.bb:do_fetch)\nNOTE: recipe tzdata-2019a-r0: task do_fetch: Succeeded\nNOTE: Running task 406 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libmpc/libmpc_1.1.0.bb:do_fetch)\nNOTE: Running task 407 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_fetch)\nNOTE: recipe gawk-5.0.0-r0: task do_fetch: Started\nNOTE: recipe libva-2.4.1-r0: task do_fetch: Started\nNOTE: recipe libepoxy-1.5.3-r0: task do_fetch: Succeeded\nNOTE: Running task 408 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/parted/parted_3.2.bb:do_fetch)\nNOTE: recipe libatomic-ops-7.6.10-r0: task do_fetch: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_fetch: Started\nNOTE: recipe libmpc-1.1.0-r0: task do_fetch: Started\nNOTE: recipe findutils-4.6.0-r0: task do_fetch: Succeeded\nNOTE: Running task 409 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libcap-ng/libcap-ng_0.7.9.bb:do_fetch)\nNOTE: recipe lsb-5.0-r0: task do_fetch: Started\nNOTE: recipe liburi-perl-1.74-r0: task do_fetch: Succeeded\nNOTE: recipe initramfs-module-install-1.0-r1: task do_fetch: Succeeded\nNOTE: Running task 410 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-nose_1.3.7.bb:do_fetch)\nNOTE: recipe libmpc-1.1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 411 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/ovmf/ovmf_git.bb:do_fetch)\nNOTE: Running task 412 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-proto/xcb-proto_1.13.bb:do_fetch)\nNOTE: recipe pinentry-1.1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 413 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/libcgroup/libcgroup_0.41.bb:do_fetch)\nNOTE: recipe patch-2.7.6-r0: task do_fetch: Succeeded\nNOTE: Running task 414 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/gmp/gmp_6.1.2.bb:do_fetch)\nNOTE: recipe libcap-ng-0.7.9-r0: task do_fetch: Started\nNOTE: recipe parted-3.2-r1: task do_fetch: Started\nNOTE: recipe libva-2.4.1-r0: task do_fetch: Succeeded\nNOTE: Running task 415 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb:do_fetch)\nNOTE: recipe libatomic-ops-7.6.10-r0: task do_fetch: Succeeded\nNOTE: Running task 416 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/rng-tools/rng-tools_6.6.bb:do_fetch)\nNOTE: recipe python3-nose-1.3.7-r0: task do_fetch: Started\nNOTE: recipe ovmf-git-r0: task do_fetch: Started\nNOTE: recipe xcb-proto-1.13-r0: task do_fetch: Started\nNOTE: recipe parted-3.2-r1: task do_fetch: Succeeded\nNOTE: recipe lsb-5.0-r0: task do_fetch: Succeeded\nNOTE: Running task 417 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/mini-x-session/mini-x-session_0.1.bb:do_fetch)\nNOTE: Running task 418 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libsoup/libsoup-2.4_2.66.2.bb:do_fetch)\nNOTE: recipe libcgroup-0.41-r0: task do_fetch: Started\nNOTE: recipe xcb-proto-1.13-r0: task do_fetch: Succeeded\nNOTE: recipe gawk-5.0.0-r0: task do_fetch: Succeeded\nNOTE: Running task 419 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb:do_fetch)\nNOTE: Running task 420 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/npth/npth_1.6.bb:do_fetch)\nNOTE: recipe gmp-6.1.2-r0: task do_fetch: Started\nNOTE: recipe gmp-6.1.2-r0: task do_fetch: Succeeded\nNOTE: Running task 421 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/attr/acl_2.2.52.bb:do_fetch)\nNOTE: recipe libcap-ng-0.7.9-r0: task do_fetch: Succeeded\nNOTE: Running task 422 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/systemtap/systemtap_git.bb:do_fetch)\nNOTE: recipe python3-nose-1.3.7-r0: task do_fetch: Succeeded\nNOTE: Running task 423 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.9.bb:do_fetch)\nNOTE: recipe icecc-create-env-0.1-r2: task do_fetch: Started\nNOTE: recipe ovmf-git-r0: task do_fetch: Succeeded\nNOTE: Running task 424 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/libtheora/libtheora_1.1.1.bb:do_fetch)\nNOTE: recipe rng-tools-6.6-r0: task do_fetch: Started\nNOTE: recipe icecc-create-env-0.1-r2: task do_fetch: Succeeded\nNOTE: Running task 425 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.9.bb:do_fetch)\nNOTE: recipe libcgroup-0.41-r0: task do_fetch: Succeeded\nNOTE: Running task 426 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/l3afpad/l3afpad_git.bb:do_fetch)\nNOTE: recipe mini-x-session-0.1-r4: task do_fetch: Started\nNOTE: recipe libsoup-2.4-2.66.2-r0: task do_fetch: Started\nNOTE: recipe mini-x-session-0.1-r4: task do_fetch: Succeeded\nNOTE: Running task 427 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/lame/lame_3.100.bb:do_fetch)\nNOTE: recipe npth-1.6-r0: task do_fetch: Started\nNOTE: recipe valgrind-3.15.0-r0: task do_fetch: Started\nNOTE: recipe systemd-boot-242+AUTOINC+db2e367bfc-r0: task do_fetch: Succeeded\nNOTE: recipe alsa-utils-scripts-1.1.9-r0: task do_fetch: Started\nNOTE: Running task 428 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xev_1.2.3.bb:do_fetch)\nNOTE: recipe systemtap-4.1-r0: task do_fetch: Started\nNOTE: recipe acl-2.2.52-r0: task do_fetch: Started\nNOTE: recipe libsamplerate0-0.1.9-r1: task do_fetch: Started\nNOTE: recipe libtheora-1.1.1-r1: task do_fetch: Started\nNOTE: recipe rng-tools-6.6-r0: task do_fetch: Succeeded\nNOTE: Running task 429 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python-numpy/python3-numpy_1.16.3.bb:do_fetch)\nNOTE: recipe l3afpad-0.8.18.1.11+gitAUTOINC+3cdccdc950-r0: task do_fetch: Started\nNOTE: recipe lame-3.100-r0: task do_fetch: Started\nNOTE: recipe acl-2.2.52-r0: task do_fetch: Succeeded\nNOTE: Running task 430 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.26.bb:do_fetch)\nNOTE: recipe xev-1_1.2.3-r0: task do_fetch: Started\nNOTE: recipe python3-numpy-1.16.3-r0: task do_fetch: Started\nNOTE: recipe xkeyboard-config-2.26-r0: task do_fetch: Started\nNOTE: recipe npth-1.6-r0: task do_fetch: Succeeded\nNOTE: Running task 431 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/subversion/subversion_1.12.0.bb:do_fetch)\nNOTE: recipe python3-numpy-1.16.3-r0: task do_fetch: Succeeded\nNOTE: Running task 432 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/blktool/blktool_4-7.1.bb:do_fetch)\nNOTE: recipe libsoup-2.4-2.66.2-r0: task do_fetch: Succeeded\nNOTE: Running task 433 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/base-files/base-files_3.0.14.bb:do_fetch)\nNOTE: recipe alsa-utils-scripts-1.1.9-r0: task do_fetch: Succeeded\nNOTE: Running task 434 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/wayland/weston_6.0.0.bb:do_fetch)\nNOTE: recipe xev-1_1.2.3-r0: task do_fetch: Succeeded\nNOTE: recipe libtheora-1.1.1-r1: task do_fetch: Succeeded\nNOTE: Running task 435 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_fetch)\nNOTE: Running task 436 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/gnu-config/gnu-config_git.bb:do_fetch)\nNOTE: recipe blktool-4-7.1-r0: task do_fetch: Started\nNOTE: recipe subversion-1.12.0-r0: task do_fetch: Started\nNOTE: recipe base-files-3.0.14-r89: task do_fetch: Started\nNOTE: recipe libsamplerate0-0.1.9-r1: task do_fetch: Succeeded\nNOTE: recipe lame-3.100-r0: task do_fetch: Succeeded\nNOTE: recipe l3afpad-0.8.18.1.11+gitAUTOINC+3cdccdc950-r0: task do_fetch: Succeeded\nNOTE: Running task 437 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/bc/bc_1.07.1.bb:do_fetch)\nNOTE: Running task 438 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.60.1.bb:do_fetch)\nNOTE: recipe xkeyboard-config-2.26-r0: task do_fetch: Succeeded\nNOTE: Running task 439 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/xcb-util-image_0.4.0.bb:do_fetch)\nNOTE: Running task 440 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/perl/libxml-perl_0.08.bb:do_fetch)\nNOTE: recipe base-files-3.0.14-r89: task do_fetch: Succeeded\nNOTE: Running task 441 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/at/at_3.1.23.bb:do_fetch)\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_fetch: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_fetch: Succeeded\nNOTE: recipe gnu-config-20190501+gitAUTOINC+b98424c249-r0: task do_fetch: Started\nNOTE: Running task 442 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta-selftest/recipes-test/selftest-ed/selftest-ed_1.14.1.bb:do_fetch)\nNOTE: recipe weston-6.0.0-r0: task do_fetch: Started\nNOTE: recipe gnu-config-20190501+gitAUTOINC+b98424c249-r0: task do_fetch: Succeeded\nNOTE: Running task 443 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libfontenc_1.1.4.bb:do_fetch)\nNOTE: recipe xcb-util-image-0.4.0-r0: task do_fetch: Started\nNOTE: recipe gobject-introspection-1.60.1-r0: task do_fetch: Started\nNOTE: recipe libxml-perl-0.08-r3: task do_fetch: Started\nNOTE: recipe bc-1.07.1-r0: task do_fetch: Started\nNOTE: recipe blktool-4-7.1-r0: task do_fetch: Succeeded\nNOTE: Running task 444 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/gnutls/libtasn1_4.13.bb:do_fetch)\nNOTE: recipe gobject-introspection-1.60.1-r0: task do_fetch: Succeeded\nNOTE: recipe bc-1.07.1-r0: task do_fetch: Succeeded\nNOTE: Running task 445 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb:do_fetch)\nNOTE: Running task 446 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/libtool/libtool-cross_2.4.6.bb:do_fetch)\nNOTE: recipe at-3.1.23-r0: task do_fetch: Started\nNOTE: recipe selftest-ed-1.14.1-r0: task do_fetch: Started\nNOTE: recipe libfontenc-1_1.1.4-r0: task do_fetch: Started\nNOTE: recipe libfontenc-1_1.1.4-r0: task do_fetch: Succeeded\nNOTE: Running task 447 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/dwarfsrcfiles/dwarfsrcfiles.bb:do_fetch)\nNOTE: recipe tcp-wrappers-7.6-r10: task do_fetch: Started\nNOTE: recipe libtasn1-4.13-r0: task do_fetch: Started\nNOTE: recipe libtool-cross-2.4.6-r0: task do_fetch: Started\nNOTE: recipe xcb-util-image-0.4.0-r0: task do_fetch: Succeeded\nNOTE: recipe libxml-perl-0.08-r3: task do_fetch: Succeeded\nNOTE: Running task 448 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python-scons_3.0.5.bb:do_fetch)\nNOTE: Running task 449 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.16.0.bb:do_fetch)\nNOTE: recipe selftest-ed-1.14.1-r0: task do_fetch: Succeeded\nNOTE: Running task 450 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/wayland/mtdev_1.1.5.bb:do_fetch)\nNOTE: recipe at-3.1.23-r0: task do_fetch: Succeeded\nNOTE: Running task 451 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/syslinux/syslinux_6.04-pre2.bb:do_fetch)\nNOTE: recipe weston-6.0.0-r0: task do_fetch: Succeeded\nNOTE: Running task 452 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/pulseaudio/pulseaudio_12.2.bb:do_fetch)\nNOTE: recipe libtool-cross-2.4.6-r0: task do_fetch: Succeeded\nNOTE: Running task 453 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/vulkan/assimp_4.1.0.bb:do_fetch)\nNOTE: recipe dwarfsrcfiles-1.0-r0: task do_fetch: Started\nNOTE: recipe subversion-1.12.0-r0: task do_fetch: Succeeded\nNOTE: recipe libtasn1-4.13-r0: task do_fetch: Succeeded\nNOTE: Running task 454 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/acpica/acpica_20190509.bb:do_fetch)\nNOTE: Running noexec task 455 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/linux/kernel-devsrc.bb:do_fetch)\nNOTE: Running task 456 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xdpyinfo_1.3.2.bb:do_fetch)\nNOTE: recipe dwarfsrcfiles-1.0-r0: task do_fetch: Succeeded\nNOTE: recipe python-scons-3.0.5-r0: task do_fetch: Started\nNOTE: Running task 457 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_fetch)\nNOTE: recipe tcp-wrappers-7.6-r10: task do_fetch: Succeeded\nNOTE: Running task 458 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxv_1.0.11.bb:do_fetch)\nNOTE: recipe python-scons-3.0.5-r0: task do_fetch: Succeeded\nNOTE: Running task 459 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/vim/vim_8.1.1240.bb:do_fetch)\nNOTE: recipe gstreamer1.0-vaapi-1.16.0-r0: task do_fetch: Started\nNOTE: recipe mtdev-1.1.5-r0: task do_fetch: Started\nNOTE: recipe syslinux-6.04-pre2-r0: task do_fetch: Started\nNOTE: recipe valgrind-3.15.0-r0: task do_fetch: Succeeded\nNOTE: recipe assimp-4.1.0-r0: task do_fetch: Started\nNOTE: recipe syslinux-6.04-pre2-r0: task do_fetch: Succeeded\nNOTE: Running task 460 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing_2018.1.bb:do_fetch)\nNOTE: Running task 461 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/gnutls/gnutls_3.6.7.bb:do_fetch)\nNOTE: recipe pulseaudio-12.2-r0: task do_fetch: Started\nNOTE: recipe xdpyinfo-1_1.3.2-r0: task do_fetch: Started\nNOTE: recipe acpica-20190509-r0: task do_fetch: Started\nNOTE: recipe acpica-20190509-r0: task do_fetch: Succeeded\nNOTE: Running task 462 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.0.bb:do_fetch)\nNOTE: recipe dosfstools-4.1-r0: task do_fetch: Started\nNOTE: recipe libxv-1.0.11-r0: task do_fetch: Started\nNOTE: recipe mtdev-1.1.5-r0: task do_fetch: Succeeded\nNOTE: Running task 463 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libnl/libnl_3.4.0.bb:do_fetch)\nNOTE: recipe dosfstools-4.1-r0: task do_fetch: Succeeded\nNOTE: recipe gstreamer1.0-vaapi-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 464 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/sed/sed_4.2.2.bb:do_fetch)\nNOTE: Running task 465 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/unzip/unzip_6.0.bb:do_fetch)\nNOTE: recipe vim-8.1.1240-r0: task do_fetch: Started\nNOTE: recipe gnome-desktop-testing-2018.1-r0: task do_fetch: Started\nNOTE: recipe gnutls-3.6.7-r0: task do_fetch: Started\nNOTE: recipe xdpyinfo-1_1.3.2-r0: task do_fetch: Succeeded\nNOTE: Running task 466 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.0.bb:do_fetch)\nNOTE: recipe pulseaudio-12.2-r0: task do_fetch: Succeeded\nNOTE: Running task 467 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/dmidecode/dmidecode_3.2.bb:do_fetch)\nNOTE: recipe gstreamer1.0-plugins-base-1.16.0-r0: task do_fetch: Started\nNOTE: recipe unzip-1_6.0-r5: task do_fetch: Started\nNOTE: recipe libnl-1_3.4.0-r0: task do_fetch: Started\nNOTE: recipe systemtap-4.1-r0: task do_fetch: Succeeded\nNOTE: recipe sed-4.2.2-r0: task do_fetch: Started\nNOTE: Running task 468 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/lzop/lzop_1.04.bb:do_fetch)\nNOTE: recipe libxv-1.0.11-r0: task do_fetch: Succeeded\nNOTE: Running task 469 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-font/encodings_1.0.4.bb:do_fetch)\nNOTE: recipe unzip-1_6.0-r5: task do_fetch: Succeeded\nNOTE: Running task 470 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/shared-mime-info/shared-mime-info_1.10.bb:do_fetch)\nNOTE: recipe dmidecode-3.2-r0: task do_fetch: Started\nNOTE: recipe gstreamer1.0-plugins-bad-1.16.0-r0: task do_fetch: Started\nNOTE: recipe encodings-1_1.0.4-r2.1: task do_fetch: Started\nNOTE: recipe shared-mime-info-1.10-r0: task do_fetch: Started\nNOTE: recipe lzop-1.04-r0: task do_fetch: Started\nNOTE: recipe lzop-1.04-r0: task do_fetch: Succeeded\nNOTE: Running task 471 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gcr/gcr_3.28.1.bb:do_fetch)\nNOTE: recipe shared-mime-info-1.10-r0: task do_fetch: Succeeded\nNOTE: recipe gnome-desktop-testing-2018.1-r0: task do_fetch: Succeeded\nNOTE: Running task 472 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/opkg/opkg_0.4.0.bb:do_fetch)\nNOTE: Running task 473 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/glide/glide_0.13.2.bb:do_fetch)\nNOTE: recipe opkg-1_0.4.0-r0: task do_fetch: Started\nNOTE: recipe glide-0.13.2-r0: task do_fetch: Started\nNOTE: recipe gcr-3.28.1-r0: task do_fetch: Started\nNOTE: recipe dmidecode-3.2-r0: task do_fetch: Succeeded\nNOTE: Running task 474 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/msmtp/msmtp_1.8.4.bb:do_fetch)\nNOTE: recipe libnl-1_3.4.0-r0: task do_fetch: Succeeded\nNOTE: Running task 475 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/go/go_1.12.bb:do_fetch)\nNOTE: recipe gnutls-3.6.7-r0: task do_fetch: Succeeded\nNOTE: Running task 476 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxrandr_1.5.2.bb:do_fetch)\nNOTE: recipe msmtp-1.8.4-r0: task do_fetch: Started\nNOTE: recipe encodings-1_1.0.4-r2.1: task do_fetch: Succeeded\nNOTE: Running task 477 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/sudo/sudo_1.8.27.bb:do_fetch)\nNOTE: recipe gstreamer1.0-plugins-bad-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 478 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/lighttpd/lighttpd_1.4.53.bb:do_fetch)\nNOTE: recipe go-1.12.5-r0: task do_fetch: Started\nNOTE: recipe opkg-1_0.4.0-r0: task do_fetch: Succeeded\nNOTE: recipe gstreamer1.0-plugins-base-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 479 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/alsa/alsa-utils_1.1.9.bb:do_fetch)\nNOTE: Running task 480 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/systemd/systemd-conf_242.bb:do_fetch)\nNOTE: recipe go-1.12.5-r0: task do_fetch: Succeeded\nNOTE: Running task 481 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/ruby/ruby_2.5.3.bb:do_fetch)\nNOTE: recipe libxrandr-1_1.5.2-r0: task do_fetch: Started\nNOTE: recipe libxrandr-1_1.5.2-r0: task do_fetch: Succeeded\nNOTE: Running task 482 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/bison/bison_3.3.2.bb:do_fetch)\nNOTE: recipe lighttpd-1.4.53-r0: task do_fetch: Started\nNOTE: recipe sudo-1.8.27-r0: task do_fetch: Started\nNOTE: recipe glide-0.13.2-r0: task do_fetch: Succeeded\nNOTE: Running task 483 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/connman/connman_1.37.bb:do_fetch)\nNOTE: recipe systemd-conf-242-r0: task do_fetch: Started\nNOTE: recipe msmtp-1.8.4-r0: task do_fetch: Succeeded\nNOTE: Running task 484 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb:do_fetch)\nNOTE: recipe systemd-conf-242-r0: task do_fetch: Succeeded\nNOTE: Running task 485 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxshmfence_1.3.bb:do_fetch)\nNOTE: recipe alsa-utils-1.1.9-r0: task do_fetch: Started\nNOTE: recipe gcr-3.28.1-r0: task do_fetch: Succeeded\nNOTE: Running noexec task 486 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/gcc/gcc-sanitizers_9.1.bb:do_fetch)\nNOTE: recipe ruby-2.5.3-r0: task do_fetch: Started\nNOTE: Running task 487 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/meta/wic-tools.bb:do_fetch)\nNOTE: recipe alsa-utils-1.1.9-r0: task do_fetch: Succeeded\nNOTE: Running task 488 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-font/font-util_1.3.1.bb:do_fetch)\nNOTE: recipe ruby-2.5.3-r0: task do_fetch: Succeeded\nNOTE: Running task 489 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/automake/automake_1.16.1.bb:do_fetch)\nNOTE: recipe bison-3.3.2-r0: task do_fetch: Started\nNOTE: recipe connman-1.37-r0: task do_fetch: Started\nNOTE: recipe bison-3.3.2-r0: task do_fetch: Succeeded\nNOTE: Running task 490 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-proto/xorgproto_2018.4.bb:do_fetch)\nNOTE: recipe wic-tools-1.0-r0: task do_fetch: Started\nNOTE: recipe libnss-mdns-0.10-r7: task do_fetch: Started\nNOTE: recipe wic-tools-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 491 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libical/libical_2.0.0.bb:do_fetch)\nNOTE: recipe libxshmfence-1.3-r0: task do_fetch: Started\nNOTE: recipe lighttpd-1.4.53-r0: task do_fetch: Succeeded\nNOTE: recipe font-util-1.3.1-r0: task do_fetch: Started\nNOTE: Running task 492 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/modutils-initscripts/modutils-initscripts.bb:do_fetch)\nNOTE: recipe automake-1.16.1-r0: task do_fetch: Started\nNOTE: recipe font-util-1.3.1-r0: task do_fetch: Succeeded\nNOTE: Running task 493 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb:do_fetch)\nNOTE: recipe sudo-1.8.27-r0: task do_fetch: Succeeded\nNOTE: Running task 494 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libpciaccess_0.14.bb:do_fetch)\nNOTE: recipe libical-2.0.0-r0: task do_fetch: Started\nNOTE: recipe automake-1.16.1-r0: task do_fetch: Succeeded\nNOTE: Running task 495 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-font/xorg-minimal-fonts.bb:do_fetch)\nNOTE: recipe xorgproto-2018.4-r0: task do_fetch: Started\nNOTE: recipe xorgproto-2018.4-r0: task do_fetch: Succeeded\nNOTE: Running task 496 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/intltool/intltool_0.51.0.bb:do_fetch)\nNOTE: recipe modutils-initscripts-1.0-r7: task do_fetch: Started\nNOTE: recipe modutils-initscripts-1.0-r7: task do_fetch: Succeeded\nNOTE: Running task 497 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xrestop/xrestop_0.4.bb:do_fetch)\nNOTE: recipe connman-1.37-r0: task do_fetch: Succeeded\nNOTE: Running task 498 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxcomposite_0.4.5.bb:do_fetch)\nNOTE: recipe xorg-minimal-fonts-1_1.0-r2: task do_fetch: Started\nNOTE: recipe lrzsz-0.12.20-r6: task do_fetch: Started\nNOTE: recipe libnss-mdns-0.10-r7: task do_fetch: Succeeded\nNOTE: recipe xorg-minimal-fonts-1_1.0-r2: task do_fetch: Succeeded\nNOTE: Running task 499 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/mmc/mmc-utils_git.bb:do_fetch)\nNOTE: Running task 500 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xkbcomp_1.4.2.bb:do_fetch)\nNOTE: recipe libxshmfence-1.3-r0: task do_fetch: Succeeded\nNOTE: Running task 501 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/go-examples/go-helloworld_0.1.bb:do_fetch)\nNOTE: recipe libpciaccess-0.14-r0: task do_fetch: Started\nNOTE: recipe intltool-0.51.0-r0: task do_fetch: Started\nNOTE: recipe intltool-0.51.0-r0: task do_fetch: Succeeded\nNOTE: Running task 502 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/initrdscripts/initramfs-live-install-efi_1.0.bb:do_fetch)\nNOTE: recipe xrestop-0.4-r3: task do_fetch: Started\nNOTE: recipe libical-2.0.0-r0: task do_fetch: Succeeded\nNOTE: Running task 503 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/asciidoc/asciidoc_8.6.9.bb:do_fetch)\nNOTE: recipe libxcomposite-1_0.4.5-r0: task do_fetch: Started\nNOTE: recipe xkbcomp-1.4.2-r0: task do_fetch: Started\nNOTE: recipe mmc-utils-0.1+gitAUTOINC+aef913e31b-r0: task do_fetch: Started\nNOTE: recipe libxcomposite-1_0.4.5-r0: task do_fetch: Succeeded\nNOTE: Running task 504 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/meta/meta-extsdk-toolchain.bb:do_fetch)\nNOTE: recipe go-helloworld-0.1-r0: task do_fetch: Started\nNOTE: recipe initramfs-live-install-efi-1.0-r1: task do_fetch: Started\nNOTE: recipe initramfs-live-install-efi-1.0-r1: task do_fetch: Succeeded\nNOTE: Running task 505 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/rpcsvc-proto/rpcsvc-proto.bb:do_fetch)\nNOTE: recipe lrzsz-0.12.20-r6: task do_fetch: Succeeded\nNOTE: Running task 506 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/perl/libxml-sax-base-perl_1.09.bb:do_fetch)\nNOTE: recipe libpciaccess-0.14-r0: task do_fetch: Succeeded\nNOTE: Running task 507 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxkbfile_1.1.0.bb:do_fetch)\nNOTE: recipe meta-extsdk-toolchain-1.0-r0: task do_fetch: Started\nNOTE: recipe asciidoc-8.6.9+py3-gitAUTOINC+618f6e6f6b-r0: task do_fetch: Started\nNOTE: recipe meta-extsdk-toolchain-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 508 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libcap/libcap_2.27.bb:do_fetch)\nNOTE: recipe xrestop-0.4-r3: task do_fetch: Succeeded\nNOTE: Running noexec task 509 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/os-release/os-release.bb:do_fetch)\nNOTE: Running task 510 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/ttf-fonts/liberation-fonts_2.00.1.bb:do_fetch)\nNOTE: recipe mmc-utils-0.1+gitAUTOINC+aef913e31b-r0: task do_fetch: Succeeded\nNOTE: Running task 511 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.38.0.bb:do_fetch)\nNOTE: recipe libxkbfile-1_1.1.0-r0: task do_fetch: Started\nNOTE: recipe libxml-sax-base-perl-1.09-r0: task do_fetch: Started\nNOTE: recipe rpcsvc-proto-1.4+gitAUTOINC+9bc3b5b785-r0: task do_fetch: Started\nNOTE: recipe liberation-fonts-1_2.00.1-r0: task do_fetch: Started\nNOTE: recipe libcap-2.27-r0: task do_fetch: Started\nNOTE: recipe xkbcomp-1.4.2-r0: task do_fetch: Succeeded\nNOTE: recipe rpcsvc-proto-1.4+gitAUTOINC+9bc3b5b785-r0: task do_fetch: Succeeded\nNOTE: Running task 512 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xauth_1.0.10.bb:do_fetch)\nNOTE: Running task 513 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/matchbox-wm/matchbox-wm_1.2.2.bb:do_fetch)\nNOTE: recipe go-helloworld-0.1-r0: task do_fetch: Succeeded\nNOTE: Running task 514 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/wayland/libinput_1.13.2.bb:do_fetch)\nNOTE: recipe gdk-pixbuf-2.38.0-r0: task do_fetch: Started\nNOTE: recipe xauth-1_1.0.10-r0: task do_fetch: Started\nNOTE: recipe matchbox-wm-1.2.2-r0: task do_fetch: Started\nNOTE: recipe gdk-pixbuf-2.38.0-r0: task do_fetch: Succeeded\nNOTE: Running task 515 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxkbcommon_0.8.4.bb:do_fetch)\nNOTE: recipe libinput-1.13.2-r0: task do_fetch: Started\nNOTE: recipe libxml-sax-base-perl-1.09-r0: task do_fetch: Succeeded\nNOTE: Running task 516 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/user-creation/xuser-account_0.1.bb:do_fetch)\nNOTE: recipe libxkbfile-1_1.1.0-r0: task do_fetch: Succeeded\nNOTE: recipe libcap-2.27-r0: task do_fetch: Succeeded\nNOTE: Running task 517 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/llvm/llvm_git.bb:do_fetch)\nNOTE: Running task 518 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/flac/flac_1.3.2.bb:do_fetch)\nNOTE: recipe libxkbcommon-0.8.4-r0: task do_fetch: Started\nNOTE: recipe xuser-account-0.1-r0: task do_fetch: Started\nNOTE: recipe xauth-1_1.0.10-r0: task do_fetch: Succeeded\nNOTE: Running task 519 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-driver/xf86-input-keyboard_1.9.0.bb:do_fetch)\nNOTE: recipe xuser-account-0.1-r0: task do_fetch: Succeeded\nNOTE: Running task 520 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/bash-completion/bash-completion_2.9.bb:do_fetch)\nNOTE: recipe flac-1.3.2-r0: task do_fetch: Started\nNOTE: recipe llvm-8.0.0-r0: task do_fetch: Started\nNOTE: recipe matchbox-wm-1.2.2-r0: task do_fetch: Succeeded\nNOTE: Running task 521 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/libpng/libpng_1.6.37.bb:do_fetch)\nNOTE: recipe xf86-input-keyboard-2_1.9.0-r0: task do_fetch: Started\nNOTE: recipe bash-completion-2.9-r0: task do_fetch: Started\nNOTE: recipe libinput-1.13.2-r0: task do_fetch: Succeeded\nNOTE: Running task 522 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/unifdef/unifdef_2.11.bb:do_fetch)\nNOTE: recipe asciidoc-8.6.9+py3-gitAUTOINC+618f6e6f6b-r0: task do_fetch: Succeeded\nNOTE: recipe libxkbcommon-0.8.4-r0: task do_fetch: Succeeded\nNOTE: Running task 523 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb:do_fetch)\nNOTE: Running task 524 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/docbook-xml/docbook-xml-dtd4_4.5.bb:do_fetch)\nNOTE: recipe liberation-fonts-1_2.00.1-r0: task do_fetch: Succeeded\nNOTE: Running task 525 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/mtd/mtd-utils_git.bb:do_fetch)\nNOTE: recipe flac-1.3.2-r0: task do_fetch: Succeeded\nNOTE: Running task 526 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/sqlite/sqlite3_3.28.0.bb:do_fetch)\nNOTE: recipe libpng-1.6.37-r0: task do_fetch: Started\nNOTE: recipe unifdef-2.11-r0: task do_fetch: Started\nNOTE: recipe libpng-1.6.37-r0: task do_fetch: Succeeded\nNOTE: Running task 527 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb:do_fetch)\nNOTE: recipe unifdef-2.11-r0: task do_fetch: Succeeded\nNOTE: recipe docbook-xml-dtd4-4.5-r0: task do_fetch: Started\nNOTE: Running task 528 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxau_1.0.9.bb:do_fetch)\nNOTE: recipe xf86-input-keyboard-2_1.9.0-r0: task do_fetch: Succeeded\nNOTE: Running task 529 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/mpfr/mpfr_4.0.2.bb:do_fetch)\nNOTE: recipe initramfs-live-boot-1.0-r12: task do_fetch: Started\nNOTE: recipe docbook-xml-dtd4-4.5-r0: task do_fetch: Succeeded\nNOTE: Running task 530 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-pip_19.1.1.bb:do_fetch)\nNOTE: recipe initramfs-live-boot-1.0-r12: task do_fetch: Succeeded\nNOTE: Running task 531 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/ca-certificates/ca-certificates_20190110.bb:do_fetch)\nNOTE: recipe mtd-utils-2.0.2+AUTOINC+bc63d36e39-r0: task do_fetch: Started\nNOTE: recipe bash-completion-2.9-r0: task do_fetch: Succeeded\nNOTE: Running task 532 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/neard/neard_0.16.bb:do_fetch)\nNOTE: recipe sqlite3-3_3.28.0-r0: task do_fetch: Started\nNOTE: recipe ppp-dialin-0.1-r8: task do_fetch: Started\nNOTE: recipe sqlite3-3_3.28.0-r0: task do_fetch: Succeeded\nNOTE: Running task 533 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/ghostscript/ghostscript_9.27.bb:do_fetch)\nNOTE: recipe ppp-dialin-0.1-r8: task do_fetch: Succeeded\nNOTE: Running task 534 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxmu_1.1.3.bb:do_fetch)\nNOTE: recipe mpfr-4.0.2-r0: task do_fetch: Started\nNOTE: recipe ca-certificates-20190110-r0: task do_fetch: Started\nNOTE: recipe python3-pip-19.1.1-r0: task do_fetch: Started\nNOTE: recipe libxau-1_1.0.9-r0: task do_fetch: Started\nNOTE: recipe mpfr-4.0.2-r0: task do_fetch: Succeeded\nNOTE: Running task 535 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/matchbox-desktop/matchbox-desktop_2.2.bb:do_fetch)\nNOTE: recipe python3-pip-19.1.1-r0: task do_fetch: Succeeded\nNOTE: Running task 536 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/meta/meta-ide-support.bb:do_fetch)\nNOTE: recipe libxau-1_1.0.9-r0: task do_fetch: Succeeded\nNOTE: Running task 537 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxfixes_5.0.3.bb:do_fetch)\nNOTE: recipe neard-0.16-r0: task do_fetch: Started\nNOTE: recipe ghostscript-9.27-r0: task do_fetch: Started\nNOTE: recipe libxmu-1_1.1.3-r0: task do_fetch: Started\nNOTE: recipe mtd-utils-2.0.2+AUTOINC+bc63d36e39-r0: task do_fetch: Succeeded\nNOTE: Running task 538 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/xcb-util-wm_0.4.1.bb:do_fetch)\nNOTE: recipe ghostscript-9.27-r0: task do_fetch: Succeeded\nNOTE: Running task 539 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/enchant/enchant_1.6.0.bb:do_fetch)\nNOTE: recipe libxfixes-1_5.0.3-r0: task do_fetch: Started\nNOTE: recipe meta-ide-support-1.0-r3: task do_fetch: Started\nNOTE: recipe matchbox-desktop-2.2-r0: task do_fetch: Started\nNOTE: recipe meta-ide-support-1.0-r3: task do_fetch: Succeeded\nNOTE: Running task 540 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/lsb/lsbinitscripts_9.79.bb:do_fetch)\nNOTE: recipe libxfixes-1_5.0.3-r0: task do_fetch: Succeeded\nNOTE: Running task 541 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/pulseaudio-sato/pulseaudio-client-conf-sato_1.bb:do_fetch)\nNOTE: recipe ca-certificates-20190110-r0: task do_fetch: Succeeded\nNOTE: Running task 542 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/lz4/lz4_1.9.1.bb:do_fetch)\nNOTE: recipe enchant-1.6.0-r3: task do_fetch: Started\nNOTE: recipe lsbinitscripts-9.79-r0: task do_fetch: Started\nNOTE: recipe xcb-util-wm-0.4.1-r0: task do_fetch: Started\nNOTE: recipe lz4-1_1.9.1-r0: task do_fetch: Started\nNOTE: recipe pulseaudio-client-conf-sato-1-r0: task do_fetch: Started\nNOTE: recipe neard-0.16-r0: task do_fetch: Succeeded\nNOTE: Running task 543 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta-selftest/recipes-test/container-image/container-image-testpkg.bb:do_fetch)\nNOTE: recipe pulseaudio-client-conf-sato-1-r0: task do_fetch: Succeeded\nNOTE: Running task 544 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/newt/libnewt-python_0.52.20.bb:do_fetch)\nNOTE: recipe lz4-1_1.9.1-r0: task do_fetch: Succeeded\nNOTE: Running task 545 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/piglit/piglit_git.bb:do_fetch)\nNOTE: recipe libxmu-1_1.1.3-r0: task do_fetch: Succeeded\nNOTE: Running task 546 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/cronie/cronie_1.5.4.bb:do_fetch)\nNOTE: recipe matchbox-desktop-2.2-r0: task do_fetch: Succeeded\nNOTE: Running task 547 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/xcb-util-keysyms_0.4.0.bb:do_fetch)\nNOTE: recipe xcb-util-wm-0.4.1-r0: task do_fetch: Succeeded\nNOTE: recipe container-image-testpkg-1.0-r0: task do_fetch: Started\nNOTE: Running task 548 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/dropbear/dropbear_2019.78.bb:do_fetch)\nNOTE: recipe container-image-testpkg-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 549 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/nasm/nasm_2.14.02.bb:do_fetch)\nNOTE: recipe enchant-1.6.0-r3: task do_fetch: Succeeded\nNOTE: Running task 550 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/nettle/nettle_3.4.1.bb:do_fetch)\nNOTE: recipe libnewt-python-0.52.20-r0: task do_fetch: Started\nNOTE: recipe piglit-1.0+gitrAUTOINC+4294b15e3b-r0: task do_fetch: Started\nNOTE: recipe cronie-1.5.4-r0: task do_fetch: Started\nNOTE: recipe dropbear-2019.78-r0: task do_fetch: Started\nNOTE: recipe xcb-util-keysyms-0.4.0-r0: task do_fetch: Started\nNOTE: recipe nettle-3.4.1-r0: task do_fetch: Started\nNOTE: recipe nasm-2.14.02-r0: task do_fetch: Started\nNOTE: recipe nasm-2.14.02-r0: task do_fetch: Succeeded\nNOTE: Running task 551 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/serf/serf_1.3.9.bb:do_fetch)\nNOTE: recipe libnewt-python-0.52.20-r0: task do_fetch: Succeeded\nNOTE: Running task 552 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/opkg/opkg-keyrings_1.0.bb:do_fetch)\nNOTE: recipe cronie-1.5.4-r0: task do_fetch: Succeeded\nNOTE: Running task 553 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/ppp/ppp_2.4.7.bb:do_fetch)\nNOTE: recipe serf-1.3.9-r0: task do_fetch: Started\nNOTE: recipe xcb-util-keysyms-0.4.0-r0: task do_fetch: Succeeded\nNOTE: Running task 554 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/vim/vim-tiny_8.1.1240.bb:do_fetch)\nNOTE: recipe opkg-keyrings-1.0-r0: task do_fetch: Started\nNOTE: recipe vim-8.1.1240-r0: task do_fetch: Succeeded\nNOTE: Running task 555 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/time/time_1.9.bb:do_fetch)\nNOTE: recipe opkg-keyrings-1.0-r0: task do_fetch: Succeeded\nNOTE: recipe nettle-3.4.1-r0: task do_fetch: Succeeded\nNOTE: Running task 556 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxcursor_1.2.0.bb:do_fetch)\nNOTE: recipe dropbear-2019.78-r0: task do_fetch: Succeeded\nNOTE: Running task 557 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/ninja/ninja_1.9.0.bb:do_fetch)\nNOTE: Running task 558 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/bluez5/bluez5_5.50.bb:do_fetch)\nNOTE: recipe ppp-2.4.7-r0: task do_fetch: Started\nNOTE: recipe vim-tiny-8.1.1240-r0: task do_fetch: Started\nNOTE: recipe ninja-1.9.0-r0: task do_fetch: Started\nNOTE: recipe serf-1.3.9-r0: task do_fetch: Succeeded\nNOTE: recipe libxcursor-1_1.2.0-r0: task do_fetch: Started\nNOTE: Running task 559 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/connman/connman-gnome_0.7.bb:do_fetch)\nNOTE: recipe time-1.9-r0: task do_fetch: Started\nNOTE: recipe libxcursor-1_1.2.0-r0: task do_fetch: Succeeded\nNOTE: recipe lsbinitscripts-9.79-r0: task do_fetch: Succeeded\nNOTE: recipe vim-tiny-8.1.1240-r0: task do_fetch: Succeeded\nNOTE: recipe ninja-1.9.0-r0: task do_fetch: Succeeded\nNOTE: Running task 560 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libpcre/libpcre_8.43.bb:do_fetch)\nNOTE: Running task 561 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/consolekit/consolekit_0.4.6.bb:do_fetch)\nNOTE: Running task 562 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libevent/libevent_2.1.8.bb:do_fetch)\nNOTE: Running task 563 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/xinetd/xinetd_2.3.15.bb:do_fetch)\nNOTE: recipe bluez5-5.50-r0: task do_fetch: Started\nNOTE: recipe connman-gnome-0.7-r0: task do_fetch: Started\nNOTE: recipe libpcre-8.43-r0: task do_fetch: Started\nNOTE: recipe xinetd-2.3.15-r2: task do_fetch: Started\nNOTE: recipe libpcre-8.43-r0: task do_fetch: Succeeded\nNOTE: recipe libevent-2.1.8-r0: task do_fetch: Started\nNOTE: Running task 564 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/eglinfo/eglinfo-wayland_1.0.0.bb:do_fetch)\nNOTE: recipe consolekit-0.4.6-r0: task do_fetch: Started\nNOTE: recipe ppp-2.4.7-r0: task do_fetch: Succeeded\nNOTE: Running task 565 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/sato-screenshot/sato-screenshot_0.3.bb:do_fetch)\nNOTE: recipe time-1.9-r0: task do_fetch: Succeeded\nNOTE: Running task 566 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_fetch)\nNOTE: recipe bluez5-5.50-r0: task do_fetch: Succeeded\nNOTE: Running task 567 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/initscripts/initscripts_1.0.bb:do_fetch)\nNOTE: recipe eglinfo-wayland-1.0.0-r0: task do_fetch: Started\nNOTE: recipe assimp-4.1.0-r0: task do_fetch: Succeeded\nNOTE: recipe connman-gnome-0.7-r0: task do_fetch: Succeeded\nNOTE: Running task 568 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/libfakekey/libfakekey_git.bb:do_fetch)\nNOTE: Running task 569 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python_2.7.16.bb:do_fetch)\nNOTE: recipe libevent-2.1.8-r0: task do_fetch: Succeeded\nNOTE: Running task 570 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/iproute2/iproute2_5.1.0.bb:do_fetch)\nNOTE: recipe consolekit-0.4.6-r0: task do_fetch: Succeeded\nNOTE: recipe eglinfo-wayland-1.0.0-r0: task do_fetch: Succeeded\nNOTE: Running task 571 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xeyes_1.1.2.bb:do_fetch)\nNOTE: Running task 572 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/connman/connman-conf.bb:do_fetch)\nNOTE: recipe sato-screenshot-0.3-r0: task do_fetch: Started\nNOTE: recipe xinetd-2.3.15-r2: task do_fetch: Succeeded\nNOTE: Running task 573 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/pixman_0.38.4.bb:do_fetch)\nNOTE: recipe initscripts-1.0-r155: task do_fetch: Started\nNOTE: recipe grub-efi-2.02-r0: task do_fetch: Started\nNOTE: recipe libfakekey-0.3+gitAUTOINC+7ad885912e-r0: task do_fetch: Started\nNOTE: recipe grub-efi-2.02-r0: task do_fetch: Succeeded\nNOTE: recipe connman-conf-1.0-r2: task do_fetch: Started\nNOTE: recipe iproute2-5.1.0-r0: task do_fetch: Started\nNOTE: Running task 574 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/db/db_5.3.28.bb:do_fetch)\nNOTE: recipe connman-conf-1.0-r2: task do_fetch: Succeeded\nNOTE: recipe xeyes-1_1.1.2-r0: task do_fetch: Started\nNOTE: recipe sato-screenshot-0.3-r0: task do_fetch: Succeeded\nNOTE: Running task 575 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/libaio/libaio_0.3.111.bb:do_fetch)\nNOTE: Running task 576 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/wayland/wayland-protocols_1.17.bb:do_fetch)\nNOTE: recipe initscripts-1.0-r155: task do_fetch: Succeeded\nNOTE: Running task 577 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/mx/mx-1.0_1.4.7.bb:do_fetch)\nNOTE: recipe python-2.7.16-r0: task do_fetch: Started\nNOTE: recipe pixman-1_0.38.4-r0: task do_fetch: Started\nNOTE: recipe pixman-1_0.38.4-r0: task do_fetch: Succeeded\nNOTE: recipe libfakekey-0.3+gitAUTOINC+7ad885912e-r0: task do_fetch: Succeeded\nNOTE: recipe llvm-native-8.0.0-r0: task do_fetch: Succeeded\nNOTE: Running task 578 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/bmap-tools/bmap-tools_3.5.bb:do_fetch)\nNOTE: Running task 579 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/cryptodev/cryptodev-linux_1.10.bb:do_fetch)\nNOTE: recipe llvm-8.0.0-r0: task do_fetch: Succeeded\nNOTE: recipe xeyes-1_1.1.2-r0: task do_fetch: Succeeded\nNOTE: recipe db-1_5.3.28-r1: task do_fetch: Started\nNOTE: Running task 580 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/ccache/ccache_3.7.1.bb:do_fetch)\nNOTE: Running task 581 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/matchbox-terminal/matchbox-terminal_0.2.bb:do_fetch)\nNOTE: Running task 582 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/slang/slang_2.3.2.bb:do_fetch)\nNOTE: recipe python-2.7.16-r0: task do_fetch: Succeeded\nNOTE: recipe iproute2-5.1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 583 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/swig/swig_3.0.12.bb:do_fetch)\nNOTE: Running task 584 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-driver/xf86-video-vmware_13.3.0.bb:do_fetch)\nNOTE: recipe libaio-0.3.111-r0: task do_fetch: Started\nNOTE: recipe piglit-1.0+gitrAUTOINC+4294b15e3b-r0: task do_fetch: Succeeded\nNOTE: recipe wayland-protocols-1.17-r0: task do_fetch: Started\nNOTE: recipe db-1_5.3.28-r1: task do_fetch: Succeeded\nNOTE: Running task 585 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/systemd/systemd-bootconf_1.00.bb:do_fetch)\nNOTE: Running task 586 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/docbook-xml/docbook-xsl-stylesheets_1.79.1.bb:do_fetch)\nNOTE: recipe mx-1.0-1.4.7+gitAUTOINC+9b1db6b806-r0: task do_fetch: Started\nNOTE: recipe bmap-tools-3.5+gitAUTOINC+db7087b883-r0: task do_fetch: Started\nNOTE: recipe cryptodev-linux-1.10-r0: task do_fetch: Started\nNOTE: recipe xf86-video-vmware-2_13.3.0-r0: task do_fetch: Started\nNOTE: recipe ccache-3.7.1-r0: task do_fetch: Started\nNOTE: recipe docbook-xsl-stylesheets-1.79.1-r0: task do_fetch: Started\nNOTE: recipe swig-3.0.12-r0: task do_fetch: Started\nNOTE: recipe slang-2.3.2-r0: task do_fetch: Started\nNOTE: recipe systemd-bootconf-1.00-r0: task do_fetch: Started\nNOTE: recipe docbook-xsl-stylesheets-1.79.1-r0: task do_fetch: Succeeded\nNOTE: recipe bmap-tools-3.5+gitAUTOINC+db7087b883-r0: task do_fetch: Succeeded\nNOTE: Running task 587 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/update-rc.d/update-rc.d_0.8.bb:do_fetch)\nNOTE: recipe matchbox-terminal-0.2-r0: task do_fetch: Started\nNOTE: Running task 588 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/matchbox-theme-sato/matchbox-theme-sato_0.2.bb:do_fetch)\nNOTE: recipe swig-3.0.12-r0: task do_fetch: Succeeded\nNOTE: Running task 589 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_fetch)\nNOTE: recipe systemd-bootconf-1.00-r0: task do_fetch: Succeeded\nNOTE: Running task 590 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_0.2.bb:do_fetch)\nNOTE: recipe libaio-0.3.111-r0: task do_fetch: Succeeded\nNOTE: recipe wayland-protocols-1.17-r0: task do_fetch: Succeeded\nNOTE: Running task 591 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/iptables/iptables_1.8.2.bb:do_fetch)\nNOTE: Running task 592 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/ltp/ltp_20190115.bb:do_fetch)\nNOTE: recipe ccache-3.7.1-r0: task do_fetch: Succeeded\nNOTE: recipe update-rc.d-0.8-r0: task do_fetch: Started\nNOTE: Running task 593 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_fetch)\nNOTE: recipe xf86-video-vmware-2_13.3.0-r0: task do_fetch: Succeeded\nNOTE: recipe matchbox-theme-sato-0.2-r0: task do_fetch: Started\nNOTE: Running task 594 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/mesa/mesa-demos_8.4.0.bb:do_fetch)\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_fetch: Started\nNOTE: recipe update-rc.d-0.8-r0: task do_fetch: Succeeded\nNOTE: Running task 595 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/pango/pango_1.42.4.bb:do_fetch)\nNOTE: recipe matchbox-config-gtk-0.2-r0: task do_fetch: Started\nNOTE: recipe cryptodev-linux-1.10-r0: task do_fetch: Succeeded\nNOTE: recipe matchbox-terminal-0.2-r0: task do_fetch: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_fetch: Succeeded\nNOTE: recipe slang-2.3.2-r0: task do_fetch: Succeeded\nNOTE: Running task 596 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/re2c/re2c_1.0.1.bb:do_fetch)\nNOTE: Running task 597 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xhost_1.0.8.bb:do_fetch)\nNOTE: Running task 598 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/dnf/dnf_4.2.2.bb:do_fetch)\nNOTE: Running task 599 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/aspell/aspell_0.60.6.1.bb:do_fetch)\nNOTE: recipe ltp-20190115-r0: task do_fetch: Started\nNOTE: recipe iptables-1.8.2-r0: task do_fetch: Started\nNOTE: recipe mx-1.0-1.4.7+gitAUTOINC+9b1db6b806-r0: task do_fetch: Succeeded\nNOTE: Running task 600 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/mobile-broadband-provider-info/mobile-broadband-provider-info_git.bb:do_fetch)\nNOTE: recipe cpio-2.12-r0: task do_fetch: Started\nNOTE: recipe matchbox-theme-sato-0.2-r0: task do_fetch: Succeeded\nNOTE: Running task 601 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/strace/strace_4.26.bb:do_fetch)\nNOTE: recipe re2c-1.0.1-r0: task do_fetch: Started\nNOTE: recipe xhost-1_1.0.8-r0: task do_fetch: Started\nNOTE: recipe mesa-demos-8.4.0-r0: task do_fetch: Started\nNOTE: recipe re2c-1.0.1-r0: task do_fetch: Succeeded\nNOTE: Running task 602 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gnome/gconf_3.2.6.bb:do_fetch)\nNOTE: recipe matchbox-config-gtk-0.2-r0: task do_fetch: Succeeded\nNOTE: recipe aspell-0.60.6.1-r1: task do_fetch: Started\nNOTE: recipe dnf-4.2.2-r0: task do_fetch: Started\nNOTE: Running task 603 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/dbus-wait/dbus-wait_git.bb:do_fetch)\nNOTE: recipe pango-1.42.4-r0: task do_fetch: Started\nNOTE: recipe iptables-1.8.2-r0: task do_fetch: Succeeded\nNOTE: Running task 604 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/speex/speexdsp_1.2rc3.bb:do_fetch)\nNOTE: recipe pango-1.42.4-r0: task do_fetch: Succeeded\nNOTE: Running task 605 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/mkfontscale_1.1.3.bb:do_fetch)\nNOTE: recipe mobile-broadband-provider-info-1_20190116-r0: task do_fetch: Started\nNOTE: recipe strace-4.26-r0: task do_fetch: Started\nNOTE: recipe gconf-3.2.6-r0: task do_fetch: Started\nNOTE: recipe dbus-wait-0.1+gitAUTOINC+6cc6077a36-r2: task do_fetch: Started\nNOTE: recipe xhost-1_1.0.8-r0: task do_fetch: Succeeded\nNOTE: Running task 606 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libevdev/libevdev_1.6.0.bb:do_fetch)\nNOTE: recipe speexdsp-1.2rc3-r0: task do_fetch: Started\nNOTE: recipe gconf-3.2.6-r0: task do_fetch: Succeeded\nNOTE: recipe cpio-2.12-r0: task do_fetch: Succeeded\nNOTE: Running task 607 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/net-tools/net-tools_1.60-26.bb:do_fetch)\nNOTE: Running task 608 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libpthread-stubs_0.4.bb:do_fetch)\nNOTE: recipe mkfontscale-1.1.3-r0: task do_fetch: Started\nNOTE: recipe mkfontscale-1.1.3-r0: task do_fetch: Succeeded\nNOTE: Running task 609 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/grub/grub_2.02.bb:do_fetch)\nNOTE: recipe net-tools-1.60-26-r0: task do_fetch: Started\nNOTE: recipe libevdev-1.6.0-r0: task do_fetch: Started\nNOTE: recipe libpthread-stubs-0.4-r0: task do_fetch: Started\nNOTE: recipe aspell-0.60.6.1-r1: task do_fetch: Succeeded\nNOTE: Running task 610 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/liba52/liba52_0.7.4.bb:do_fetch)\nNOTE: recipe grub-2.02-r0: task do_fetch: Started\nNOTE: recipe libpthread-stubs-0.4-r0: task do_fetch: Succeeded\nNOTE: Running task 611 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/u-boot/u-boot-fw-utils_2019.04.bb:do_fetch)\nNOTE: recipe mobile-broadband-provider-info-1_20190116-r0: task do_fetch: Succeeded\nNOTE: Running task 612 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/console-tools/console-tools_0.3.2.bb:do_fetch)\nNOTE: recipe grub-2.02-r0: task do_fetch: Succeeded\nNOTE: Running task 613 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/tcltk/tcl_8.6.9.bb:do_fetch)\nNOTE: recipe strace-4.26-r0: task do_fetch: Succeeded\nNOTE: Running task 614 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/libid3tag/libid3tag_0.15.1b.bb:do_fetch)\nNOTE: recipe dbus-wait-0.1+gitAUTOINC+6cc6077a36-r2: task do_fetch: Succeeded\nNOTE: Running task 615 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/newt/libnewt_0.52.20.bb:do_fetch)\nNOTE: recipe u-boot-fw-utils-1_2019.04-r0: task do_fetch: Started\nNOTE: recipe speexdsp-1.2rc3-r0: task do_fetch: Succeeded\nNOTE: Running noexec task 616 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/gcc/gcc_9.1.bb:do_fetch)\nNOTE: recipe liba52-0.7.4-r4: task do_fetch: Started\nNOTE: Running task 617 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/blktrace/blktrace_git.bb:do_fetch)\nNOTE: recipe mesa-demos-8.4.0-r0: task do_fetch: Succeeded\nNOTE: Running task 618 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/cups/cups_2.2.11.bb:do_fetch)\nNOTE: recipe console-tools-0.3.2-r8: task do_fetch: Started\nNOTE: recipe tcl-8.6.9-r0: task do_fetch: Started\nNOTE: recipe libevdev-1.6.0-r0: task do_fetch: Succeeded\nNOTE: Running task 619 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/lsof/lsof_4.91.bb:do_fetch)\nNOTE: recipe libid3tag-0.15.1b-r7: task do_fetch: Started\nNOTE: recipe tcl-8.6.9-r0: task do_fetch: Succeeded\nNOTE: Running task 620 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libpcre/libpcre2_10.33.bb:do_fetch)\nNOTE: recipe libnewt-0.52.20-r0: task do_fetch: Started\nNOTE: recipe libnewt-0.52.20-r0: task do_fetch: Succeeded\nNOTE: Running task 621 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-driver/xf86-input-evdev_2.10.6.bb:do_fetch)\nNOTE: recipe blktrace-1.2.0+gitAUTOINC+cca113f2fe-r0: task do_fetch: Started\nNOTE: recipe liba52-0.7.4-r4: task do_fetch: Succeeded\nNOTE: Running task 622 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-subunit_1.3.0.bb:do_fetch)\nNOTE: recipe lsof-4.91-r0: task do_fetch: Started\nNOTE: recipe cups-2.2.11-r0: task do_fetch: Started\nNOTE: recipe libid3tag-0.15.1b-r7: task do_fetch: Succeeded\nNOTE: Running task 623 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/build-compare/build-compare_git.bb:do_fetch)\nNOTE: recipe net-tools-1.60-26-r0: task do_fetch: Succeeded\nNOTE: recipe libpcre2-10.33-r0: task do_fetch: Started\nNOTE: Running task 624 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/lttng/babeltrace_1.5.6.bb:do_fetch)\nNOTE: recipe xf86-input-evdev-2_2.10.6-r0: task do_fetch: Started\nNOTE: recipe console-tools-0.3.2-r8: task do_fetch: Succeeded\nNOTE: Running task 625 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/sbc/sbc_1.4.bb:do_fetch)\nNOTE: recipe python3-subunit-1.3.0-r0: task do_fetch: Started\nNOTE: recipe blktrace-1.2.0+gitAUTOINC+cca113f2fe-r0: task do_fetch: Succeeded\nNOTE: Running task 626 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/systemd/systemd-machine-units_1.0.bb:do_fetch)\nNOTE: recipe lsof-4.91-r0: task do_fetch: Succeeded\nNOTE: Running task 627 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/libnotify/libnotify_0.7.8.bb:do_fetch)\nNOTE: recipe babeltrace-1.5.6-r0: task do_fetch: Started\nNOTE: recipe build-compare-1_2015.02.10+gitAUTOINC+c5352c054c-r0: task do_fetch: Started\nNOTE: recipe sbc-1.4-r0: task do_fetch: Started\nNOTE: recipe systemd-machine-units-1.0-r19: task do_fetch: Started\nNOTE: recipe libpcre2-10.33-r0: task do_fetch: Succeeded\nNOTE: recipe systemd-machine-units-1.0-r19: task do_fetch: Succeeded\nNOTE: Running task 628 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-mako_1.0.10.bb:do_fetch)\nNOTE: Running task 629 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/libcomps/libcomps_git.bb:do_fetch)\nNOTE: recipe xf86-input-evdev-2_2.10.6-r0: task do_fetch: Succeeded\nNOTE: Running task 630 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/libva/libva-utils_2.4.0.bb:do_fetch)\nNOTE: recipe libnotify-0.7.8-r0: task do_fetch: Started\nNOTE: recipe python3-mako-1.0.10-r0: task do_fetch: Started\nNOTE: recipe libcomps-0.1.11-r0: task do_fetch: Started\nNOTE: recipe python3-mako-1.0.10-r0: task do_fetch: Succeeded\nNOTE: Running task 631 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xinput-calibrator/pointercal-xinput_0.0.bb:do_fetch)\nNOTE: recipe sbc-1.4-r0: task do_fetch: Succeeded\nNOTE: recipe build-compare-1_2015.02.10+gitAUTOINC+c5352c054c-r0: task do_fetch: Succeeded\nNOTE: Running task 632 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/mkfontdir_1.0.7.bb:do_fetch)\nNOTE: Running task 633 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libpsl/libpsl_0.21.0.bb:do_fetch)\nNOTE: recipe libva-utils-2.4.0-r0: task do_fetch: Started\nNOTE: recipe python3-subunit-1.3.0-r0: task do_fetch: Succeeded\nNOTE: Running task 634 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/elfutils/elfutils_0.176.bb:do_fetch)\nNOTE: recipe libnotify-0.7.8-r0: task do_fetch: Succeeded\nNOTE: Running task 635 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.16.0.bb:do_fetch)\nNOTE: recipe cups-2.2.11-r0: task do_fetch: Succeeded\nNOTE: recipe pointercal-xinput-0.0-r7: task do_fetch: Started\nNOTE: Running task 636 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python-nose_1.3.7.bb:do_fetch)\nNOTE: recipe pointercal-xinput-0.0-r7: task do_fetch: Succeeded\nNOTE: Running task 637 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/vulkan/vulkan-demos_git.bb:do_fetch)\nNOTE: recipe mkfontdir-1_1.0.7-r8.0: task do_fetch: Started\nNOTE: recipe mkfontdir-1_1.0.7-r8.0: task do_fetch: Succeeded\nNOTE: recipe libcomps-0.1.11-r0: task do_fetch: Succeeded\nNOTE: Running task 638 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/perl/libtest-needs-perl_0.002006.bb:do_fetch)\nNOTE: Running task 639 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb:do_fetch)\nNOTE: recipe elfutils-0.176-r0: task do_fetch: Started\nNOTE: recipe libpsl-0.21.0-r0: task do_fetch: Started\nNOTE: recipe python-nose-1.3.7-r0: task do_fetch: Started\nNOTE: recipe babeltrace-1.5.6-r0: task do_fetch: Succeeded\nNOTE: Running task 640 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/taglib/taglib_1.11.1.bb:do_fetch)\nNOTE: recipe python-nose-1.3.7-r0: task do_fetch: Succeeded\nNOTE: recipe gstreamer1.0-python-1.16.0-r0: task do_fetch: Started\nNOTE: Running task 641 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/libxml/libxml2_2.9.9.bb:do_fetch)\nNOTE: recipe elfutils-0.176-r0: task do_fetch: Succeeded\nNOTE: Running task 642 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/xcb-util-renderutil_0.3.9.bb:do_fetch)\nNOTE: recipe libva-utils-2.4.0-r0: task do_fetch: Succeeded\nNOTE: Running task 643 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxcb_1.13.1.bb:do_fetch)\nNOTE: recipe vulkan-demos-git-r0: task do_fetch: Started\nNOTE: recipe pbzip2-1.1.13-r0: task do_fetch: Started\nNOTE: recipe libtest-needs-perl-0.002006-r0: task do_fetch: Started\nNOTE: recipe xcb-util-renderutil-0.3.9-r0: task do_fetch: Started\nNOTE: recipe taglib-1.11.1-r0: task do_fetch: Started\nNOTE: recipe libxcb-1.13.1-r0: task do_fetch: Started\nNOTE: recipe libxml2-2.9.9-r0: task do_fetch: Started\nNOTE: recipe libxcb-1.13.1-r0: task do_fetch: Succeeded\nNOTE: Running task 644 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/u-boot/u-boot-tools_2019.04.bb:do_fetch)\nNOTE: recipe libxml2-2.9.9-r0: task do_fetch: Succeeded\nNOTE: Running task 645 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxi_1.7.9.bb:do_fetch)\nNOTE: recipe gstreamer1.0-python-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 646 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/vulkan/vulkan_1.1.73.0.bb:do_fetch)\nNOTE: recipe dnf-4.2.2-r0: task do_fetch: Succeeded\nNOTE: Running task 647 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta-selftest/recipes-test/recipeutils/recipeutils-test_1.2.bb:do_fetch)\nNOTE: recipe pbzip2-1.1.13-r0: task do_fetch: Succeeded\nNOTE: Running task 648 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/cryptodev/cryptodev-tests_1.10.bb:do_fetch)\nNOTE: recipe libtest-needs-perl-0.002006-r0: task do_fetch: Succeeded\nNOTE: Running task 649 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/grep/grep_3.3.bb:do_fetch)\nNOTE: recipe xcb-util-renderutil-0.3.9-r0: task do_fetch: Succeeded\nNOTE: Running task 650 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-driver/xf86-input-mouse_1.9.3.bb:do_fetch)\nNOTE: recipe u-boot-tools-1_2019.04-r0: task do_fetch: Started\nNOTE: recipe libpsl-0.21.0-r0: task do_fetch: Succeeded\nNOTE: recipe taglib-1.11.1-r0: task do_fetch: Succeeded\nNOTE: Running task 651 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/foomatic/foomatic-filters_4.0.17.bb:do_fetch)\nNOTE: recipe libxi-1_1.7.9-r0: task do_fetch: Started\nNOTE: Running task 652 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/ofono/ofono_1.29.bb:do_fetch)\nNOTE: recipe vulkan-1.1.73.0-r0: task do_fetch: Started\nNOTE: recipe libxi-1_1.7.9-r0: task do_fetch: Succeeded\nNOTE: Running task 653 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb:do_fetch)\nNOTE: recipe recipeutils-test-1.2-r0: task do_fetch: Started\nNOTE: recipe cryptodev-tests-1.10-r0: task do_fetch: Started\nNOTE: recipe grep-3.3-r0: task do_fetch: Started\nNOTE: recipe cryptodev-tests-1.10-r0: task do_fetch: Succeeded\nNOTE: Running task 654 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libcheck/libcheck_0.12.0.bb:do_fetch)\nNOTE: recipe foomatic-filters-4.0.17-r1: task do_fetch: Started\nNOTE: recipe xf86-input-mouse-2_1.9.3-r0: task do_fetch: Started\nNOTE: recipe ofono-1.29-r0: task do_fetch: Started\nNOTE: recipe libcheck-0.12.0-r0: task do_fetch: Started\nNOTE: recipe recipeutils-test-1.2-r0: task do_fetch: Succeeded\nNOTE: Running task 655 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libproxy/libproxy_0.4.15.bb:do_fetch)\nNOTE: recipe linux-firmware-1_0.0+gitAUTOINC+711d3297ba-r0: task do_fetch: Started\nNOTE: recipe grep-3.3-r0: task do_fetch: Succeeded\nNOTE: recipe xf86-input-mouse-2_1.9.3-r0: task do_fetch: Succeeded\nNOTE: Running task 656 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/autoconf/autoconf_2.69.bb:do_fetch)\nNOTE: Running task 657 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/kbd/kbd_2.0.4.bb:do_fetch)\nNOTE: recipe foomatic-filters-4.0.17-r1: task do_fetch: Succeeded\nNOTE: Running task 658 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/librepo/librepo_1.10.2.bb:do_fetch)\nNOTE: recipe libproxy-0.4.15-r0: task do_fetch: Started\nNOTE: recipe libcheck-0.12.0-r0: task do_fetch: Succeeded\nNOTE: Running task 659 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/busybox/busybox-inittab_1.30.1.bb:do_fetch)\nNOTE: recipe ofono-1.29-r0: task do_fetch: Succeeded\nNOTE: Running task 660 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/avahi/avahi_0.7.bb:do_fetch)\nNOTE: recipe librepo-1.10.2-r0: task do_fetch: Started\nNOTE: recipe autoconf-2.69-r11: task do_fetch: Started\nNOTE: recipe kbd-2.0.4-r0: task do_fetch: Started\nNOTE: recipe autoconf-2.69-r11: task do_fetch: Succeeded\nNOTE: Running task 661 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libyaml/libyaml_0.2.2.bb:do_fetch)\nNOTE: recipe busybox-inittab-1.30.1-r0: task do_fetch: Started\nNOTE: recipe busybox-inittab-1.30.1-r0: task do_fetch: Succeeded\nNOTE: recipe avahi-0.7-r0: task do_fetch: Started\nNOTE: Running task 662 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/mdadm/mdadm_4.1.bb:do_fetch)\nNOTE: recipe avahi-0.7-r0: task do_fetch: Succeeded\nNOTE: Running task 663 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/liburcu/liburcu_0.11.1.bb:do_fetch)\nNOTE: recipe libproxy-0.4.15-r0: task do_fetch: Succeeded\nNOTE: Running task 664 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta-selftest/recipes-test/postinst/postinst_1.0.bb:do_fetch)\nNOTE: recipe libyaml-0.2.2-r0: task do_fetch: Started\nNOTE: recipe libyaml-0.2.2-r0: task do_fetch: Succeeded\nNOTE: Running task 665 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/json-c/json-c_0.13.1.bb:do_fetch)\nNOTE: recipe mdadm-4.1-r0: task do_fetch: Started\nNOTE: recipe kbd-2.0.4-r0: task do_fetch: Succeeded\nNOTE: Running task 666 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/fribidi/fribidi_1.0.5.bb:do_fetch)\nNOTE: recipe postinst-1.0-r0: task do_fetch: Started\nNOTE: recipe postinst-1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 667 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/go/go-dep_0.5.0.bb:do_fetch)\nNOTE: recipe liburcu-0.11.1-r0: task do_fetch: Started\nNOTE: recipe librepo-1.10.2-r0: task do_fetch: Succeeded\nNOTE: Running task 668 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xvinfo_1.1.4.bb:do_fetch)\nNOTE: recipe json-c-0.13.1-r0: task do_fetch: Started\nNOTE: recipe go-dep-0.5.0-r0: task do_fetch: Started\nNOTE: recipe fribidi-1.0.5-r0: task do_fetch: Started\nNOTE: recipe fribidi-1.0.5-r0: task do_fetch: Succeeded\nNOTE: Running task 669 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/iputils/iputils_s20180629.bb:do_fetch)\nNOTE: recipe xvinfo-1_1.1.4-r0: task do_fetch: Started\nNOTE: recipe mdadm-4.1-r0: task do_fetch: Succeeded\nNOTE: Running task 670 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/bootchart2/bootchart2_0.14.8.bb:do_fetch)\nNOTE: recipe json-c-0.13.1-r0: task do_fetch: Succeeded\nNOTE: recipe liburcu-0.11.1-r0: task do_fetch: Succeeded\nNOTE: Running task 671 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/libdaemon/libdaemon_0.14.bb:do_fetch)\nNOTE: Running task 672 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/openssh/openssh_8.0p1.bb:do_fetch)\nNOTE: recipe iputils-s20180629-r0: task do_fetch: Started\nNOTE: recipe bootchart2-0.14.8+gitAUTOINC+331ada031f-r0: task do_fetch: Started\nNOTE: recipe xvinfo-1_1.1.4-r0: task do_fetch: Succeeded\nNOTE: Running task 673 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/devel-config/distcc-config.bb:do_fetch)\nNOTE: recipe libdaemon-0.14-r0: task do_fetch: Started\nNOTE: recipe ltp-20190115-r0: task do_fetch: Succeeded\nNOTE: Running task 674 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/glew/glew_2.1.0.bb:do_fetch)\nNOTE: recipe openssh-8.0p1-r0: task do_fetch: Started\nNOTE: recipe distcc-config-1.0-r0: task do_fetch: Started\nNOTE: recipe distcc-config-1.0-r0: task do_fetch: Succeeded\nNOTE: recipe glew-2.1.0-r0: task do_fetch: Started\nNOTE: Running task 675 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/resolvconf/resolvconf_1.79.bb:do_fetch)\nNOTE: recipe u-boot-fw-utils-1_2019.04-r0: task do_fetch: Succeeded\nNOTE: Running task 676 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/popt/popt_1.16.bb:do_fetch)\nNOTE: recipe iputils-s20180629-r0: task do_fetch: Succeeded\nNOTE: recipe u-boot-tools-1_2019.04-r0: task do_fetch: Succeeded\nNOTE: Running task 677 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/inetutils/inetutils_1.9.4.bb:do_fetch)\nNOTE: Running task 678 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb:do_fetch)\nNOTE: recipe bootchart2-0.14.8+gitAUTOINC+331ada031f-r0: task do_fetch: Succeeded\nNOTE: Running task 679 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xset_1.2.4.bb:do_fetch)\nNOTE: recipe libdaemon-0.14-r0: task do_fetch: Succeeded\nNOTE: Running task 680 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.8.bb:do_fetch)\nNOTE: recipe resolvconf-1.79-r0: task do_fetch: Started\nNOTE: recipe popt-1.16-r3: task do_fetch: Started\nNOTE: recipe popt-1.16-r3: task do_fetch: Succeeded\nNOTE: Running task 681 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/psplash/psplash_git.bb:do_fetch)\nNOTE: recipe xinput-calibrator-0.7.5+gitAUTOINC+03dadf5510-r6: task do_fetch: Started\nNOTE: recipe openssh-8.0p1-r0: task do_fetch: Succeeded\nNOTE: recipe glew-2.1.0-r0: task do_fetch: Succeeded\nNOTE: Running task 682 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/openssl/openssl_1.1.1b.bb:do_fetch)\nNOTE: recipe inetutils-1.9.4-r0: task do_fetch: Started\nNOTE: Running task 683 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/bzip2/bzip2_1.0.6.bb:do_fetch)\nNOTE: recipe xset-1_1.2.4-r0: task do_fetch: Started\nNOTE: recipe wpa-supplicant-2.8-r0: task do_fetch: Started\nNOTE: recipe resolvconf-1.79-r0: task do_fetch: Succeeded\nNOTE: Running task 684 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libxfont2_2.0.3.bb:do_fetch)\nNOTE: recipe vulkan-1.1.73.0-r0: task do_fetch: Succeeded\nNOTE: Running task 685 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/harfbuzz/harfbuzz_2.4.0.bb:do_fetch)\nNOTE: recipe go-dep-0.5.0-r0: task do_fetch: Succeeded\nNOTE: Running task 686 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/alsa/alsa-tools_1.1.7.bb:do_fetch)\nNOTE: recipe openssl-1.1.1b-r0: task do_fetch: Started\nNOTE: recipe bzip2-1.0.6-r5: task do_fetch: Started\nNOTE: recipe psplash-0.1+gitAUTOINC+2015f7073e-r15: task do_fetch: Started\nNOTE: recipe openssl-1.1.1b-r0: task do_fetch: Succeeded\nNOTE: Running task 687 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.0.bb:do_fetch)\nNOTE: recipe bzip2-1.0.6-r5: task do_fetch: Succeeded\nNOTE: recipe xinput-calibrator-0.7.5+gitAUTOINC+03dadf5510-r6: task do_fetch: Succeeded\nNOTE: Running task 688 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta-selftest/recipes-test/selftest-hardlink/selftest-hardlink.bb:do_fetch)\nNOTE: Running task 689 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta-selftest/recipes-devtools/python/python3-async-test_0.6.2.bb:do_fetch)\nNOTE: recipe libxfont2-2.0.3-r0: task do_fetch: Started\nNOTE: recipe harfbuzz-2.4.0-r0: task do_fetch: Started\nNOTE: recipe harfbuzz-2.4.0-r0: task do_fetch: Succeeded\nNOTE: Running task 690 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/binutils/binutils_2.32.bb:do_fetch)\nNOTE: recipe alsa-tools-1.1.7-r0: task do_fetch: Started\nNOTE: recipe wpa-supplicant-2.8-r0: task do_fetch: Succeeded\nNOTE: Running task 691 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/rpm/rpm_4.14.2.1.bb:do_fetch)\nNOTE: recipe inetutils-1.9.4-r0: task do_fetch: Succeeded\nNOTE: Running task 692 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/cracklib/cracklib_2.9.5.bb:do_fetch)\nNOTE: recipe selftest-hardlink-1.0-r0: task do_fetch: Started\nNOTE: recipe python3-async-test-0.6.2-r0: task do_fetch: Started\nNOTE: recipe selftest-hardlink-1.0-r0: task do_fetch: Succeeded\nNOTE: recipe python3-async-test-0.6.2-r0: task do_fetch: Succeeded\nNOTE: Running task 693 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/setserial/setserial_2.17.bb:do_fetch)\nNOTE: recipe xset-1_1.2.4-r0: task do_fetch: Succeeded\nNOTE: Running task 694 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/eglinfo/eglinfo-x11_1.0.0.bb:do_fetch)\nNOTE: Running task 695 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/ethtool/ethtool_5.1.bb:do_fetch)\nNOTE: recipe gstreamer1.0-1.16.0-r0: task do_fetch: Started\nNOTE: recipe libxfont2-2.0.3-r0: task do_fetch: Succeeded\nNOTE: Running task 696 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/createrepo-c/createrepo-c_0.14.0.bb:do_fetch)\nNOTE: recipe psplash-0.1+gitAUTOINC+2015f7073e-r15: task do_fetch: Succeeded\nNOTE: Running task 697 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/puzzles/puzzles_git.bb:do_fetch)\nNOTE: recipe binutils-2.32.0-r0: task do_fetch: Started\nNOTE: recipe rpm-1_4.14.2.1-r0: task do_fetch: Started\nNOTE: recipe cracklib-2.9.5-r0: task do_fetch: Started\nNOTE: recipe ethtool-5.1-r0: task do_fetch: Started\nNOTE: recipe eglinfo-x11-1.0.0-r0: task do_fetch: Started\nNOTE: recipe cracklib-2.9.5-r0: task do_fetch: Succeeded\nNOTE: Running task 698 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/zlib/zlib_1.2.11.bb:do_fetch)\nNOTE: recipe rpm-1_4.14.2.1-r0: task do_fetch: Succeeded\nNOTE: recipe setserial-2.17-r3: task do_fetch: Started\nNOTE: recipe puzzles-2_0.0+gitAUTOINC+c6e0161dd4-r0: task do_fetch: Started\nNOTE: Running task 699 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-app/xwininfo_1.1.4.bb:do_fetch)\nNOTE: recipe createrepo-c-0.14.0-r0: task do_fetch: Started\nNOTE: recipe eglinfo-x11-1.0.0-r0: task do_fetch: Succeeded\nNOTE: Running task 700 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.9.bb:do_fetch)\nNOTE: recipe alsa-tools-1.1.7-r0: task do_fetch: Succeeded\nNOTE: Running task 701 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb:do_fetch)\nNOTE: recipe gstreamer1.0-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 702 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/gdb/gdb_8.3.bb:do_fetch)\nNOTE: recipe zlib-1.2.11-r0: task do_fetch: Started\nNOTE: recipe xwininfo-1.1.4-r0: task do_fetch: Started\nNOTE: recipe zlib-1.2.11-r0: task do_fetch: Succeeded\nNOTE: Running task 703 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3_3.7.3.bb:do_fetch)\nNOTE: recipe gnu-efi-3.0.9-r0: task do_fetch: Started\nNOTE: recipe xserver-xf86-config-0.1-r33: task do_fetch: Started\nNOTE: recipe ethtool-5.1-r0: task do_fetch: Succeeded\nNOTE: Running task 704 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python-setuptools_41.0.1.bb:do_fetch)\nNOTE: recipe xserver-xf86-config-0.1-r33: task do_fetch: Succeeded\nNOTE: Running task 705 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/cantarell-fonts/cantarell-fonts_git.bb:do_fetch)\nNOTE: recipe gdb-8.3-r0: task do_fetch: Started\nNOTE: recipe setserial-2.17-r3: task do_fetch: Succeeded\nNOTE: Running task 706 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/perl/libconvert-asn1-perl_0.27.bb:do_fetch)\nNOTE: recipe gdb-8.3-r0: task do_fetch: Succeeded\nNOTE: Running task 707 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/git/git_2.21.0.bb:do_fetch)\nNOTE: recipe python-setuptools-41.0.1-r0: task do_fetch: Started\nNOTE: recipe python-setuptools-41.0.1-r0: task do_fetch: Succeeded\nNOTE: recipe cantarell-fonts-0.0.25-r0: task do_fetch: Started\nNOTE: Running task 708 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/ptest-runner/ptest-runner_2.3.1.bb:do_fetch)\nNOTE: recipe createrepo-c-0.14.0-r0: task do_fetch: Succeeded\nNOTE: Running task 709 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/xorg-lib/libice_1.0.9.bb:do_fetch)\nNOTE: recipe git-2.21.0-r0: task do_fetch: Started\nNOTE: recipe python3-3.7.3-r0: task do_fetch: Started\nNOTE: recipe libconvert-asn1-perl-0.27-r0: task do_fetch: Started\nNOTE: recipe xwininfo-1.1.4-r0: task do_fetch: Succeeded\nNOTE: Running task 710 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/opkg/opkg-arch-config_1.0.bb:do_fetch)\nNOTE: recipe ptest-runner-2.3.1+gitAUTOINC+63d097cc46-r0: task do_fetch: Started\nNOTE: recipe python3-3.7.3-r0: task do_fetch: Succeeded\nNOTE: Running task 711 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/nss-myhostname/nss-myhostname_0.3.bb:do_fetch)\nNOTE: recipe libice-1_1.0.9-r0: task do_fetch: Started\nNOTE: recipe gnu-efi-3.0.9-r0: task do_fetch: Succeeded\nNOTE: Running task 712 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-extended/logrotate/logrotate_3.15.0.bb:do_fetch)\nNOTE: recipe libice-1_1.0.9-r0: task do_fetch: Succeeded\nNOTE: Running task 713 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-connectivity/bind/bind_9.11.5-P4.bb:do_fetch)\nNOTE: recipe opkg-arch-config-1.0-r1: task do_fetch: Started\nNOTE: recipe opkg-arch-config-1.0-r1: task do_fetch: Succeeded\nNOTE: recipe nss-myhostname-0.3-r0: task do_fetch: Started\nNOTE: Running task 714 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-core/ncurses/ncurses_6.1+20181013.bb:do_fetch)\nNOTE: recipe logrotate-3.15.0-r0: task do_fetch: Started\nNOTE: recipe libconvert-asn1-perl-0.27-r0: task do_fetch: Succeeded\nNOTE: Running task 715 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/python/python3-git_2.1.11.bb:do_fetch)\nWARNING: ptest-runner-2.3.1+gitAUTOINC+63d097cc46-r0 do_fetch: Failed to fetch URL git://git.yoctoproject.org/ptest-runner2, attempting MIRRORS if available\nNOTE: recipe bind-9.11.5-P4-r0: task do_fetch: Started\nNOTE: recipe ncurses-6.1+20181013-r0: task do_fetch: Started\nNOTE: recipe python3-git-2.1.11-r0: task do_fetch: Started\nNOTE: recipe ncurses-6.1+20181013-r0: task do_fetch: Succeeded\nNOTE: recipe binutils-native-2.32.0-r0: task do_fetch: Succeeded\nNOTE: Running task 716 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb:do_fetch)\nNOTE: Running task 717 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/gnome/gnome-themes-standard_3.22.3.bb:do_fetch)\nNOTE: recipe binutils-2.32.0-r0: task do_fetch: Succeeded\nNOTE: recipe binutils-cross-i686-2.32.0-r0: task do_fetch: Succeeded\nNOTE: Running task 718 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-graphics/kmscube/kmscube_git.bb:do_fetch)\nNOTE: Running task 719 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-gnome/libsecret/libsecret_0.18.8.bb:do_fetch)\nNOTE: recipe nss-myhostname-0.3-r0: task do_fetch: Succeeded\nNOTE: Running task 720 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_2.11.bb:do_fetch)\nNOTE: recipe logrotate-3.15.0-r0: task do_fetch: Succeeded\nNOTE: Running task 721 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/libtool/libtool_2.4.6.bb:do_fetch)\nNOTE: recipe libmodulemd-2.4.0-r0: task do_fetch: Started\nNOTE: recipe gnome-themes-standard-3.22.3-r0: task do_fetch: Started\nERROR: ptest-runner-2.3.1+gitAUTOINC+63d097cc46-r0 do_fetch: The URL: 'git://git.yoctoproject.org/ptest-runner2' is not trusted and cannot be used\nERROR: ptest-runner-2.3.1+gitAUTOINC+63d097cc46-r0 do_fetch: Fetcher failure for URL: 'git://git.yoctoproject.org/ptest-runner2'. Unable to fetch URL from any source.\nERROR: ptest-runner-2.3.1+gitAUTOINC+63d097cc46-r0 do_fetch: \nERROR: ptest-runner-2.3.1+gitAUTOINC+63d097cc46-r0 do_fetch: Function failed: base_do_fetch\nERROR: Logfile of failure stored in: /home/pokybuild/yocto-worker/a-quick/build/build/tmp/work/core2-32-poky-linux/ptest-runner/2.3.1+gitAUTOINC+63d097cc46-r0/temp/log.do_fetch.32652\nNOTE: recipe ptest-runner-2.3.1+gitAUTOINC+63d097cc46-r0: task do_fetch: Failed\nERROR: Task (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/ptest-runner/ptest-runner_2.3.1.bb:do_fetch) failed with exit code '1'\nNOTE: Running task 722 of 817 (/home/pokybuild/yocto-worker/a-quick/build/meta/recipes-devtools/devel-config/nfs-export-root.bb:do_fetch)\nNOTE: recipe kmscube-git-r0: task do_fetch: Started\nNOTE: recipe libsecret-0.18.8-r0: task do_fetch: Started\nNOTE: recipe matchbox-panel-2-2.11-r0: task do_fetch: Started\nNOTE: recipe cantarell-fonts-0.0.25-r0: task do_fetch: Succeeded\nNOTE: recipe python3-git-2.1.11-r0: task do_fetch: Succeeded\nNOTE: recipe libtool-2.4.6-r0: task do_fetch: Started\nNOTE: recipe nfs-export-root-1.0-r1: task do_fetch: Started\nNOTE: recipe nfs-export-root-1.0-r1: task do_fetch: Succeeded\nNOTE: recipe libtool-2.4.6-r0: task do_fetch: Succeeded\nNOTE: recipe puzzles-2_0.0+gitAUTOINC+c6e0161dd4-r0: task do_fetch: Succeeded\nNOTE: recipe libmodulemd-2.4.0-r0: task do_fetch: Succeeded\nNOTE: recipe gnome-themes-standard-3.22.3-r0: task do_fetch: Succeeded\nNOTE: recipe matchbox-panel-2-2.11-r0: task do_fetch: Succeeded\nNOTE: recipe libsecret-0.18.8-r0: task do_fetch: Succeeded\nNOTE: recipe kmscube-git-r0: task do_fetch: Succeeded\nNOTE: recipe bind-9.11.5-P4-r0: task do_fetch: Succeeded\nNOTE: recipe git-2.21.0-r0: task do_fetch: Succeeded\nNOTE: recipe sed-4.2.2-r0: task do_fetch: Succeeded\nNOTE: recipe linux-firmware-1_0.0+gitAUTOINC+711d3297ba-r0: task do_fetch: Succeeded\nNOTE: recipe vulkan-demos-git-r0: task do_fetch: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+31de88e51d_00638cdd8f-r0: task do_fetch: Succeeded\nNOTE: Tasks Summary: Attempted 722 tasks of which 0 didn't need to be rerun and 1 failed.\nNOTE: The errors for this build are stored in /home/pokybuild/yocto-worker/a-quick/build/build/tmp/log/error-report/error_report_20190605183519.txt\nYou can send the errors to a reports server by running:\n  send-error-report /home/pokybuild/yocto-worker/a-quick/build/build/tmp/log/error-report/error_report_20190605183519.txt [-s server]\nNOTE: The contents of these logs will be posted in public if you use the above command with the default server. Please ensure you remove any identifying or proprietary information when prompted before sending.\n\nSummary: 1 task failed:\n  /home/pokybuild/yocto-worker/a-quick/build/meta/recipes-support/ptest-runner/ptest-runner_2.3.1.bb:do_fetch\nSummary: There was 1 WARNING message shown.\nSummary: There were 4 ERROR messages shown, returning a non-zero exit code.\n",
                "status": "FAILED"
            }
        }
    },
    "oeselftest_fedora-28_qemux86_20190605212846": {
        "configuration": {
            "HOST_DISTRO": "fedora-28",
            "HOST_NAME": "fedora28-ty-1",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                }
            },
            "MACHINE": "qemux86",
            "STARTTIME": "20190605212846",
            "TESTSERIES": "qemux86",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_opensuseleap-15.0_qemux86-64_20190605212426": {
        "configuration": {
            "HOST_DISTRO": "opensuseleap-15.0",
            "HOST_NAME": "opensuse150-ty-1",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                }
            },
            "MACHINE": "qemux86-64",
            "STARTTIME": "20190605212426",
            "TESTSERIES": "qemux86-64",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_ubuntu-16.04_qemumips64_20190605222833": {
        "configuration": {
            "HOST_DISTRO": "ubuntu-16.04",
            "HOST_NAME": "ubuntu1604-ty-1.yocto.io",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                }
            },
            "MACHINE": "qemumips64",
            "STARTTIME": "20190605222833",
            "TESTSERIES": "qemumips64",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_ubuntu-18.04_qemuarm64_20190605222040": {
        "configuration": {
            "HOST_DISTRO": "ubuntu-18.04",
            "HOST_NAME": "ubuntu1804-ty",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                }
            },
            "MACHINE": "qemuarm64",
            "STARTTIME": "20190605222040",
            "TESTSERIES": "qemuarm64",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_ubuntu-18.04_qemuarm_20190605221217": {
        "configuration": {
            "HOST_DISTRO": "ubuntu-18.04",
            "HOST_NAME": "ubuntu1804-ty",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                }
            },
            "MACHINE": "qemuarm",
            "STARTTIME": "20190605221217",
            "TESTSERIES": "qemuarm",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_ubuntu-18.04_qemumips_20190606002841": {
        "configuration": {
            "HOST_DISTRO": "ubuntu-18.04",
            "HOST_NAME": "ubuntu1804-ty-3",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                }
            },
            "MACHINE": "qemumips",
            "STARTTIME": "20190606002841",
            "TESTSERIES": "qemumips",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_ubuntu-18.04_qemuppc_20190605220726": {
        "configuration": {
            "HOST_DISTRO": "ubuntu-18.04",
            "HOST_NAME": "ubuntu1804-ty-2",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "06c202e6457c6833c3e7229523bad40c03b21d3a",
                    "commit_count": 54530
                }
            },
            "MACHINE": "qemuppc",
            "STARTTIME": "20190605220726",
            "TESTSERIES": "qemuppc",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    }
}