-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitramfs-netboot-image-raspberrypi3.testdata.json
1639 lines (1639 loc) · 159 KB
/
initramfs-netboot-image-raspberrypi3.testdata.json
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
{
"ABIEXTENSION": "eabi",
"ABIEXTENSION_class-nativesdk": "",
"AGLDEFAULTTUNE": "armv7vethf-neon-vfpv4",
"AGL_APP_REVISION": "refs/tags/eel/5.1.0",
"AGL_BRANCH": "eel",
"AGL_CORE_DEPENDENCY_LAYERS": " /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-openembedded/meta-oe /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-openembedded/meta-multimedia /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-openembedded/meta-efl /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-openembedded/meta-networking /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-openembedded/meta-python /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-openembedded/meta-filesystems ",
"AGL_CORE_LAYERS": " /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-ivi-common /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-agl /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-agl-distro /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-agl-bsp ",
"AGL_DEFAULT_DISTRO_FEATURES": "largefile systemd opengl wayland pam bluetooth bluez5",
"AGL_DEFAULT_IMAGE_FSTYPES": "tar.xz ext4.xz",
"AGL_DEFAULT_INITRAMFS_FSTYPES": "ext4.gz",
"AGL_DEFAULT_REVISION": "refs/tags/eel/5.1.0",
"AGL_EXTRA_IMAGE_FSTYPES": "wic.xz wic.bmap wic.xz.sha256sum",
"AGL_EXTRA_INITRAMFS_FSTYPES": "",
"ALLOW_EMPTY_initramfs-netboot-image-dbg": "1",
"ALLOW_EMPTY_initramfs-netboot-image-dev": "1",
"ALL_MULTILIB_PACKAGE_ARCHS": "all any noarch armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7vehf-vfp armv7vet2hf-vfp armv7vehf-neon armv7vet2hf-neon armv7vehf-neon-vfpv4 armv7vet2hf-neon-vfpv4 raspberrypi3",
"ALL_QA": "libdir xorg-driver-abi textrel incompatible-license files-invalid infodir build-deps unknown-configure-option symlink-to-sysroot multilib invalid-packageconfig host-user-contaminated dev-so debug-deps dev-deps debug-files arch pkgconfig la perms dep-cmp pkgvarcheck perm-config perm-line perm-link split-strip packages-list pkgv-undefined var-undefined version-going-backwards expanded-d invalid-chars license-checksum dev-elf file-rdeps already-stripped compile-host-path install-host-path installed-vs-shipped ldflags pn-overrides rpaths staticdev useless-rpaths",
"APACHE_MIRROR": "http://archive.apache.org/dist",
"AR": "arm-agl-linux-gnueabi-ar",
"ARCH": "arm",
"ARCHIVER_OUTDIR": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-sources/arm-agl-linux-gnueabi/initramfs-netboot-image-1.0-r0/",
"ARCHIVER_TOPDIR": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-sources",
"ARCHIVER_WORKDIR": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/archiver-work/",
"ARMPKGARCH": "armv7ve",
"ARMPKGARCH_tune-armv4": "armv4",
"ARMPKGARCH_tune-armv4b": "armv4",
"ARMPKGARCH_tune-armv4t": "armv4",
"ARMPKGARCH_tune-armv4tb": "armv4",
"ARMPKGARCH_tune-armv5": "armv5",
"ARMPKGARCH_tune-armv5-vfp": "armv5",
"ARMPKGARCH_tune-armv5b": "armv5",
"ARMPKGARCH_tune-armv5b-vfp": "armv5",
"ARMPKGARCH_tune-armv5e": "armv5",
"ARMPKGARCH_tune-armv5e-vfp": "armv5",
"ARMPKGARCH_tune-armv5eb": "armv5",
"ARMPKGARCH_tune-armv5eb-vfp": "armv5",
"ARMPKGARCH_tune-armv5ehf-vfp": "armv5",
"ARMPKGARCH_tune-armv5ehfb-vfp": "armv5",
"ARMPKGARCH_tune-armv5hf-vfp": "armv5",
"ARMPKGARCH_tune-armv5hfb-vfp": "armv5",
"ARMPKGARCH_tune-armv5t": "armv5",
"ARMPKGARCH_tune-armv5t-vfp": "armv5",
"ARMPKGARCH_tune-armv5tb": "armv5",
"ARMPKGARCH_tune-armv5tb-vfp": "armv5",
"ARMPKGARCH_tune-armv5te": "armv5",
"ARMPKGARCH_tune-armv5te-vfp": "armv5",
"ARMPKGARCH_tune-armv5teb": "armv5",
"ARMPKGARCH_tune-armv5teb-vfp": "armv5",
"ARMPKGARCH_tune-armv5tehf-vfp": "armv5",
"ARMPKGARCH_tune-armv5tehfb-vfp": "armv5",
"ARMPKGARCH_tune-armv5thf-vfp": "armv5",
"ARMPKGARCH_tune-armv5thfb-vfp": "armv5",
"ARMPKGARCH_tune-armv6": "armv6",
"ARMPKGARCH_tune-armv6-novfp": "armv6",
"ARMPKGARCH_tune-armv6b": "armv6",
"ARMPKGARCH_tune-armv6b-novfp": "armv6",
"ARMPKGARCH_tune-armv6hf": "armv6",
"ARMPKGARCH_tune-armv6hfb": "armv6",
"ARMPKGARCH_tune-armv6t": "armv6",
"ARMPKGARCH_tune-armv6t-novfp": "armv6",
"ARMPKGARCH_tune-armv6tb": "armv6",
"ARMPKGARCH_tune-armv6tb-novfp": "armv6",
"ARMPKGARCH_tune-armv6thf": "armv6",
"ARMPKGARCH_tune-armv6thfb": "armv6",
"ARMPKGARCH_tune-armv7a": "armv7a",
"ARMPKGARCH_tune-armv7a-neon": "armv7a",
"ARMPKGARCH_tune-armv7a-neon-vfpv4": "armv7a",
"ARMPKGARCH_tune-armv7a-vfpv3": "armv7a",
"ARMPKGARCH_tune-armv7a-vfpv3d16": "armv7a",
"ARMPKGARCH_tune-armv7ab": "armv7a",
"ARMPKGARCH_tune-armv7ab-neon": "armv7a",
"ARMPKGARCH_tune-armv7ab-neon-vfpv4": "armv7a",
"ARMPKGARCH_tune-armv7ab-vfpv3": "armv7a",
"ARMPKGARCH_tune-armv7ab-vfpv3d16": "armv7a",
"ARMPKGARCH_tune-armv7ahf": "armv7a",
"ARMPKGARCH_tune-armv7ahf-neon": "armv7a",
"ARMPKGARCH_tune-armv7ahf-neon-vfpv4": "armv7a",
"ARMPKGARCH_tune-armv7ahf-vfpv3": "armv7a",
"ARMPKGARCH_tune-armv7ahf-vfpv3d16": "armv7a",
"ARMPKGARCH_tune-armv7ahfb": "armv7a",
"ARMPKGARCH_tune-armv7ahfb-neon": "armv7a",
"ARMPKGARCH_tune-armv7ahfb-neon-vfpv4": "armv7a",
"ARMPKGARCH_tune-armv7ahfb-vfpv3": "armv7a",
"ARMPKGARCH_tune-armv7ahfb-vfpv3d16": "armv7a",
"ARMPKGARCH_tune-armv7at": "armv7a",
"ARMPKGARCH_tune-armv7at-neon": "armv7a",
"ARMPKGARCH_tune-armv7at-neon-vfpv4": "armv7a",
"ARMPKGARCH_tune-armv7at-vfpv3": "armv7a",
"ARMPKGARCH_tune-armv7at-vfpv3d16": "armv7a",
"ARMPKGARCH_tune-armv7atb": "armv7a",
"ARMPKGARCH_tune-armv7atb-neon": "armv7a",
"ARMPKGARCH_tune-armv7atb-neon-vfpv4": "armv7a",
"ARMPKGARCH_tune-armv7atb-vfpv3": "armv7a",
"ARMPKGARCH_tune-armv7atb-vfpv3d16": "armv7a",
"ARMPKGARCH_tune-armv7athf": "armv7a",
"ARMPKGARCH_tune-armv7athf-neon": "armv7a",
"ARMPKGARCH_tune-armv7athf-neon-vfpv4": "armv7a",
"ARMPKGARCH_tune-armv7athf-vfpv3": "armv7a",
"ARMPKGARCH_tune-armv7athf-vfpv3d16": "armv7a",
"ARMPKGARCH_tune-armv7athfb": "armv7a",
"ARMPKGARCH_tune-armv7athfb-neon": "armv7a",
"ARMPKGARCH_tune-armv7athfb-neon-vfpv4": "armv7a",
"ARMPKGARCH_tune-armv7athfb-vfpv3": "armv7a",
"ARMPKGARCH_tune-armv7athfb-vfpv3d16": "armv7a",
"ARMPKGARCH_tune-armv7ve": "armv7ve",
"ARMPKGARCH_tune-armv7ve-neon": "armv7ve",
"ARMPKGARCH_tune-armv7ve-neon-vfpv4": "armv7ve",
"ARMPKGARCH_tune-armv7ve-vfpv3": "armv7ve",
"ARMPKGARCH_tune-armv7ve-vfpv3d16": "armv7ve",
"ARMPKGARCH_tune-armv7veb": "armv7ve",
"ARMPKGARCH_tune-armv7veb-neon": "armv7ve",
"ARMPKGARCH_tune-armv7veb-neon-vfpv4": "armv7ve",
"ARMPKGARCH_tune-armv7veb-vfpv3": "armv7ve",
"ARMPKGARCH_tune-armv7veb-vfpv3d16": "armv7ve",
"ARMPKGARCH_tune-armv7vehf": "armv7ve",
"ARMPKGARCH_tune-armv7vehf-neon": "armv7ve",
"ARMPKGARCH_tune-armv7vehf-neon-vfpv4": "armv7ve",
"ARMPKGARCH_tune-armv7vehf-vfpv3": "armv7ve",
"ARMPKGARCH_tune-armv7vehf-vfpv3d16": "armv7ve",
"ARMPKGARCH_tune-armv7vehfb": "armv7ve",
"ARMPKGARCH_tune-armv7vehfb-neon": "armv7ve",
"ARMPKGARCH_tune-armv7vehfb-neon-vfpv4": "armv7ve",
"ARMPKGARCH_tune-armv7vehfb-vfpv3": "armv7ve",
"ARMPKGARCH_tune-armv7vehfb-vfpv3d16": "armv7ve",
"ARMPKGARCH_tune-armv7vet": "armv7ve",
"ARMPKGARCH_tune-armv7vet-neon": "armv7ve",
"ARMPKGARCH_tune-armv7vet-neon-vfpv4": "armv7ve",
"ARMPKGARCH_tune-armv7vet-vfpv3": "armv7ve",
"ARMPKGARCH_tune-armv7vet-vfpv3d16": "armv7ve",
"ARMPKGARCH_tune-armv7vetb": "armv7ve",
"ARMPKGARCH_tune-armv7vetb-neon": "armv7ve",
"ARMPKGARCH_tune-armv7vetb-neon-vfpv4": "armv7ve",
"ARMPKGARCH_tune-armv7vetb-vfpv3": "armv7ve",
"ARMPKGARCH_tune-armv7vetb-vfpv3d16": "armv7ve",
"ARMPKGARCH_tune-armv7vethf": "armv7ve",
"ARMPKGARCH_tune-armv7vethf-neon": "armv7ve",
"ARMPKGARCH_tune-armv7vethf-neon-vfpv4": "armv7ve",
"ARMPKGARCH_tune-armv7vethf-vfpv3": "armv7ve",
"ARMPKGARCH_tune-armv7vethf-vfpv3d16": "armv7ve",
"ARMPKGARCH_tune-armv7vethfb": "armv7ve",
"ARMPKGARCH_tune-armv7vethfb-neon": "armv7ve",
"ARMPKGARCH_tune-armv7vethfb-neon-vfpv4": "armv7ve",
"ARMPKGARCH_tune-armv7vethfb-vfpv3": "armv7ve",
"ARMPKGARCH_tune-armv7vethfb-vfpv3d16": "armv7ve",
"ARMPKGARCH_tune-cortexa7": "cortexa7",
"ARMPKGARCH_tune-cortexa7-neon": "cortexa7",
"ARMPKGARCH_tune-cortexa7-neon-vfpv4": "cortexa7",
"ARMPKGARCH_tune-cortexa7hf": "cortexa7",
"ARMPKGARCH_tune-cortexa7hf-neon": "cortexa7",
"ARMPKGARCH_tune-cortexa7hf-neon-vfpv4": "cortexa7",
"ARMPKGARCH_tune-cortexa7t": "cortexa7",
"ARMPKGARCH_tune-cortexa7t-neon": "cortexa7",
"ARMPKGARCH_tune-cortexa7t-neon-vfpv4": "cortexa7",
"ARMPKGARCH_tune-cortexa7thf": "cortexa7",
"ARMPKGARCH_tune-cortexa7thf-neon": "cortexa7",
"ARMPKGARCH_tune-cortexa7thf-neon-vfpv4": "cortexa7",
"ARMPKGSFX_DSP": "",
"ARMPKGSFX_EABI": "hf",
"ARMPKGSFX_ENDIAN": "",
"ARMPKGSFX_FPU": "-neon-vfpv4",
"ARMPKGSFX_THUMB": "",
"ARM_M_OPT": "arm",
"ARM_THUMB_OPT": "arm",
"ARM_THUMB_SUFFIX": "t2",
"AS": "arm-agl-linux-gnueabi-as ",
"ASNEEDED": "-Wl,--as-needed",
"ASNEEDED_pn-babeltrace": "",
"ASNEEDED_pn-console-tools": "",
"ASNEEDED_pn-distcc": "",
"ASNEEDED_pn-icu": "",
"ASNEEDED_pn-openobex": "",
"ASNEEDED_pn-pciutils": "",
"ASNEEDED_pn-pulseaudio": "",
"ASNEEDED_pn-puzzles": "",
"ASNEEDED_pn-rpm": "",
"ASSUME_PROVIDED": "bzip2-native chrpath-native file-native findutils-native git-native grep-native diffstat-native patch-native libgcc-native hostperl-runtime-native hostpython-runtime-native virtual/libintl-native virtual/libiconv-native texinfo-native bash-native sed-native wget-native",
"AUTOREV": "AUTOINC",
"AUTO_LIBNAME_PKGS": "",
"AVAHI_GTK_pn-avahi-ui": "gtk gtk3",
"AVAILTUNES": " armv4 armv4t armv4b armv4tb armv5 armv5t armv5-vfp armv5t-vfp armv5hf-vfp armv5thf-vfp armv5b armv5tb armv5b-vfp armv5tb-vfp armv5hfb-vfp armv5thfb-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv5ehf-vfp armv5tehf-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6-novfp armv6t-novfp armv6 armv6t armv6hf armv6thf armv6b-novfp armv6tb-novfp armv6b armv6tb armv6hfb armv6thfb armv7a armv7at armv7a-vfpv3d16 armv7at-vfpv3d16 armv7a-vfpv3 armv7at-vfpv3 armv7a-neon armv7at-neon armv7a-neon-vfpv4 armv7at-neon-vfpv4 armv7ahf armv7athf armv7ahf-vfpv3d16 armv7athf-vfpv3d16 armv7ahf-vfpv3 armv7athf-vfpv3 armv7ahf-neon armv7athf-neon armv7ahf-neon-vfpv4 armv7athf-neon-vfpv4 armv7ab armv7atb armv7ab-vfpv3d16 armv7atb-vfpv3d16 armv7ab-vfpv3 armv7atb-vfpv3 armv7ab-neon armv7atb-neon armv7ab-neon-vfpv4 armv7atb-neon-vfpv4 armv7ahfb armv7athfb armv7ahfb-vfpv3d16 armv7athfb-vfpv3d16 armv7ahfb-vfpv3 armv7athfb-vfpv3 armv7ahfb-neon armv7athfb-neon armv7ahfb-neon-vfpv4 armv7athfb-neon-vfpv4 armv7ve armv7vet armv7ve-vfpv3d16 armv7vet-vfpv3d16 armv7ve-vfpv3 armv7vet-vfpv3 armv7ve-neon armv7vet-neon armv7ve-neon-vfpv4 armv7vet-neon-vfpv4 armv7vehf armv7vethf armv7vehf-vfpv3d16 armv7vethf-vfpv3d16 armv7vehf-vfpv3 armv7vethf-vfpv3 armv7vehf-neon armv7vethf-neon armv7vehf-neon-vfpv4 armv7vethf-neon-vfpv4 armv7veb armv7vetb armv7veb-vfpv3d16 armv7vetb-vfpv3d16 armv7veb-vfpv3 armv7vetb-vfpv3 armv7veb-neon armv7vetb-neon armv7veb-neon-vfpv4 armv7vetb-neon-vfpv4 armv7vehfb armv7vethfb armv7vehfb-vfpv3d16 armv7vethfb-vfpv3d16 armv7vehfb-vfpv3 armv7vethfb-vfpv3 armv7vehfb-neon armv7vethfb-neon armv7vehfb-neon-vfpv4 armv7vethfb-neon-vfpv4 cortexa7 cortexa7t cortexa7-neon cortexa7t-neon cortexa7-neon-vfpv4 cortexa7t-neon-vfpv4 cortexa7hf cortexa7thf cortexa7hf-neon cortexa7thf-neon cortexa7hf-neon-vfpv4 cortexa7thf-neon-vfpv4",
"B": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/initramfs-netboot-image-1.0",
"BAD_RECOMMENDATIONS": "busybox-syslog",
"BASEDEPENDS": "",
"BASELIB": "lib",
"BASELIB_powerpc64": "lib64",
"BASE_WORKDIR": "tmp/work",
"BCONFDIR": "conf",
"BINUVERSION": "2.28%",
"BOOTDD_VOLUME_ID": "raspberrypi3",
"BOOT_SPACE": "40960",
"BP": "initramfs-netboot-image-1.0",
"BPN": "initramfs-netboot-image",
"BUILDCFG_FUNCS": "buildcfg_vars get_layers_branch_rev buildcfg_neededvars",
"BUILDCFG_HEADER": "Build Configuration:",
"BUILDCFG_NEEDEDVARS": "TARGET_ARCH TARGET_OS",
"BUILDCFG_VARS": "BB_VERSION BUILD_SYS NATIVELSBSTRING TARGET_SYS MACHINE DISTRO DISTRO_VERSION TUNE_FEATURES TARGET_FPU",
"BUILDNAME": "20180726064603",
"BUILDSDK_CFLAGS": " -O2 -pipe",
"BUILDSDK_CPPFLAGS": "",
"BUILDSDK_LDFLAGS": "-Wl,-O1",
"BUILDSTATS_BASE": "tmp/buildstats/",
"BUILD_AR": "ar",
"BUILD_ARCH": "x86_64",
"BUILD_AS": "as ",
"BUILD_AS_ARCH": "",
"BUILD_CC": "gcc ",
"BUILD_CCLD": "gcc ",
"BUILD_CC_ARCH": "",
"BUILD_CFLAGS": "-isystemtmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/usr/include -O2 -pipe",
"BUILD_CPP": "gcc -E",
"BUILD_CPPFLAGS": "-isystemtmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/usr/include",
"BUILD_CXX": "g++ ",
"BUILD_CXXFLAGS": "-isystemtmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/usr/include -O2 -pipe -D_GLIBCXX_USE_CXX11_ABI=0",
"BUILD_EXEEXT": "",
"BUILD_FC": "gfortran ",
"BUILD_LD": "ld ",
"BUILD_LDFLAGS": "-Ltmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/usr/lib -Ltmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/lib -Wl,-rpath-link,tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/usr/lib -Wl,-rpath-link,tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/lib -Wl,-rpath,tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/usr/lib -Wl,-rpath,tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/lib -Wl,-O1",
"BUILD_LD_ARCH": "",
"BUILD_NM": "nm",
"BUILD_OPTIMIZATION": "-O2 -pipe",
"BUILD_OS": "linux",
"BUILD_PREFIX": "",
"BUILD_RANLIB": "ranlib",
"BUILD_STRIP": "strip",
"BUILD_SYS": "x86_64-linux",
"BUILD_VENDOR": "",
"BZRDIR": "downloads/bzr",
"B_task-populate-sdk": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/sdk",
"B_task-populate-sdk-ext": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/sdk",
"CACHE": "tmp/cache/default-glibc/raspberrypi3/x86_64",
"CC": "arm-agl-linux-gnueabi-gcc -march=armv7ve -marm -mfpu=neon-vfpv4 -mfloat-abi=hard --sysroot=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot",
"CCACHE": "",
"CCACHE_DIR": "/home/jenkins/.ccache",
"CCACHE_DISABLE": "1",
"CCLD": "arm-agl-linux-gnueabi-gcc -march=armv7ve -marm -mfpu=neon-vfpv4 -mfloat-abi=hard --sysroot=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot",
"CFLAGS": " -O2 -pipe -g -feliminate-unused-debug-types -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0=/usr/src/debug/initramfs-netboot-image/1.0-r0 -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native= -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot= -fstack-protector-strong -pie -fpie -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security",
"CHRPATH_BIN": "chrpath",
"CLASSOVERRIDE": "class-target",
"CLEANBROKEN": "0",
"CLEANFUNCS": " sstate_cleanall",
"CMA_HWM": "32",
"CMA_LWM": "16",
"COMBINED_FEATURES": "alsa ext2 bluetooth usbhost wifi",
"COMMERCIAL_AUDIO_PLUGINS": "",
"COMMERCIAL_VIDEO_PLUGINS": "",
"COMMON_LICENSE_DIR": "/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/poky/meta/files/common-licenses",
"COMPONENTS_DIR": "tmp/sysroots-components",
"COMPRESSIONTYPES": "",
"CONFIGURESTAMPFILE": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/configure.sstate",
"CONF_VERSION": "1",
"CONNECTIVITY_CHECK_URIS": "https://www.example.com/",
"CONVERSIONTYPES": "gz bz2 lzma xz lz4 lzo zip sum md5sum sha1sum sha224sum sha256sum sha384sum sha512sum bmap u-boot ",
"CONVERSION_CMD_bmap": "bmaptool create initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} -o initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.bmap",
"CONVERSION_CMD_bz2": "pbzip2 -f -k initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}",
"CONVERSION_CMD_gz": "gzip -f -9 -c initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} > initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.gz",
"CONVERSION_CMD_lz4": "lz4 -9 -z initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.lz4",
"CONVERSION_CMD_lz4_legacy": "lz4 -9 -z -l initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.lz4",
"CONVERSION_CMD_lzma": "lzma -k -f -7 initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}",
"CONVERSION_CMD_lzo": "lzop -9 initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}",
"CONVERSION_CMD_md5sum": "md5sum initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} > initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.md5sum",
"CONVERSION_CMD_sha1sum": "sha1sum initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} > initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.sha1sum",
"CONVERSION_CMD_sha224sum": "sha224sum initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} > initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.sha224sum",
"CONVERSION_CMD_sha256sum": "sha256sum initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} > initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.sha256sum",
"CONVERSION_CMD_sha384sum": "sha384sum initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} > initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.sha384sum",
"CONVERSION_CMD_sha512sum": "sha512sum initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} > initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.sha512sum",
"CONVERSION_CMD_sum": "sumtool -i initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} -o initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.sum ",
"CONVERSION_CMD_u-boot": "mkimage -A arm -O linux -T ramdisk -C none -n initramfs-netboot-image-raspberrypi3-20180726064603 -d initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.u-boot",
"CONVERSION_CMD_xz": "xz -f -k -c -3 -T 0 --check=crc32 initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type} > initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.xz",
"CONVERSION_CMD_zip": "zip -9 initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}.zip initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.${type}",
"CONVERSION_DEPENDS_bmap": "bmap-tools-native",
"CONVERSION_DEPENDS_bz2": "pbzip2-native",
"CONVERSION_DEPENDS_gz": "pigz-native",
"CONVERSION_DEPENDS_lz4": "lz4-native",
"CONVERSION_DEPENDS_lzma": "xz-native",
"CONVERSION_DEPENDS_lzo": "lzop-native",
"CONVERSION_DEPENDS_sum": "mtd-utils-native",
"CONVERSION_DEPENDS_u-boot": "u-boot-mkimage-native",
"CONVERSION_DEPENDS_xz": "xz-native",
"CONVERSION_DEPENDS_zip": "zip-native",
"COPYLEFT_AVAILABLE_RECIPE_TYPES": "target native nativesdk cross crosssdk cross-canadian",
"COPYLEFT_LICENSE_EXCLUDE": "",
"COPYLEFT_LICENSE_INCLUDE": "",
"COPYLEFT_PN_EXCLUDE": "",
"COPYLEFT_PN_INCLUDE": "",
"COPYLEFT_RECIPE_TYPE": "target",
"COPYLEFT_RECIPE_TYPES": "target native nativesdk cross crosssdk cross-canadian",
"COREBASE": "/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/poky",
"COREBASE_FILES": " oe-init-build-env oe-init-build-env-memres scripts LICENSE .templateconf ",
"CORE_IMAGE_BASE_INSTALL": " packagegroup-core-boot packagegroup-base-extended ",
"CORE_IMAGE_EXTRA_INSTALL": "",
"CO_DIR": "downloads",
"CPAN_MIRROR": "http://search.cpan.org/CPAN",
"CPP": "arm-agl-linux-gnueabi-gcc -E --sysroot=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot -march=armv7ve -marm -mfpu=neon-vfpv4 -mfloat-abi=hard",
"CPPFLAGS": "",
"CVSDIR": "downloads/cvs",
"CXX": "arm-agl-linux-gnueabi-g++ -march=armv7ve -marm -mfpu=neon-vfpv4 -mfloat-abi=hard --sysroot=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot",
"CXXFLAGS": " -O2 -pipe -g -feliminate-unused-debug-types -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0=/usr/src/debug/initramfs-netboot-image/1.0-r0 -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native= -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot= -fstack-protector-strong -pie -fpie -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security -fvisibility-inlines-hidden",
"D": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/image",
"DATA_LICENSE": "CC0-1.0",
"DATE": "20180726",
"DATETIME": "20180726064603",
"DEBIANRDEP": "",
"DEBIAN_MIRROR": "http://ftp.debian.org/debian/pool",
"DEBIAN_NAMES": "1",
"DEBUG_FLAGS": "-g -feliminate-unused-debug-types -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0=/usr/src/debug/initramfs-netboot-image/1.0-r0 -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native= -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot= ",
"DEBUG_OPTIMIZATION": "-O -fno-omit-frame-pointer -g -feliminate-unused-debug-types -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0=/usr/src/debug/initramfs-netboot-image/1.0-r0 -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native= -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot= -pipe",
"DEBUG_PREFIX_MAP": "-fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0=/usr/src/debug/initramfs-netboot-image/1.0-r0 -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native= -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot= ",
"DEFAULTTUNE": "armv7vethf-neon-vfpv4",
"DEFAULT_TASK_PROVIDER": "packagegroup-base",
"DEPCHAIN_POST": "-dev -dbg",
"DEPCHAIN_PRE": "",
"DEPENDS": " qemuwrapper-cross depmodwrapper-cross ",
"DEPLOYABLE_IMAGE_TYPES": "hddimg iso",
"DEPLOY_DIR": "tmp/deploy",
"DEPLOY_DIR_DEB": "tmp/deploy/deb",
"DEPLOY_DIR_IMAGE": "tmp/deploy/images/raspberrypi3",
"DEPLOY_DIR_IPK": "tmp/deploy/ipk",
"DEPLOY_DIR_RPM": "tmp/deploy/rpm",
"DEPLOY_DIR_SRC": "tmp/deploy/sources",
"DEPLOY_DIR_TAR": "tmp/deploy/tar",
"DEPLOY_DIR_TOOLS": "tmp/deploy/tools",
"DESCRIPTION": "Netboot initrd image",
"DESCRIPTION_initramfs-netboot-image-dbg": "Netboot initrd image This package contains ELF symbols and related sources for debugging purposes.",
"DESCRIPTION_initramfs-netboot-image-dev": "Netboot initrd image This package contains symbolic links, header files, and related items necessary for software development.",
"DESCRIPTION_initramfs-netboot-image-doc": "Netboot initrd image This package contains documentation.",
"DESCRIPTION_initramfs-netboot-image-staticdev": "Netboot initrd image This package contains static libraries for software development.",
"DEVSHELL": "/bin/bash",
"DEVSHELL_STARTDIR": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/initramfs-netboot-image-1.0",
"DIRFILES_pn-nativesdk-cmake": "1",
"DISABLE_STATIC": " --disable-static",
"DISABLE_STATIC_pn-gcc-runtime": "",
"DISABLE_STATIC_pn-libcap": "",
"DISABLE_STATIC_pn-libcap-native": "",
"DISABLE_STATIC_pn-libpcap": "",
"DISABLE_STATIC_pn-libusb1-native": "",
"DISABLE_STATIC_pn-nativesdk-libcap": "",
"DISABLE_STATIC_pn-nativesdk-openssl": "",
"DISABLE_STATIC_pn-nativesdk-qemu": "",
"DISABLE_STATIC_pn-nativesdk-sqlite3": "",
"DISABLE_STATIC_pn-openjade-native": "",
"DISABLE_STATIC_pn-openssl": "",
"DISABLE_STATIC_pn-openssl-native": "",
"DISABLE_STATIC_pn-pciutils": "",
"DISABLE_STATIC_pn-qemu": "",
"DISABLE_STATIC_pn-qemu-native": "",
"DISABLE_STATIC_pn-readline": "",
"DISABLE_STATIC_pn-sgml-common-native": "",
"DISABLE_STATIC_pn-sqlite3": "",
"DISABLE_STATIC_pn-sqlite3-native": "",
"DISTRO": "poky-agl",
"DISTROOVERRIDES": "poky-agl",
"DISTRO_BRANCH_VERSION_TAG": "eel/5.1.0",
"DISTRO_CODENAME": "eel",
"DISTRO_EXTRA_RDEPENDS": " packagegroup-core-boot",
"DISTRO_EXTRA_RRECOMMENDS": " kernel-module-af-packet",
"DISTRO_FEATURES": "acl alsa argp bluetooth ext2 irda largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc ipv4 ipv6 libc-backtrace libc-big-macros libc-bsd libc-cxx-tests libc-catgets libc-charsets libc-crypt libc-crypt-ufc libc-db-aliases libc-envz libc-fcvt libc-fmtmsg libc-fstab libc-ftraverse libc-getlogin libc-idn libc-inet-anl libc-libm libc-locales libc-locale-code libc-memusage libc-nis libc-nsswitch libc-rcmd libc-rtld-debug libc-spawn libc-streams libc-sunrpc libc-utmp libc-utmpx libc-wordexp libc-posix-clang-wchar libc-posix-regexp libc-posix-regexp-glibc libc-posix-wchar-io largefile systemd opengl wayland pam bluetooth bluez5 netboot webruntime automount agl-sdl agl-hmi-framework smack dbus-cynara xattr agl-devel sota AGLCI pulseaudio gobject-introspection-data ldconfig",
"DISTRO_FEATURES_APPEND": " ",
"DISTRO_FEATURES_BACKFILL": "pulseaudio sysvinit bluez5 gobject-introspection-data ldconfig",
"DISTRO_FEATURES_BACKFILL_CONSIDERED": "sysvinit",
"DISTRO_FEATURES_DEFAULT": "acl alsa argp bluetooth ext2 irda largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc x11",
"DISTRO_FEATURES_FILTER_NATIVE": "api-documentation",
"DISTRO_FEATURES_FILTER_NATIVESDK": "api-documentation",
"DISTRO_FEATURES_LIBC": "ipv4 ipv6 libc-backtrace libc-big-macros libc-bsd libc-cxx-tests libc-catgets libc-charsets libc-crypt \t\t\t\t\tlibc-crypt-ufc libc-db-aliases libc-envz libc-fcvt libc-fmtmsg libc-fstab libc-ftraverse \t\t\t\t\tlibc-getlogin libc-idn libc-inet-anl libc-libm libc-locales libc-locale-code \t\t\t\t\tlibc-memusage libc-nis libc-nsswitch libc-rcmd libc-rtld-debug libc-spawn libc-streams libc-sunrpc \t\t\t\t\tlibc-utmp libc-utmpx libc-wordexp libc-posix-clang-wchar libc-posix-regexp libc-posix-regexp-glibc \t\t\t\t\tlibc-posix-wchar-io",
"DISTRO_FEATURES_LIBC_DEFAULT": "ipv4 ipv6 libc-backtrace libc-big-macros libc-bsd libc-cxx-tests libc-catgets libc-charsets libc-crypt \t\t\t\t\tlibc-crypt-ufc libc-db-aliases libc-envz libc-fcvt libc-fmtmsg libc-fstab libc-ftraverse \t\t\t\t\tlibc-getlogin libc-idn libc-inet-anl libc-libm libc-locales libc-locale-code \t\t\t\t\tlibc-memusage libc-nis libc-nsswitch libc-rcmd libc-rtld-debug libc-spawn libc-streams libc-sunrpc \t\t\t\t\tlibc-utmp libc-utmpx libc-wordexp libc-posix-clang-wchar libc-posix-regexp libc-posix-regexp-glibc \t\t\t\t\tlibc-posix-wchar-io",
"DISTRO_FEATURES_LIBC_class-nativesdk": "ipv4 ipv6 libc-backtrace libc-big-macros libc-bsd libc-cxx-tests libc-catgets libc-charsets libc-crypt \t\t\t\t\tlibc-crypt-ufc libc-db-aliases libc-envz libc-fcvt libc-fmtmsg libc-fstab libc-ftraverse \t\t\t\t\tlibc-getlogin libc-idn libc-inet-anl libc-libm libc-locales libc-locale-code \t\t\t\t\tlibc-memusage libc-nis libc-nsswitch libc-rcmd libc-rtld-debug libc-spawn libc-streams libc-sunrpc \t\t\t\t\tlibc-utmp libc-utmpx libc-wordexp libc-posix-clang-wchar libc-posix-regexp libc-posix-regexp-glibc \t\t\t\t\tlibc-posix-wchar-io",
"DISTRO_FEATURES_NATIVE": "x11",
"DISTRO_FEATURES_NATIVESDK": "x11 libc-charsets libc-locales libc-locale-code",
"DISTRO_NAME": "Automotive Grade Linux",
"DISTRO_VERSION": "5.1.0",
"DL_DIR": "downloads",
"ELF_APPEND": "ramdisk_size=32768 root=/dev/ram0 rw console=",
"ELF_KERNEL": "tmp/deploy/images/raspberrypi3/uImage",
"ENABLE_BINARY_LOCALE_GENERATION": "1",
"ENABLE_CMA": "1",
"ENABLE_RPM_FILEDEPS_FOR_PYRO": "0",
"ERROR_QA": "dev-so debug-deps dev-deps debug-files arch pkgconfig la perms dep-cmp pkgvarcheck perm-config perm-line perm-link split-strip packages-list pkgv-undefined var-undefined version-going-backwards expanded-d invalid-chars license-checksum dev-elf file-rdeps already-stripped compile-host-path install-host-path installed-vs-shipped ldflags pn-overrides rpaths staticdev useless-rpaths",
"EXCLUDE_FROM_WORLD": "1",
"EXCLUDE_FROM_WORLD_pn-btrfs-tools_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-gcc-sanitizers_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-libbsd_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-libsolv_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-libunwind_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-libunwind_libc-musl_arm": "1",
"EXCLUDE_FROM_WORLD_pn-lttng-tools_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-lttng-ust_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-perf_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-portmap_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-prelink_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-pseudo_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-python-pyqt": "1",
"EXCLUDE_FROM_WORLD_pn-qemu_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-qwt": "1",
"EXCLUDE_FROM_WORLD_pn-rt-tests_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-systemtap-uprobes_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-systemtap_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-unfs3_libc-musl": "1",
"EXCLUDE_FROM_WORLD_pn-valgrind_libc-musl": "1",
"EXCONFIG_ARGS": "",
"EXTENDPE": "",
"EXTENDPKGEVER": "",
"EXTENDPKGV": "1.0-r0",
"EXTENDPRAUTO": "",
"EXTRANATIVEPATH": " tar-native python3-native",
"EXTRA_IMAGECMD": "",
"EXTRA_IMAGECMD_btrfs": "-n 4096",
"EXTRA_IMAGECMD_elf": "",
"EXTRA_IMAGECMD_ext2": "-i 4096",
"EXTRA_IMAGECMD_ext3": "-i 4096",
"EXTRA_IMAGECMD_ext4": "-i 4096",
"EXTRA_IMAGECMD_jffs2": "--pad -l --eraseblock=0x40000 --no-cleanmarkers",
"EXTRA_IMAGEDEPENDS": "",
"EXTRA_IMAGE_FEATURES": "debug-tweaks",
"EXTRA_OECMAKE": "",
"EXTRA_OECONF": " --disable-static",
"EXTRA_OEMAKE": "",
"EXTRA_STAGING_FIXMES": "HOSTTOOLS_DIR",
"E_MIRROR": "http://download.enlightenment.org/releases",
"E_RELEASES": "http://download.enlightenment.org/rel",
"E_SVN": "svn://svn.enlightenment.org/svn/e",
"FAKEROOTBASEENV": "PSEUDO_BINDIR=tmp/sysroots-components/x86_64/pseudo-native/usr/bin PSEUDO_LIBDIR=tmp/sysroots-components/x86_64/pseudo-native/usr/lib/pseudo/lib PSEUDO_PREFIX=tmp/sysroots-components/x86_64/pseudo-native/usr PSEUDO_DISABLED=1",
"FAKEROOTCMD": "tmp/sysroots-components/x86_64/pseudo-native/usr/bin/pseudo",
"FAKEROOTDIRS": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/pseudo/",
"FAKEROOTENV": "PSEUDO_PREFIX=tmp/sysroots-components/x86_64/pseudo-native/usr PSEUDO_LOCALSTATEDIR=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/pseudo/ PSEUDO_PASSWD=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/rootfs:tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native PSEUDO_NOSYMLINKEXP=1 PSEUDO_DISABLED=0",
"FAKEROOTNOENV": "PSEUDO_UNLOAD=1",
"FAKEROOT_QA": "host-user-contaminated",
"FATPAYLOAD": "",
"FC": "arm-agl-linux-gnueabi-gfortran -march=armv7ve -marm -mfpu=neon-vfpv4 -mfloat-abi=hard --sysroot=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot",
"FEATURE_INSTALL": "",
"FEATURE_INSTALL_OPTIONAL": "",
"FEATURE_PACKAGES_eclipse-debug": "packagegroup-core-eclipse-debug",
"FEATURE_PACKAGES_hwcodecs": "",
"FEATURE_PACKAGES_nfs-client": "packagegroup-core-nfs-client",
"FEATURE_PACKAGES_nfs-server": "packagegroup-core-nfs-server",
"FEATURE_PACKAGES_package-management": "rpm dnf",
"FEATURE_PACKAGES_splash": "psplash-raspberrypi",
"FEATURE_PACKAGES_ssh-server-dropbear": "packagegroup-core-ssh-dropbear",
"FEATURE_PACKAGES_ssh-server-openssh": "packagegroup-core-ssh-openssh",
"FEATURE_PACKAGES_tools-debug": "packagegroup-core-tools-debug",
"FEATURE_PACKAGES_tools-profile": "packagegroup-core-tools-profile",
"FEATURE_PACKAGES_tools-sdk": "packagegroup-core-sdk packagegroup-core-standalone-sdk-target",
"FEATURE_PACKAGES_tools-testapps": "packagegroup-core-tools-testapps",
"FEATURE_PACKAGES_x11": "packagegroup-core-x11",
"FEATURE_PACKAGES_x11-base": "packagegroup-core-x11-base",
"FEATURE_PACKAGES_x11-sato": "packagegroup-core-x11-sato",
"FETCHCMD_bzr": "/usr/bin/env bzr",
"FETCHCMD_cvs": "/usr/bin/env cvs",
"FETCHCMD_hg": "/usr/bin/env hg",
"FETCHCMD_svn": "/usr/bin/env svn --non-interactive --trust-server-cert",
"FETCHCMD_wget": "/usr/bin/env wget -t 2 -T 30 -nv --passive-ftp --no-check-certificate",
"FILE": "/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image.bb",
"FILES": "",
"FILESEXTRAPATHS": "__default:",
"FILESOVERRIDES": "arm:rpi:armv7ve:raspberrypi3:poky-agl",
"FILESPATH": "/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image-1.0/poky-agl:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image/poky-agl:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/files/poky-agl:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image-1.0/raspberrypi3:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image/raspberrypi3:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/files/raspberrypi3:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image-1.0/armv7ve:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image/armv7ve:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/files/armv7ve:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image-1.0/rpi:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image/rpi:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/files/rpi:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image-1.0/arm:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image/arm:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/files/arm:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image-1.0/:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/initramfs-netboot-image/:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images/files/",
"FILES_SOLIBSDEV": "/lib/lib*.so /usr/lib/lib*.so",
"FILES_initramfs-netboot-image": "/usr/bin/* /usr/sbin/* /usr/libexec/* /usr/lib/lib*.so.* /etc /com /var /bin/* /sbin/* /lib/*.so.* /lib/udev /usr/lib/udev /lib/udev /usr/lib/udev /usr/share/initramfs-netboot-image /usr/lib/initramfs-netboot-image/* /usr/share/pixmaps /usr/share/applications /usr/share/idl /usr/share/omf /usr/share/sounds /usr/lib/bonobo/servers",
"FILES_initramfs-netboot-image-bin": "/usr/bin/* /usr/sbin/*",
"FILES_initramfs-netboot-image-dbg": "/usr/lib/debug /usr/src/debug",
"FILES_initramfs-netboot-image-dev": "/usr/include /lib/lib*.so /usr/lib/lib*.so /usr/lib/*.la /usr/lib/*.o /usr/lib/pkgconfig /usr/share/pkgconfig /usr/share/aclocal /lib/*.o /usr/lib/initramfs-netboot-image/*.la /lib/*.la",
"FILES_initramfs-netboot-image-doc": "/usr/share/doc /usr/share/man /usr/share/info /usr/share/gtk-doc /usr/share/gnome/help",
"FILES_initramfs-netboot-image-locale": "/usr/share/locale",
"FILES_initramfs-netboot-image-staticdev": "/usr/lib/*.a /lib/*.a /usr/lib/initramfs-netboot-image/*.a",
"FILE_DIRNAME": "/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-agl/meta-netboot/recipes-core/images",
"FIX_V4BX": "",
"FIX_V4BX_ARMV4": "",
"FIX_V4BX_ARMV5": "",
"FOSS_BASE_URL": "http://localhost/repo/?mod=spdx_license_once",
"FOSS_FULL_SPDX": "true",
"FOSS_NO_COPYRIGHT": "true",
"FOSS_RECURSIVE_UNPACK": "false",
"FOSS_SERVER": "http://localhost/repo/?mod=spdx_license_once&fullSPDXFlag=true&noCopyright=true&recursiveUnpack=false",
"FOSS_WGET_FLAGS": "-qO - --no-check-certificate --timeout=0",
"FREESMARTPHONE_GIT": "git://git.freesmartphone.org",
"FULL_OPTIMIZATION": "-O2 -pipe -g -feliminate-unused-debug-types -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0=/usr/src/debug/initramfs-netboot-image/1.0-r0 -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native= -fdebug-prefix-map=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot= ",
"GCCVERSION": "6.3%",
"GDBVERSION": "7.12%",
"GENTOO_MIRROR": "http://distfiles.gentoo.org/distfiles",
"GITDIR": "downloads/git2",
"GLIBCVERSION": "2.25",
"GNOME_GIT": "git://git.gnome.org",
"GNOME_MIRROR": "http://ftp.gnome.org/pub/GNOME/sources",
"GNUPG_MIRROR": "https://www.gnupg.org/ftp/gcrypt",
"GNU_MIRROR": "http://ftp.gnu.org/gnu",
"GPE_MIRROR": "http://gpe.linuxtogo.org/download/source",
"GPU_MEM": "255",
"GTK2DISTROFEATURES": "directfb x11",
"GTK3DISTROFEATURES": "x11 wayland",
"HGDIR": "downloads/hg",
"HOME": "/home/jenkins",
"HOMEPAGE": "",
"HOSTTOOLS": " id [ ar as awk basename bash bzip2 cat chgrp chmod chown chrpath cmp cp cpio cpp cut date dd diff diffstat dirname du echo egrep env expand expr false fgrep file find flock g++ gawk gcc getconf getopt git grep gunzip gzip head hostname install ld ldd ln ls make makeinfo md5sum mkdir mknod mktemp mv nm objcopy objdump od patch perl pod2man pr printf pwd python python2 python2.7 python3 ranlib readelf readlink rm rmdir rpcgen sed sh sha256sum sleep sort split stat strings strip tail tar tee test touch tr true uname uniq wc wget which xargs ip ping ps scp ssh stty",
"HOSTTOOLS_DIR": "tmp/hosttools",
"HOSTTOOLS_NONFATAL": " aws ccache gcc-ar gpg ld.bfd ld.gold nc sftp socat sudo join nl size yes zcat bzr",
"HOST_ARCH": "arm",
"HOST_AR_KERNEL_ARCH": "",
"HOST_AS_ARCH": "",
"HOST_CC_ARCH": " -march=armv7ve -marm -mfpu=neon-vfpv4 -mfloat-abi=hard",
"HOST_CC_KERNEL_ARCH": " -mno-thumb-interwork -marm",
"HOST_EXEEXT": "",
"HOST_LD_ARCH": "",
"HOST_LD_KERNEL_ARCH": " ",
"HOST_OS": "linux-gnueabi",
"HOST_PREFIX": "arm-agl-linux-gnueabi-",
"HOST_SYS": "arm-agl-linux-gnueabi",
"HOST_USER_GID": "1002",
"HOST_USER_UID": "1001",
"HOST_VENDOR": "-agl",
"IMAGE_BASENAME": "initramfs-netboot-image",
"IMAGE_BOOTLOADER": "bcm2835-bootfiles",
"IMAGE_BOOT_FILES": "bcm2835-bootfiles/* uImage-bcm2708-rpi-0-w.dtb;bcm2708-rpi-0-w.dtb uImage-bcm2708-rpi-b.dtb;bcm2708-rpi-b.dtb uImage-bcm2708-rpi-b-plus.dtb;bcm2708-rpi-b-plus.dtb uImage-bcm2709-rpi-2-b.dtb;bcm2709-rpi-2-b.dtb uImage-bcm2710-rpi-3-b.dtb;bcm2710-rpi-3-b.dtb uImage-bcm2708-rpi-cm.dtb;bcm2708-rpi-cm.dtb uImage-bcm2710-rpi-cm3.dtb;bcm2710-rpi-cm3.dtb uImage-hifiberry-amp.dtbo;overlays/hifiberry-amp.dtbo uImage-hifiberry-dac.dtbo;overlays/hifiberry-dac.dtbo uImage-hifiberry-dacplus.dtbo;overlays/hifiberry-dacplus.dtbo uImage-hifiberry-digi.dtbo;overlays/hifiberry-digi.dtbo uImage-i2c-rtc.dtbo;overlays/i2c-rtc.dtbo uImage-iqaudio-dac.dtbo;overlays/iqaudio-dac.dtbo uImage-iqaudio-dacplus.dtbo;overlays/iqaudio-dacplus.dtbo uImage-lirc-rpi.dtbo;overlays/lirc-rpi.dtbo uImage-pitft22.dtbo;overlays/pitft22.dtbo uImage-pitft28-resistive.dtbo;overlays/pitft28-resistive.dtbo uImage-pitft35-resistive.dtbo;overlays/pitft35-resistive.dtbo uImage-pps-gpio.dtbo;overlays/pps-gpio.dtbo uImage-rpi-ft5406.dtbo;overlays/rpi-ft5406.dtbo uImage-w1-gpio.dtbo;overlays/w1-gpio.dtbo uImage-w1-gpio-pullup.dtbo;overlays/w1-gpio-pullup.dtbo uImage-pi3-disable-bt.dtbo;overlays/pi3-disable-bt.dtbo uImage-pi3-miniuart-bt.dtbo;overlays/pi3-miniuart-bt.dtbo uImage-vc4-kms-v3d.dtbo;overlays/vc4-kms-v3d.dtbo uImage u-boot.bin;kernel7.img boot.scr ",
"IMAGE_CLASSES": " sdcard_image-rpi image_types",
"IMAGE_CMD_TAR": "tar --xattrs --xattrs-include='*'",
"IMAGE_CMD_cramfs": "mkfs.cramfs tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/rootfs tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-initramfs-netboot-image-image-complete/initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.cramfs ",
"IMAGE_CMD_ext2": "oe_mkext234fs ext2 ",
"IMAGE_CMD_ext3": "oe_mkext234fs ext3 ",
"IMAGE_CMD_ext4": "oe_mkext234fs ext4 ",
"IMAGE_CMD_jffs2": "mkfs.jffs2 --root=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/rootfs --faketime --output=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-initramfs-netboot-image-image-complete/initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.jffs2 ",
"IMAGE_CMD_squashfs": "mksquashfs tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/rootfs tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-initramfs-netboot-image-image-complete/initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.squashfs -noappend",
"IMAGE_CMD_squashfs-lzo": "mksquashfs tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/rootfs tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-initramfs-netboot-image-image-complete/initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.squashfs-lzo -noappend -comp lzo",
"IMAGE_CMD_squashfs-xz": "mksquashfs tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/rootfs tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-initramfs-netboot-image-image-complete/initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.squashfs-xz -noappend -comp xz",
"IMAGE_CMD_tar": "tar --xattrs --xattrs-include='*' -cvf tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-initramfs-netboot-image-image-complete/initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.tar -C tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/rootfs .",
"IMAGE_CMD_ubifs": "mkfs.ubifs -r tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/rootfs -o tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-initramfs-netboot-image-image-complete/initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.ubifs ${MKUBIFS_ARGS}",
"IMAGE_DEPENDS": "",
"IMAGE_DEPENDS_btrfs": "btrfs-tools-native",
"IMAGE_DEPENDS_cramfs": "util-linux-native",
"IMAGE_DEPENDS_elf": "virtual/kernel mkelfimage-native",
"IMAGE_DEPENDS_ext2": "e2fsprogs-native",
"IMAGE_DEPENDS_ext3": "e2fsprogs-native",
"IMAGE_DEPENDS_ext4": "e2fsprogs-native",
"IMAGE_DEPENDS_jffs2": "mtd-utils-native",
"IMAGE_DEPENDS_multiubi": "mtd-utils-native",
"IMAGE_DEPENDS_rpi-sdimg": " \t\t\tparted-native \t\t\tmtools-native \t\t\tdosfstools-native \t\t\tvirtual/kernel:do_deploy \t\t\tbcm2835-bootfiles \t\t\tu-boot \t\t\t",
"IMAGE_DEPENDS_squashfs": "squashfs-tools-native",
"IMAGE_DEPENDS_squashfs-lzo": "squashfs-tools-native",
"IMAGE_DEPENDS_squashfs-xz": "squashfs-tools-native",
"IMAGE_DEPENDS_tar": " tar-replacement-native",
"IMAGE_DEPENDS_ubi": "mtd-utils-native",
"IMAGE_DEPENDS_ubifs": "mtd-utils-native",
"IMAGE_DEPENDS_wic": "parted-native",
"IMAGE_EXTENSION_live": "hddimg iso",
"IMAGE_FEATURES": "",
"IMAGE_FEATURES_REPLACES_ssh-server-openssh": "ssh-server-dropbear",
"IMAGE_FSTYPES": "ext4.gz.u-boot",
"IMAGE_FSTYPES_DEBUGFS": "ext4.gz.u-boot",
"IMAGE_GEN_DEBUGFS": "0",
"IMAGE_INSTALL": " packagegroup-core-boot packagegroup-base-extended kernel-modules screen mc packagegroup-agl-devel kernel-modules linux-firmware ",
"IMAGE_INSTALL_COMPLEMENTARY": "",
"IMAGE_LINGUAS": "",
"IMAGE_LINK_NAME": "initramfs-netboot-image-raspberrypi3",
"IMAGE_MANIFEST": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-initramfs-netboot-image-image-complete/initramfs-netboot-image-raspberrypi3-20180726064603.rootfs.manifest",
"IMAGE_NAME": "initramfs-netboot-image-raspberrypi3-20180726064603",
"IMAGE_NAME_SUFFIX": ".rootfs",
"IMAGE_OVERHEAD_FACTOR": "1.3",
"IMAGE_PKGTYPE": "rpm",
"IMAGE_ROOTFS": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/rootfs",
"IMAGE_ROOTFS_ALIGNMENT": "4096",
"IMAGE_ROOTFS_EXTRA_SPACE": "256",
"IMAGE_ROOTFS_SIZE": "8192",
"IMAGE_TYPEDEP_elf": "cpio.gz",
"IMAGE_TYPEDEP_rpi-sdimg": "ext3",
"IMAGE_TYPES": " jffs2 jffs2.sum cramfs ext2 ext2.gz ext2.bz2 ext2.lzma ext3 ext3.gz ext4 ext4.gz btrfs iso hddimg squashfs squashfs-xz squashfs-lzo ubi ubifs multiubi tar tar.gz tar.bz2 tar.xz tar.lz4 cpio cpio.gz cpio.xz cpio.lzma cpio.lz4 vmdk vdi qcow2 hdddirect elf wic wic.gz wic.bz2 wic.lzma container ",
"IMAGE_TYPES_MASKED": "",
"IMAGE_TYPE_container": "",
"IMAGE_TYPE_live": "",
"IMAGE_TYPE_vm": "",
"IMAGE_TYPE_wic": "image_types_wic",
"IMGDEPLOYDIR": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-initramfs-netboot-image-image-complete",
"INHERIT": " netboot archiver poky-sanity uninative package_rpm buildstats image-mklibs debian devshell sstate license remove-libtool blacklist sanity",
"INHERIT_BLACKLIST": "blacklist",
"INHERIT_DISTRO": "debian devshell sstate license remove-libtool",
"INHIBIT_DEFAULT_DEPS": "1",
"INITRAMFS_FSTYPES": "ext4.gz ",
"INITRAMFS_IMAGE": "initramfs-netboot-image",
"INITRAMFS_MAXSIZE": "131072",
"JFFS2_ENDIANNESS": "-l",
"JFFS2_ERASEBLOCK": "0x40000",
"JFFS2_SUM_EXTRA_ARGS": "",
"KEEPUIMAGE": "yes",
"KERNELDEPMODDEPEND": "virtual/kernel:do_packagedata",
"KERNELORG_MIRROR": "http://cdn.kernel.org/pub",
"KERNEL_AR": "arm-agl-linux-gnueabi-ar ",
"KERNEL_CC": "arm-agl-linux-gnueabi-gcc -mno-thumb-interwork -marm -fuse-ld=bfd",
"KERNEL_CONSOLE": "ttyS0",
"KERNEL_DEFCONFIG": "bcm2709_defconfig",
"KERNEL_DEVICETREE": " bcm2708-rpi-0-w.dtb bcm2708-rpi-b.dtb bcm2708-rpi-b-plus.dtb bcm2709-rpi-2-b.dtb bcm2710-rpi-3-b.dtb bcm2708-rpi-cm.dtb bcm2710-rpi-cm3.dtb overlays/hifiberry-amp.dtbo overlays/hifiberry-dac.dtbo overlays/hifiberry-dacplus.dtbo overlays/hifiberry-digi.dtbo overlays/i2c-rtc.dtbo overlays/iqaudio-dac.dtbo overlays/iqaudio-dacplus.dtbo overlays/lirc-rpi.dtbo overlays/pitft22.dtbo overlays/pitft28-resistive.dtbo overlays/pitft35-resistive.dtbo overlays/pps-gpio.dtbo overlays/rpi-ft5406.dtbo overlays/w1-gpio.dtbo overlays/w1-gpio-pullup.dtbo overlays/pi3-disable-bt.dtbo overlays/pi3-miniuart-bt.dtbo overlays/vc4-kms-v3d.dtbo ",
"KERNEL_IMAGETYPE": "uImage",
"KERNEL_IMAGETYPE_raspberrypi3": "uImage",
"KERNEL_INITRAMFS": "",
"KERNEL_LD": "arm-agl-linux-gnueabi-ld.bfd ",
"KERNEL_SRC_PATH": "/usr/src/kernel",
"LAYERDEPENDS_efl-layer": "core openembedded-layer",
"LAYERDEPENDS_filesystems-layer": "core openembedded-layer",
"LAYERDEPENDS_gnome-layer": "core openembedded-layer",
"LAYERDEPENDS_meta-python": "core openembedded-layer",
"LAYERDEPENDS_multimedia-layer": "core",
"LAYERDEPENDS_networking-layer": "core openembedded-layer meta-python",
"LAYERDEPENDS_openembedded-layer": "core",
"LAYERDEPENDS_qt5-layer": "core",
"LAYERDEPENDS_yocto": "core",
"LAYERVERSION_core": "10",
"LAYERVERSION_efl-layer": "1",
"LAYERVERSION_filesystems-layer": "1",
"LAYERVERSION_gnome-layer": "1",
"LAYERVERSION_meta-python": "1",
"LAYERVERSION_multimedia-layer": "1",
"LAYERVERSION_networking-layer": "1",
"LAYERVERSION_openembedded-layer": "1",
"LAYERVERSION_qt5-layer": "1",
"LAYERVERSION_yocto": "3",
"LAYER_CONF_VERSION": "7",
"LCONF_VERSION": "7",
"LC_ALL": "en_US.UTF-8",
"LD": "arm-agl-linux-gnueabi-ld --sysroot=tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot ",
"LDCONFIGDEPEND": "ldconfig-native:do_populate_sysroot",
"LDCONFIGDEPEND_libc-musl": "",
"LDCONFIGDEPEND_libc-uclibc": "",
"LDFLAGS": "-Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -fstack-protector-strong -Wl,-z,relro,-z,now",
"LGPLv2_WHITELIST_GPL-3.0": "",
"LIBCEXTENSION": "-gnu",
"LIBCOVERRIDE": ":libc-glibc",
"LIBC_DEPENDENCIES": "libsegfault \t\t glibc \t\t glibc-dbg \t\t glibc-dev \t\t glibc-utils \t\t glibc-thread-db \t\t \tglibc-localedata-i18n \tglibc-gconv-ibm850 \tglibc-gconv-cp1252 \tglibc-gconv-iso8859-1 \tglibc-gconv-iso8859-15",
"LIBC_LOCALE_DEPENDENCIES": "\tglibc-localedata-i18n \tglibc-gconv-ibm850 \tglibc-gconv-cp1252 \tglibc-gconv-iso8859-1 \tglibc-gconv-iso8859-15",
"LICENSE": "MIT",
"LICENSE_CREATE_PACKAGE": "0",
"LICENSE_DIRECTORY": "tmp/deploy/licenses",
"LICENSE_FILES_DIRECTORY": "/usr/share/licenses/",
"LICENSE_PACKAGE_SUFFIX": "-lic",
"LICENSE_PATH": " /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-raspberrypi/files/custom-licenses /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-qt5/licenses /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-openembedded/meta-oe/licenses /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-openembedded/meta-networking/licenses /w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/meta-openembedded/meta-python/licenses",
"LICSSTATEDIR": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/license-destdir/",
"LINGUAS_INSTALL": "",
"LINKER_HASH_STYLE": "gnu",
"LINKER_HASH_STYLE_mipsarch": "sysv",
"LINUXLIBCVERSION": "4.10%",
"LOCALCONF_VERSION": "1",
"LOCALEBASEPN": "initramfs-netboot-image",
"LOCALE_SECTION": "",
"LOCALE_UTF8_IS_DEFAULT": "1",
"LOCALE_UTF8_ONLY": "0",
"LOGFIFO": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/temp/fifo.28766",
"LOGNAME": "jenkins",
"LOG_DIR": "tmp/log",
"MACHINE": "raspberrypi3",
"MACHINEOVERRIDES": "rpi:armv7ve:raspberrypi3",
"MACHINE_ARCH": "raspberrypi3",
"MACHINE_ESSENTIAL_EXTRA_RDEPENDS": "",
"MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS": "",
"MACHINE_EXTRA_RDEPENDS": "",
"MACHINE_EXTRA_RRECOMMENDS": " kernel-modules linux-firmware-bcm43430",
"MACHINE_FEATURES": " vc4graphics apm usbhost keyboard vfat ext2 screen touchscreen alsa bluetooth wifi sdio qemu-usermode",
"MACHINE_FEATURES_BACKFILL": "rtc qemu-usermode",
"MACHINE_FEATURES_BACKFILL_CONSIDERED": "rtc",
"MACHINE_HWCODECS": "",
"MACHINE_TASK_PROVIDER": "packagegroup-base",
"MAINTAINER": "AGL <[email protected]>",
"MAKE": "make",
"MERGEPERFILEDEPS": "1",
"METADATA_BRANCH": "HEAD",
"METADATA_REVISION": "022df4653576c72752156bef8fda0e1aa46733d2",
"METADIR": "/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone",
"MIN_BTRFS_SIZE": "16384",
"MIRRORS": "ftp://.*/.* https://download.automotivelinux.org/AGL/mirror/ \\n http://.*/.* https://download.automotivelinux.org/AGL/mirror/ \\n https://.*/.* https://download.automotivelinux.org/AGL/mirror/ \\n ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n https://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n http://ftp.debian.org/debian/pool\thttp://snapshot.debian.org/archive/debian-archive/20120328T092752Z/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://snapshot.debian.org/archive/debian-archive/20110127T084257Z/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://snapshot.debian.org/archive/debian-archive/20090802T004153Z/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.de.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.au.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.cl.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.hr.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.fi.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.hk.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.hu.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.ie.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.it.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.jp.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.no.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.pl.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.ro.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.si.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.es.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.se.debian.org/debian/pool \\n http://ftp.debian.org/debian/pool\thttp://ftp.tr.debian.org/debian/pool \\n http://ftp.gnu.org/gnu\thttps://mirrors.kernel.org/gnu \\n http://cdn.kernel.org/pub\thttp://www.kernel.org/pub \\n https://www.gnupg.org/ftp/gcrypt\tftp://ftp.gnupg.org/gcrypt \\n https://www.gnupg.org/ftp/gcrypt\tftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt \\n https://www.gnupg.org/ftp/gcrypt\tftp://mirrors.dotsrc.org/gcrypt \\n ftp://dante.ctan.org/tex-archive ftp://ftp.fu-berlin.de/tex/CTAN \\n ftp://dante.ctan.org/tex-archive http://sunsite.sut.ac.jp/pub/archives/ctan/ \\n ftp://dante.ctan.org/tex-archive http://ctan.unsw.edu.au/ \\n ftp://ftp.gnutls.org/gcrypt/gnutls https://www.gnupg.org/ftp/gcrypt/gnutls \\n http://ftp.info-zip.org/pub/infozip/src/ http://mirror.switch.ch/ftp/mirror/infozip/src/ \\n http://ftp.info-zip.org/pub/infozip/src/ ftp://sunsite.icm.edu.pl/pub/unix/archiving/info-zip/src/ \\n ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/ \\n ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://ftp.tau.ac.il/pub/unix/admin/ \\n ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://ftp.cert.dfn.de/pub/tools/admin/lsof/ \\n ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://ftp.fu-berlin.de/pub/unix/tools/lsof/ \\n ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://ftp.kaizo.org/pub/lsof/ \\n ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://ftp.tu-darmstadt.de/pub/sysadmin/lsof/ \\n ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://ftp.tux.org/pub/sites/vic.cc.purdue.edu/tools/unix/lsof/ \\n ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://gd.tuwien.ac.at/utils/admin-tools/lsof/ \\n ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://sunsite.ualberta.ca/pub/Mirror/lsof/ \\n ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://the.wiretapped.net/pub/security/host-security/lsof/ \\n http://archive.apache.org/dist http://www.us.apache.org/dist \\n http://archive.apache.org/dist http://archive.apache.org/dist \\n http://downloads.sourceforge.net/watchdog/ http://fossies.org/linux/misc/ \\n http://download.savannah.gnu.org/releases http://download-mirror.savannah.gnu.org/releases \\n http://download.savannah.nongnu.org/releases http://download-mirror.savannah.nongnu.org/releases \\n cvs://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n svn://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n hg://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n bzr://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n p4://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n osc://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n https?$://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \\n npm://.*/?.* http://downloads.yoctoproject.org/mirror/sources/ \\n cvs://.*/.* http://sources.openembedded.org/ \\n svn://.*/.* http://sources.openembedded.org/ \\n git://.*/.* http://sources.openembedded.org/ \\n hg://.*/.* http://sources.openembedded.org/ \\n bzr://.*/.* http://sources.openembedded.org/ \\n p4://.*/.* http://sources.openembedded.org/ \\n osc://.*/.* http://sources.openembedded.org/ \\n https?$://.*/.* http://sources.openembedded.org/ \\n ftp://.*/.* http://sources.openembedded.org/ \\n npm://.*/?.* http://sources.openembedded.org/ \\n http://search.cpan.org/CPAN http://cpan.metacpan.org/ \\n http://search.cpan.org/CPAN http://search.cpan.org/CPAN/ \\n git://anonscm.debian.org/.* git://anonscm.debian.org/git/PATH;protocol=https \\n git://git.gnome.org/.* git://git.gnome.org/browse/PATH;protocol=https \\n git://git.savannah.gnu.org/.* git://git.savannah.gnu.org/git/PATH;protocol=https \\n git://git.yoctoproject.org/.* git://git.yoctoproject.org/git/PATH;protocol=https \\n git://.*/.* git://HOST/PATH;protocol=https \\n ",
"MLPREFIX": "",
"MODULE_TARBALL_DEPLOY": "0",
"MULTILIBRE_ALLOW_REP": "/bin|/sbin|/usr/bin|/usr/sbin|/usr/libexec|/etc|/lib/udev|/lib/modules/[^/]*/modules.*|",
"MULTILIB_CHECK_FILE": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/multilib_check.py",
"MULTILIB_TEMP_ROOTFS": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/multilib",
"MULTILIB_VARIANTS": "",
"MULTIMACH_TARGET_SYS": "raspberrypi3-agl-linux-gnueabi",
"MULTI_PROVIDER_WHITELIST": "virtual/libintl virtual/libintl-native virtual/nativesdk-libintl virtual/xserver virtual/update-alternatives-native virtual/update-alternatives virtual/libgl virtual/egl virtual/libgles1 virtual/libgles2",
"NATIVELSBSTRING": "universal",
"NETBOOT_FSTYPES": "ext4.gz.u-boot",
"NM": "arm-agl-linux-gnueabi-nm",
"NO32LIBS": "1",
"NOHDD": "1",
"NOISO": "1",
"NO_RECOMMENDATIONS": "",
"OBJCOPY": "arm-agl-linux-gnueabi-objcopy",
"OBJDUMP": "arm-agl-linux-gnueabi-objdump",
"OEINCLUDELOGS": "yes",
"OELAYOUT_ABI": "12",
"OES_BITBAKE_CONF": "1",
"OE_IMPORTED": "",
"OE_IMPORTS": " os sys time oe.path oe.utils oe.types oe.package oe.packagegroup oe.sstatesig oe.lsb oe.cachedpath oe.license",
"OE_INIT_ENV_SCRIPT": "oe-init-build-env",
"OE_TERMINAL": "auto",
"OE_TERMINAL_EXPORTS": " EXTRA_OEMAKE CACHED_CONFIGUREVARS CONFIGUREOPTS EXTRA_OECONF",
"OLDEST_KERNEL": "3.2.0",
"OLDEST_KERNEL_aarch64": "3.14",
"OLDEST_KERNEL_nios2": "3.19",
"OVERRIDES": "task-rootfs:linux-gnueabi:arm:build-linux:pn-initramfs-netboot-image:rpi:armv7ve:raspberrypi3:poky-agl:class-target:forcevariable:smack:agl-devel:netboot:eel:libc-glibc",
"P": "initramfs-netboot-image-1.0",
"PACKAGEBUILDPKGD": " perform_packagecopy split_and_strip_files fixup_perms ",
"PACKAGECONFIG": "",
"PACKAGEFUNCS": " package_fixsymlinks package_name_hook package_do_filedeps package_do_shlibs package_do_pkgconfig read_shlibdeps package_depchains emit_pkgdata",
"PACKAGEINDEXDEPS": " rpm-native:do_populate_sysroot createrepo-c-native:do_populate_sysroot",
"PACKAGELOCK": "tmp/sysroots/package-output.lock",
"PACKAGES": "",
"PACKAGESPLITFUNCS": " package_do_split_locales populate_packages",
"PACKAGES_DYNAMIC": "^initramfs-netboot-image-locale-.*",
"PACKAGEVARS": "FILES RDEPENDS RRECOMMENDS SUMMARY DESCRIPTION RSUGGESTS RPROVIDES RCONFLICTS PKG ALLOW_EMPTY pkg_postinst pkg_postrm INITSCRIPT_NAME INITSCRIPT_PARAMS DEBIAN_NOAUTONAME ALTERNATIVE PKGE PKGV PKGR USERADD_PARAM GROUPADD_PARAM CONFFILES SYSTEMD_SERVICE LICENSE SECTION pkg_preinst pkg_prerm RREPLACES GROUPMEMS_PARAM SYSTEMD_AUTO_ENABLE SKIP_FILEDEPS PRIVATE_LIBS",
"PACKAGE_ARCH": "raspberrypi3",
"PACKAGE_ARCHS": "all any noarch armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7vehf-vfp armv7vet2hf-vfp armv7vehf-neon armv7vet2hf-neon armv7vehf-neon-vfpv4 armv7vet2hf-neon-vfpv4 raspberrypi3",
"PACKAGE_BEFORE_PN": "",
"PACKAGE_CLASSES": "package_rpm",
"PACKAGE_DEPENDS": " rpm-native file-native",
"PACKAGE_EXCLUDE": "",
"PACKAGE_EXTRA_ARCHS": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7vehf-vfp armv7vet2hf-vfp armv7vehf-neon armv7vet2hf-neon armv7vehf-neon-vfpv4 armv7vet2hf-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv4": "arm armv4",
"PACKAGE_EXTRA_ARCHS_tune-armv4b": "armeb armv4b",
"PACKAGE_EXTRA_ARCHS_tune-armv4t": "arm armv4 armv4t",
"PACKAGE_EXTRA_ARCHS_tune-armv4tb": "armeb armv4b armv4tb",
"PACKAGE_EXTRA_ARCHS_tune-armv5": "arm armv4 armv5",
"PACKAGE_EXTRA_ARCHS_tune-armv5-vfp": "arm armv4 armv5 armv5-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5b": "armeb armv4b armv5b",
"PACKAGE_EXTRA_ARCHS_tune-armv5b-vfp": "armeb armv4b armv5b armv5b-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5e": "arm armv4 armv5 armv5e",
"PACKAGE_EXTRA_ARCHS_tune-armv5e-vfp": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5eb": "armeb armv4b armv5b armv5eb",
"PACKAGE_EXTRA_ARCHS_tune-armv5eb-vfp": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5ehf-vfp": "armv5hf-vfp armv5ehf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5ehfb-vfp": "armv5hfb-vfp armv5ehfb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5hf-vfp": "armv5hf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5hfb-vfp": "armv5hfb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5t": "arm armv4 armv4t armv5 armv5t",
"PACKAGE_EXTRA_ARCHS_tune-armv5t-vfp": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5tb": "armeb armv4b armv4tb armv5b armv5tb",
"PACKAGE_EXTRA_ARCHS_tune-armv5tb-vfp": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5te": "arm armv4 armv4t armv5 armv5t armv5e armv5te",
"PACKAGE_EXTRA_ARCHS_tune-armv5te-vfp": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5teb": "armeb armv4b armv4tb armv5b armv5tb armv5eb armv5teb",
"PACKAGE_EXTRA_ARCHS_tune-armv5teb-vfp": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5tehf-vfp": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5tehfb-vfp": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5thf-vfp": "armv5hf-vfp armv5thf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv5thfb-vfp": "armv5hfb-vfp armv5thfb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv6": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv6-novfp": "arm armv4 armv5 armv5e armv6",
"PACKAGE_EXTRA_ARCHS_tune-armv6b": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp armv6b armv6b-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv6b-novfp": "armeb armv4b armv5b armv5eb armv6b",
"PACKAGE_EXTRA_ARCHS_tune-armv6hf": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv6hfb": "armv5hfb-vfp armv5ehfb-vfp armv6hfb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv6t": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv6t-novfp": "arm armv4 armv4t armv5 armv5t armv5e armv5te armv6 armv6t",
"PACKAGE_EXTRA_ARCHS_tune-armv6tb": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv6b armv6tb armv6b-vfp armv6tb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv6tb-novfp": "armeb armv4b armv4tb armv5b armv5tb armv5eb armv5teb armv6b armv6tb",
"PACKAGE_EXTRA_ARCHS_tune-armv6thf": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv6thfb": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6hfb-vfp armv6thfb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7a": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7a-neon": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7a-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7a-neon-vfpv4": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7a-neon armv7a-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7a-vfpv3": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7a-vfpv3d16 armv7a-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7a-vfpv3d16": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7a-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7ab": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp armv6b armv6b-vfp armv7ab-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7ab-neon": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp armv6b armv6b-vfp armv7ab-vfp armv7ab-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7ab-neon-vfpv4": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp armv6b armv6b-vfp armv7ab-vfp armv7ab-neon armv7ab-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7ab-vfpv3": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp armv6b armv6b-vfp armv7ab-vfp armv7ab-vfpv3d16 armv7ab-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7ab-vfpv3d16": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp armv6b armv6b-vfp armv7ab-vfp armv7ab-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7ahf": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7ahf-neon": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7ahf-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7ahf-neon-vfpv4": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7ahf-neon armv7ahf-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7ahf-vfpv3": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7ahf-vfpv3d16 armv7ahf-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7ahf-vfpv3d16": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7ahf-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7ahfb": "armv5hfb-vfp armv5ehfb-vfp armv6hfb-vfp armv7ahfb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7ahfb-neon": "armv5hfb-vfp armv5ehfb-vfp armv6hfb-vfp armv7ahfb-vfp armv7ahfb-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7ahfb-neon-vfpv4": "armv5hfb-vfp armv5ehfb-vfp armv6hfb-vfp armv7ahfb-vfp armv7ahfb-neon armv7ahfb-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7ahfb-vfpv3": "armv5hfb-vfp armv5ehfb-vfp armv6hfb-vfp armv7ahfb-vfp armv7ahfb-vfpv3d16 armv7ahfb-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7ahfb-vfpv3d16": "armv5hfb-vfp armv5ehfb-vfp armv6hfb-vfp armv7ahfb-vfp armv7ahfb-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7at": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7at-neon": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7a-neon armv7at2-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7at-neon-vfpv4": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7a-neon armv7at2-neon armv7a-neon-vfpv4 armv7at2-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7at-vfpv3": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7a-vfpv3d16 armv7at2-vfpv3d16 armv7a-vfpv3 armv7at2-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7at-vfpv3d16": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7a-vfpv3d16 armv7at2-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7atb": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv6b armv6tb armv6b-vfp armv6tb-vfp armv7ab-vfp armv7at2b-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7atb-neon": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv6b armv6tb armv6b-vfp armv6tb-vfp armv7ab-vfp armv7at2b-vfp armv7ab-neon armv7at2b-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7atb-neon-vfpv4": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv6b armv6tb armv6b-vfp armv6tb-vfp armv7ab-vfp armv7at2b-vfp armv7ab-neon armv7at2b-neon armv7ab-neon-vfpv4 armv7at2b-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7atb-vfpv3": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv6b armv6tb armv6b-vfp armv6tb-vfp armv7ab-vfp armv7at2b-vfp armv7ab-vfpv3d16 armv7at2b-vfpv3d16 armv7ab-vfpv3 armv7at2b-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7atb-vfpv3d16": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv6b armv6tb armv6b-vfp armv6tb-vfp armv7ab-vfp armv7at2b-vfp armv7ab-vfpv3d16 armv7at2b-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7athf": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7athf-neon": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7ahf-neon armv7at2hf-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7athf-neon-vfpv4": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7ahf-neon armv7at2hf-neon armv7ahf-neon-vfpv4 armv7at2hf-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7athf-vfpv3": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7ahf-vfpv3d16 armv7at2hf-vfpv3d16 armv7ahf-vfpv3 armv7at2hf-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7athf-vfpv3d16": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7ahf-vfpv3d16 armv7at2hf-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7athfb": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6hfb-vfp armv6thfb-vfp armv7ahfb-vfp armv7at2hfb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7athfb-neon": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6hfb-vfp armv6thfb-vfp armv7ahfb-vfp armv7at2hfb-vfp armv7ahfb-neon armv7at2hfb-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7athfb-neon-vfpv4": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6hfb-vfp armv6thfb-vfp armv7ahfb-vfp armv7at2hfb-vfp armv7ahfb-neon armv7at2hfb-neon armv7ahfb-neon-vfpv4 armv7at2hfb-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7athfb-vfpv3": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6hfb-vfp armv6thfb-vfp armv7ahfb-vfp armv7at2hfb-vfp armv7ahfb-vfpv3d16 armv7at2hfb-vfpv3d16 armv7ahfb-vfpv3 armv7at2hfb-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7athfb-vfpv3d16": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6hfb-vfp armv6thfb-vfp armv7ahfb-vfp armv7at2hfb-vfp armv7ahfb-vfpv3d16 armv7at2hfb-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7ve": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7ve armv7ve-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7ve-neon": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7ve armv7ve-vfp armv7ve-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7ve-neon-vfpv4": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7ve armv7ve-vfp armv7ve-neon armv7ve-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7ve-vfpv3": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7ve armv7ve-vfp armv7ve-vfpv3d16 armv7ve-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7ve-vfpv3d16": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7ve armv7ve-vfp armv7ve-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7veb": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp armv6b armv6b-vfp armv7ab-vfp armv7veb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7veb-neon": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp armv6b armv6b-vfp armv7ab-vfp armv7veb-vfp armv7veb-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7veb-neon-vfpv4": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp armv6b armv6b-vfp armv7ab-vfp armv7veb-vfp armv7veb-neon armv7veb-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7veb-vfpv3": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp armv6b armv6b-vfp armv7ab-vfp armv7veb-vfp armv7veb-vfpv3d16 armv7veb-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7veb-vfpv3d16": "armeb armv4b armv5b armv5b-vfp armv5eb armv5eb-vfp armv6b armv6b-vfp armv7ab-vfp armv7veb-vfp armv7veb-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7vehf": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7vehf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7vehf-neon": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7vehf-vfp armv7vehf-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7vehf-neon-vfpv4": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7vehf-vfp armv7vehf-neon armv7vehf-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7vehf-vfpv3": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7vehf-vfp armv7vehf-vfpv3d16 armv7vehf-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7vehf-vfpv3d16": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7vehf-vfp armv7vehf-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7vehfb": "armv5hfb-vfp armv5ehfb-vfp armv6hfb-vfp armv7ahfb-vfp armv7vehfb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7vehfb-neon": "armv5hfb-vfp armv5ehfb-vfp armv6hfb-vfp armv7ahfb-vfp armv7vehfb-vfp armv7vehfb-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7vehfb-neon-vfpv4": "armv5hfb-vfp armv5ehfb-vfp armv6hfb-vfp armv7ahfb-vfp armv7vehfb-vfp armv7vehfb-neon armv7vehfb-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7vehfb-vfpv3": "armv5hfb-vfp armv5ehfb-vfp armv6hfb-vfp armv7ahfb-vfp armv7vehfb-vfp armv7vehfb-vfpv3d16 armv7vehfb-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7vehfb-vfpv3d16": "armv5hfb-vfp armv5ehfb-vfp armv6hfb-vfp armv7ahfb-vfp armv7vehfb-vfp armv7vehfb-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7vet": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7ve armv7ve-vfp armv7vet2-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7vet-neon": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7ve armv7ve-vfp armv7vet2-vfp armv7ve-neon armv7vet2-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7vet-neon-vfpv4": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7ve armv7ve-vfp armv7vet2-vfp armv7ve-neon armv7vet2-neon armv7ve-neon-vfpv4 armv7vet2-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7vet-vfpv3": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7ve armv7ve-vfp armv7vet2-vfp armv7ve-vfpv3d16 armv7vet2-vfpv3d16 armv7ve-vfpv3 armv7vet2-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7vet-vfpv3d16": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7ve armv7ve-vfp armv7vet2-vfp armv7ve-vfpv3d16 armv7vet2-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7vetb": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv6b armv6tb armv6b-vfp armv6tb-vfp armv7ab-vfp armv7at2b-vfp armv7veb-vfp armv7vet2b-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7vetb-neon": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv6b armv6tb armv6b-vfp armv6tb-vfp armv7ab-vfp armv7at2b-vfp armv7veb-vfp armv7vet2b-vfp armv7veb-neon armv7vet2b-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7vetb-neon-vfpv4": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv6b armv6tb armv6b-vfp armv6tb-vfp armv7ab-vfp armv7at2b-vfp armv7veb-vfp armv7vet2b-vfp armv7veb-neon armv7vet2b-neon armv7veb-neon-vfpv4 armv7vet2b-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7vetb-vfpv3": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv6b armv6tb armv6b-vfp armv6tb-vfp armv7ab-vfp armv7at2b-vfp armv7veb-vfp armv7vet2b-vfp armv7veb-vfpv3d16 armv7vet2b-vfpv3d16 armv7veb-vfpv3 armv7vet2b-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7vetb-vfpv3d16": "armeb armv4b armv4tb armv5b armv5tb armv5b-vfp armv5tb-vfp armv5eb armv5teb armv5eb-vfp armv5teb-vfp armv6b armv6tb armv6b-vfp armv6tb-vfp armv7ab-vfp armv7at2b-vfp armv7veb-vfp armv7vet2b-vfp armv7veb-vfpv3d16 armv7vet2b-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7vethf": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7vehf-vfp armv7vet2hf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7vethf-neon": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7vehf-vfp armv7vet2hf-vfp armv7vehf-neon armv7vet2hf-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7vethf-neon-vfpv4": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7vehf-vfp armv7vet2hf-vfp armv7vehf-neon armv7vet2hf-neon armv7vehf-neon-vfpv4 armv7vet2hf-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7vethf-vfpv3": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7vehf-vfp armv7vet2hf-vfp armv7vehf-vfpv3d16 armv7vet2hf-vfpv3d16 armv7vehf-vfpv3 armv7vet2hf-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7vethf-vfpv3d16": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7vehf-vfp armv7vet2hf-vfp armv7vehf-vfpv3d16 armv7vet2hf-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-armv7vethfb": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6hfb-vfp armv6thfb-vfp armv7ahfb-vfp armv7at2hfb-vfp armv7vehfb-vfp armv7vet2hfb-vfp",
"PACKAGE_EXTRA_ARCHS_tune-armv7vethfb-neon": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6hfb-vfp armv6thfb-vfp armv7ahfb-vfp armv7at2hfb-vfp armv7vehfb-vfp armv7vet2hfb-vfp armv7vehfb-neon armv7vet2hfb-neon",
"PACKAGE_EXTRA_ARCHS_tune-armv7vethfb-neon-vfpv4": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6hfb-vfp armv6thfb-vfp armv7ahfb-vfp armv7at2hfb-vfp armv7vehfb-vfp armv7vet2hfb-vfp armv7vehfb-neon armv7vet2hfb-neon armv7vehfb-neon-vfpv4 armv7vet2hfb-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-armv7vethfb-vfpv3": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6hfb-vfp armv6thfb-vfp armv7ahfb-vfp armv7at2hfb-vfp armv7vehfb-vfp armv7vet2hfb-vfp armv7vehfb-vfpv3d16 armv7vet2hfb-vfpv3d16 armv7vehfb-vfpv3 armv7vet2hfb-vfpv3",
"PACKAGE_EXTRA_ARCHS_tune-armv7vethfb-vfpv3d16": "armv5hfb-vfp armv5thfb-vfp armv5ehfb-vfp armv5tehfb-vfp armv6hfb-vfp armv6thfb-vfp armv7ahfb-vfp armv7at2hfb-vfp armv7vehfb-vfp armv7vet2hfb-vfp armv7vehfb-vfpv3d16 armv7vet2hfb-vfpv3d16",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7ve armv7ve-vfp cortexa7-vfp",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7-neon": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7ve armv7ve-vfp armv7ve-neon cortexa7-vfp cortexa7-neon",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7-neon-vfpv4": "arm armv4 armv5 armv5-vfp armv5e armv5e-vfp armv6 armv6-vfp armv7a armv7a-vfp armv7ve armv7ve-vfp armv7ve-neon armv7ve-neon-vfpv4 cortexa7-vfp cortexa7-neon cortexa7-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7hf": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7vehf-vfp cortexa7hf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7hf-neon": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7vehf-vfp armv7vehf-neon cortexa7hf-vfp cortexa7hf-neon",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7hf-neon-vfpv4": "armv5hf-vfp armv5ehf-vfp armv6hf-vfp armv7ahf-vfp armv7vehf-vfp armv7vehf-neon armv7vehf-neon-vfpv4 cortexa7hf-vfp cortexa7hf-neon cortexa7hf-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7t": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7ve armv7ve-vfp armv7vet2-vfp cortexa7-vfp cortexa7t2-vfp",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7t-neon": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7ve armv7ve-vfp armv7vet2-vfp armv7ve-neon armv7vet2-neon cortexa7-vfp cortexa7-neon cortexa7t2-vfp cortexa7t2-neon",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7t-neon-vfpv4": "arm armv4 armv4t armv5 armv5t armv5-vfp armv5t-vfp armv5e armv5te armv5e-vfp armv5te-vfp armv6 armv6t armv6-vfp armv6t-vfp armv7a armv7a-vfp armv7at2-vfp armv7ve armv7ve-vfp armv7vet2-vfp armv7ve-neon armv7vet2-neon armv7ve-neon-vfpv4 armv7vet2-neon-vfpv4 cortexa7-vfp cortexa7-neon cortexa7-neon-vfpv4 cortexa7t2-vfp cortexa7t2-neon cortexa7t2-neon-vfpv4",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7thf": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7vehf-vfp armv7vet2hf-vfp cortexa7hf-vfp cortexa7t2hf-vfp",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7thf-neon": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7vehf-vfp armv7vet2hf-vfp armv7vehf-neon armv7vet2hf-neon cortexa7hf-vfp cortexa7hf-neon cortexa7t2hf-vfp cortexa7t2hf-neon",
"PACKAGE_EXTRA_ARCHS_tune-cortexa7thf-neon-vfpv4": "armv5hf-vfp armv5thf-vfp armv5ehf-vfp armv5tehf-vfp armv6hf-vfp armv6thf-vfp armv7ahf-vfp armv7at2hf-vfp armv7vehf-vfp armv7vet2hf-vfp armv7vehf-neon armv7vet2hf-neon armv7vehf-neon-vfpv4 armv7vet2hf-neon-vfpv4 cortexa7hf-vfp cortexa7hf-neon cortexa7hf-neon-vfpv4 cortexa7t2hf-vfp cortexa7t2hf-neon cortexa7t2hf-neon-vfpv4",
"PACKAGE_INSTALL": "run-postinsts initramfs-netboot base-passwd busybox",
"PACKAGE_INSTALL_ATTEMPTONLY": "",
"PACKAGE_INSTALL_ORIG": "initramfs-netboot busybox base-passwd run-postinsts",
"PACKAGE_PREPROCESS_FUNCS": "",
"PACKAGE_WRITE_DEPS": "",
"PARALLEL_MAKE": "-j 16",
"PARALLEL_MAKEINST": "-j 16",
"PATCHDEPENDENCY": "quilt-native:do_populate_sysroot",
"PATCHRESOLVE": "noop",
"PATCHTOOL": "quilt",
"PATCH_GIT_USER_EMAIL": "oe.patch@oe",
"PATCH_GIT_USER_NAME": "OpenEmbedded",
"PATH": "tmp/sysroots-uninative/x86_64-linux/usr/bin:tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/usr/bin/tar-native:tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/usr/bin/python3-native:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/poky/scripts:tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/usr/bin/arm-agl-linux-gnueabi:tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot/usr/bin/crossscripts:tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/usr/sbin:tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/usr/bin:tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/sbin:tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot-native/bin:/w/workspace/release-jjb-eel-snapshot/MACHINE/raspberrypi3/label/agl-test-slave/repoclone/poky/bitbake/bin:tmp/hosttools",
"PE": "",
"PERSISTENT_DIR": "cache",
"PF": "initramfs-netboot-image-1.0-r0",
"PID": "28766",
"PKGD": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/package",
"PKGDATA_DIR": "tmp/pkgdata/raspberrypi3",
"PKGDEST": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/packages-split",
"PKGDESTWORK": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/pkgdata",
"PKGE": "",
"PKGMLTRIPLETS": "raspberrypi3-agl-linux-gnueabi armv7vet2hf-neon-vfpv4-agl-linux-gnueabi armv7vehf-neon-vfpv4-agl-linux-gnueabi armv7vet2hf-neon-agl-linux-gnueabi armv7vehf-neon-agl-linux-gnueabi armv7vet2hf-vfp-agl-linux-gnueabi armv7vehf-vfp-agl-linux-gnueabi armv7at2hf-vfp-agl-linux-gnueabi armv7ahf-vfp-agl-linux-gnueabi armv6thf-vfp-agl-linux-gnueabi armv6hf-vfp-agl-linux-gnueabi armv5tehf-vfp-agl-linux-gnueabi armv5ehf-vfp-agl-linux-gnueabi armv5thf-vfp-agl-linux-gnueabi armv5hf-vfp-agl-linux-gnueabi noarch-agl-linux-gnueabi any-agl-linux-gnueabi all-agl-linux-gnueabi",
"PKGR": "r0",
"PKGTRIPLETS": "raspberrypi3-agl-linux-gnueabi armv7vet2hf-neon-vfpv4-agl-linux-gnueabi armv7vehf-neon-vfpv4-agl-linux-gnueabi armv7vet2hf-neon-agl-linux-gnueabi armv7vehf-neon-agl-linux-gnueabi armv7vet2hf-vfp-agl-linux-gnueabi armv7vehf-vfp-agl-linux-gnueabi armv7at2hf-vfp-agl-linux-gnueabi armv7ahf-vfp-agl-linux-gnueabi armv6thf-vfp-agl-linux-gnueabi armv6hf-vfp-agl-linux-gnueabi armv5tehf-vfp-agl-linux-gnueabi armv5ehf-vfp-agl-linux-gnueabi armv5thf-vfp-agl-linux-gnueabi armv5hf-vfp-agl-linux-gnueabi noarch-agl-linux-gnueabi any-agl-linux-gnueabi all-agl-linux-gnueabi",
"PKGV": "1.0",
"PKGWRITEDIRRPM": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/deploy-rpms",
"PKG_CONFIG_DIR": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot/usr/lib/pkgconfig",
"PKG_CONFIG_DISABLE_UNINSTALLED": "yes",
"PKG_CONFIG_LIBDIR": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot/usr/lib/pkgconfig",
"PKG_CONFIG_PATH": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot/usr/lib/pkgconfig:tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot/usr/share/pkgconfig",
"PKG_CONFIG_SYSROOT_DIR": "tmp/work/raspberrypi3-agl-linux-gnueabi/initramfs-netboot-image/1.0-r0/recipe-sysroot",
"PKG_CONFIG_SYSTEM_INCLUDE_PATH": "/usr/include",
"PKG_CONFIG_SYSTEM_LIBRARY_PATH": "/lib:/usr/lib",
"PN": "initramfs-netboot-image",
"POKYQEMUDEPS": "packagegroup-core-device-devel",
"POKY_DEFAULT_DISTRO_FEATURES": "largefile systemd opengl wayland pam bluetooth bluez5",
"POKY_DEFAULT_EXTRA_RDEPENDS": "packagegroup-core-boot",
"POKY_DEFAULT_EXTRA_RRECOMMENDS": "kernel-module-af-packet",
"POPULATESYSROOTDEPS": "virtual/arm-agl-linux-gnueabi-binutils:do_populate_sysroot",
"POPULATESYSROOTDEPS_class-nativesdk": "virtual/arm-agl-linux-gnueabi-binutils-crosssdk:do_populate_sysroot",
"POPULATESYSROOTDEPS_class-target": "virtual/arm-agl-linux-gnueabi-binutils:do_populate_sysroot",
"POSTINST_LOGFILE": "/var/log/postinstall.log",
"PR": "r0",
"PRAUTO": "",
"PRAUTOINX": "initramfs-netboot-image-1.0-r0",
"PREFERRED_PROVIDER_console-tools": "kbd",
"PREFERRED_PROVIDER_dbus-glib": "dbus-glib",
"PREFERRED_PROVIDER_dbus-glib-native": "dbus-glib-native",
"PREFERRED_PROVIDER_gdb": "gdb",
"PREFERRED_PROVIDER_gdk-pixbuf": "gdk-pixbuf",
"PREFERRED_PROVIDER_getopt": "util-linux-getopt",
"PREFERRED_PROVIDER_gzip-native": "pigz-native",
"PREFERRED_PROVIDER_jpeg": "libjpeg-turbo",
"PREFERRED_PROVIDER_libgbm": "mesa",
"PREFERRED_PROVIDER_libgcc": "libgcc",
"PREFERRED_PROVIDER_linux-libc-headers": "linux-libc-headers",
"PREFERRED_PROVIDER_ltp": "ltp",
"PREFERRED_PROVIDER_matchbox-panel": "matchbox-panel-2",
"PREFERRED_PROVIDER_nativesdk-libgcc": "nativesdk-libgcc",
"PREFERRED_PROVIDER_nativesdk-linux-libc-headers": "nativesdk-linux-libc-headers",
"PREFERRED_PROVIDER_nativesdk-openssl": "nativesdk-openssl",
"PREFERRED_PROVIDER_nativesdk-opkg": "nativesdk-opkg",
"PREFERRED_PROVIDER_openssl": "openssl",
"PREFERRED_PROVIDER_openssl-native": "openssl-native",
"PREFERRED_PROVIDER_opkg": "opkg",
"PREFERRED_PROVIDER_opkg-native": "opkg-native",
"PREFERRED_PROVIDER_udev": "systemd",
"PREFERRED_PROVIDER_udev-utils": "systemd",
"PREFERRED_PROVIDER_virtual/arm-agl-linux-gnueabi-binutils": "binutils-cross-arm",
"PREFERRED_PROVIDER_virtual/arm-agl-linux-gnueabi-compilerlibs": "gcc-runtime",
"PREFERRED_PROVIDER_virtual/arm-agl-linux-gnueabi-g++": "gcc-cross-arm",
"PREFERRED_PROVIDER_virtual/arm-agl-linux-gnueabi-gcc": "gcc-cross-arm",
"PREFERRED_PROVIDER_virtual/arm-agl-linux-gnueabi-gcc-initial": "gcc-cross-initial-arm",
"PREFERRED_PROVIDER_virtual/arm-agl-linux-gnueabi-libc-for-gcc": "glibc",
"PREFERRED_PROVIDER_virtual/arm-agl-linux-gnueabi-libc-initial": "glibc-initial",
"PREFERRED_PROVIDER_virtual/base-utils": "busybox",
"PREFERRED_PROVIDER_virtual/db": "db",
"PREFERRED_PROVIDER_virtual/db-native": "db-native",
"PREFERRED_PROVIDER_virtual/egl": "mesa",
"PREFERRED_PROVIDER_virtual/fakeroot-native": "pseudo-native",
"PREFERRED_PROVIDER_virtual/gettext": "gettext",
"PREFERRED_PROVIDER_virtual/kernel": "linux-raspberrypi",
"PREFERRED_PROVIDER_virtual/libc": "glibc",
"PREFERRED_PROVIDER_virtual/libc-locale": "glibc-locale",
"PREFERRED_PROVIDER_virtual/libgl": "mesa",
"PREFERRED_PROVIDER_virtual/libgles1": "mesa",
"PREFERRED_PROVIDER_virtual/libgles2": "mesa",
"PREFERRED_PROVIDER_virtual/libhomescreen": "libhomescreen-2017",
"PREFERRED_PROVIDER_virtual/libiconv": "glibc",
"PREFERRED_PROVIDER_virtual/libintl": "glibc",
"PREFERRED_PROVIDER_virtual/libx11": "libx11",
"PREFERRED_PROVIDER_virtual/make": "make",
"PREFERRED_PROVIDER_virtual/make-native": "make-native",
"PREFERRED_PROVIDER_virtual/mesa": "mesa",
"PREFERRED_PROVIDER_virtual/nativesdk-libc": "nativesdk-glibc",
"PREFERRED_PROVIDER_virtual/nativesdk-libiconv": "nativesdk-glibc",
"PREFERRED_PROVIDER_virtual/nativesdk-libintl": "nativesdk-glibc",
"PREFERRED_PROVIDER_virtual/nativesdk-x86_64-aglsdk-linux-libc-for-gcc": "nativesdk-glibc",
"PREFERRED_PROVIDER_virtual/nativesdk-x86_64-aglsdk-linux-libc-initial": "nativesdk-glibc-initial",
"PREFERRED_PROVIDER_virtual/update-alternatives": "opkg-utils",
"PREFERRED_PROVIDER_virtual/update-alternatives-native": "opkg-utils-native",
"PREFERRED_PROVIDER_virtual/x86_64-aglsdk-linux-binutils-crosssdk": "binutils-crosssdk-x86_64-aglsdk-linux",
"PREFERRED_PROVIDER_virtual/x86_64-aglsdk-linux-compilerlibs": "nativesdk-gcc-runtime",
"PREFERRED_PROVIDER_virtual/x86_64-aglsdk-linux-g++": "gcc-crosssdk-x86_64-aglsdk-linux",
"PREFERRED_PROVIDER_virtual/x86_64-aglsdk-linux-gcc": "gcc-crosssdk-x86_64-aglsdk-linux",
"PREFERRED_PROVIDER_virtual/x86_64-aglsdk-linux-gcc-initial": "gcc-crosssdk-initial-x86_64-aglsdk-linux",
"PREFERRED_PROVIDER_virtual/xserver": "xserver-xorg",
"PREFERRED_PROVIDER_virtual/xserver-xf86": "xserver-xorg",
"PREFERRED_PROVIDER_xf86-video-intel": "xf86-video-intel",
"PREFERRED_RPROVIDER_bluez-hcidump": "bluez5",
"PREFERRED_RPROVIDER_libasound-module-bluez": "bluez5",
"PREFERRED_RPROVIDER_virtual/navigation": "navigation",
"PREFERRED_VERSION_binutils": "2.28%",
"PREFERRED_VERSION_binutils-cross-arm": "2.28%",
"PREFERRED_VERSION_binutils-cross-canadian-arm": "2.28%",
"PREFERRED_VERSION_binutils-crosssdk-x86_64": "2.28%",
"PREFERRED_VERSION_binutils-native": "2.28%",
"PREFERRED_VERSION_cross-localedef-native": "2.25",
"PREFERRED_VERSION_gcc": "6.3%",
"PREFERRED_VERSION_gcc-cross-arm": "6.3%",
"PREFERRED_VERSION_gcc-cross-canadian-arm": "6.3%",
"PREFERRED_VERSION_gcc-cross-initial-arm": "6.3%",
"PREFERRED_VERSION_gcc-crosssdk-initial-x86_64-aglsdk-linux": "6.3%",
"PREFERRED_VERSION_gcc-crosssdk-x86_64-aglsdk-linux": "6.3%",
"PREFERRED_VERSION_gcc-runtime": "6.3%",
"PREFERRED_VERSION_gcc-sanitizers": "6.3%",
"PREFERRED_VERSION_gdb": "7.12%",
"PREFERRED_VERSION_gdb-cross-arm": "7.12%",
"PREFERRED_VERSION_gdb-cross-canadian-arm": "7.12%",
"PREFERRED_VERSION_glibc": "2.25",
"PREFERRED_VERSION_glibc-initial": "2.25",
"PREFERRED_VERSION_glibc-locale": "2.25",
"PREFERRED_VERSION_glibc-mtrace": "2.25",
"PREFERRED_VERSION_glibc-scripts": "2.25",
"PREFERRED_VERSION_gstreamer1.0": "1.10.%",
"PREFERRED_VERSION_gstreamer1.0-libav": "1.10.%",
"PREFERRED_VERSION_gstreamer1.0-omx": "1.2.%",
"PREFERRED_VERSION_gstreamer1.0-plugins-bad": "1.10.%",
"PREFERRED_VERSION_gstreamer1.0-plugins-base": "1.10.%",
"PREFERRED_VERSION_gstreamer1.0-plugins-good": "1.10.%",
"PREFERRED_VERSION_gstreamer1.0-plugins-ugly": "1.10.%",
"PREFERRED_VERSION_gzip-native": "1.8",
"PREFERRED_VERSION_liberation-fonts": "1.04",
"PREFERRED_VERSION_libgcc": "6.3%",
"PREFERRED_VERSION_libgcc-initial": "6.3%",
"PREFERRED_VERSION_linux-libc-headers": "4.10%",
"PREFERRED_VERSION_linux-raspberrypi": "4.9.%",
"PREFERRED_VERSION_linux-yocto": "4.10%",
"PREFERRED_VERSION_linux-yocto_qemuarm": "4.10%",
"PREFERRED_VERSION_linux-yocto_qemumips": "4.10%",
"PREFERRED_VERSION_linux-yocto_qemumips64": "4.10%",
"PREFERRED_VERSION_linux-yocto_qemuppc": "4.10%",
"PREFERRED_VERSION_linux-yocto_qemux86": "4.10%",
"PREFERRED_VERSION_linux-yocto_qemux86-64": "4.10%",
"PREFERRED_VERSION_nativesdk-gcc": "6.3%",
"PREFERRED_VERSION_nativesdk-gcc-runtime": "6.3%",
"PREFERRED_VERSION_nativesdk-gcc-sanitizers": "6.3%",
"PREFERRED_VERSION_nativesdk-glibc": "2.25",
"PREFERRED_VERSION_nativesdk-glibc-initial": "2.25",