aboutsummaryrefslogtreecommitdiff
path: root/release-notes.yml
blob: 6b0d6feebd082776e740a8eecf4c97d2903b939c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
- update: "0.22"
  highlights:
    - Core Layer Updates
  summary: |
   Core layer updates based on the latest Yocto master changes.
  parts:
    - name: Linux microPlatform
      summary: |
        Core layer updates.
      projects:
        - name: OpenEmbedded-Core Layer
          manifest_project: openembedded-core
          features:
            - heading: Layer Update
              summary: |
                Acpica updated to 20180508.
                Curl updated to 7.60.0.
                Dtc updated to 1.4.6.
                Ethtool updated 4.16.
                Hdparm updated to 9.56.
                Iproute2 updated to 4.16.0.
                Kexec-tools updated to 2.0.17.
                Libdmx updated to 1.1.4.
                Libidn updated to 1.35.
                Libvorbis updated to 1.3.6.
                Linux-firmware updated to the 8fc2d4e5 revision.
                Ltp updated to 20180515.
                Lz4 updated to 1.8.2.
                Meson updated to 0.46.1.
                Nss updated to 3.36.1.
                OpenSSH updated to 7.7p1.
                Qemu updated to 2.12.0.
                Wget updated to 1.19.5.

- update: "0.21"
  highlights:
    - OSF Unified Linux Kernel updated to 4.16.15.
    - U-Boot-Fslc updated to the 2018.05-based release.
  summary: |
   OSF Unified Linux Kernel updated to the 4.16.15 stable release.
   U-Boot-Fslc updated to the 2018.05-based release.
   Core layer updates based on the latest Yocto master changes.
  parts:
    - name: Linux microPlatform
      summary: |
        Core layer updates.
      projects:
        - name: Meta Freescale
          manifest_project: meta-freescale
          features:
            - heading: Layer Update
              summary: |
                U-boot-fslc updated to the 2018.05-based release.
                New i.MX fork for gstreamer1.0, gstreamer1.0-plugins-base,
                gstreamer1.0-plugins-good and gstreamer1.0-plugins-bad.
                Imx-codec, imx-parser, imx-vpuwrap and imx-gst1.0-plugin
                updated to v4.3.4.
                Imx-usb-loader updated to the e539461 revision.
        - name: Meta Freescale 3rdparty
          manifest_project: meta-freescale-3rdparty
          features:
            - heading: Layer Update
              summary: |
                Device tree name updated for imx7d-pico.
                Updated u-boot configuration for imx7s-warp.
        - name: Meta Intel
          manifest_project: meta-intel
          features:
            - heading: Layer Update
              summary: |
                New WKS file enabling grub-efi bootloader.
                Thermald updated to 1.7.2.
        - name: Meta Qualcomm
          manifest_project: meta-qcom
          features:
            - heading: Layer Update
              summary: |
                Updated bootr and bootrr to the latest revision available.
        - name: Meta RaspberryPi
          manifest_project: meta-raspberrypi
          features:
            - heading: Layer Update
              summary: |
                Support for the at86rf233 device tree overlay.
        - name: Meta Virtualization
          manifest_project: meta-virtualization
          features:
            - heading: Layer Update
              summary: |
                Lxc updated to 3.0.1.
                Libvirt updated to v4.3.0.
                Added tini 0.18.0 recipe to provide docker-init.
        - name: Meta Updater Layer
          manifest_project: meta-updater
          features:
            - heading: Layer Update
              summary: |
                HTTP basic auth added to the garage-sign task.
                Aktualizr updated to the latest revision available,
                including support to log the ostree update process.
        - name: Meta OSF Layer
          manifest_project: meta-osf
          features:
            - heading: Layer Update
              summary: |
                OSF Unified Linux Kernel updated to 4.16.15.
                Added lmp-device-register recipe, used to register an LMP
                device with OSF OTA+.
                Haveged included in lmp-mini-image and lmp-gateway-image
                to remedy low-entropy during boot.
                Fbdev MXS driver removed from linux-osf in favor of the
                drm driver.
                Python3-requests removed from lmp-mini-image as device
                registration is now done via lmp-device-register.

- update: "0.20"
  highlights:
    - OSF Unified Linux Kernel updated to 4.16.12.
    - U-Boot updated to the 2018.05 release.
    - Hikey now uses the upstream Grub 2.02 EFI recipe.
    - New layer Meta RISC-V added to LMP (RISC-V BSP support).
    - Initial support for QEMU RISC-V 64 and SiFive Freedom Unleashed U540.
  summary: |
   OSF Unified Linux Kernel updated to the 4.16.12 stable release.
   Initial support for QEMU RISC-V 64 and SiFive Freedom Unleashed U540 targets.
   New image lmp-mini-image for minimal OTA+ compatible images, currently used
   by RISC-V targets due lack of Golang support.
   Core layer updates based on the latest changes for the Yocto Thud (2.6) release.
  parts:
    - name: Linux microPlatform
      summary: |
        Core layer updates.
      projects:
        - name: OpenEmbedded-Core Layer
          manifest_project: openembedded-core
          features:
            - heading: Layer Update
              summary: |
                Autoconf-archive updated to 2018.03.13.
                Bash updated to 4.4.18.
                Bash-completion updated to 2.8.
                Bluez5 updated to 5.49.
                Boost updated to 1.67.0.
                Curl updated to 7.59.0.
                Dbus updated to 1.12.8.
                Dbus-glib updated to 0.110.
                Distcc updated to 3.3.
                Dropbear updated to 2018.76.
                Gawk updated to 4.2.1.
                Gdb updated to 8.1.
                Glib-2.0 updated to 2.56.1.
                Gnutls updated to 3.6.2.
                Go 1.10.x updated to 1.10.2.
                Go 1.9.x updated to 1.9.6.
                Gobject-introspection updated to 1.56.1.
                Hdparm updated to 9.55.
                Icu updated to 61.1.
                Iproute2 updated to 4.15.0.
                Less updated to 530.
                Libaio updated to 0.3.111.
                Libgpg-error updated to 1.31.
                Libidn updated to 1.34.
                Libsolv updated to 0.6.34.
                Libusb1 updated to 1.0.22.
                Libxml2 updated to 2.9.8.
                Logrotate updated to 3.14.0.
                Ncurses updated to 6.1.
                Python3-pip updated to 9.0.3.
                Python3-setuptools updated to 39.0.1.
                Sqlite3 updated to 3.23.1.
                Strace updated to 4.22.
                Sudo updated to 1.8.23.
                Time updated to 1.9.
                Tzcode-native updated to 2018e.
                Tzdata updated to 2018e.
                U-Boot updated to the 2018.05 release.
                Util-linux updated to 2.32.
                Util-macros updated to 1.19.2.
                Vala updated to 0.40.4.
          bug_fixes:
            - heading: qemu
              summary: |
                During Qemu guest migration, a destination process invokes ps2
                post_load function. In that, if rptr and count values were
                invalid, it could lead to OOB access or infinite loop issue.
              cves:
                - 2017-16845
            - heading: util-linux
              summary: |
                Multiple issues.
              cves:
                - 2018-7738
        - name: Meta OpenEmbedded Layer
          manifest_project: meta-openembedded
          features:
            - heading: Layer Update
              summary: |
                New recipe broadcom-bt-firmware added for Broadcom Bluetooth
                firmwares.
                Gpsd updated to 3.17.
                Htop updated to 2.1.0.
                Python3-cython updated to 0.28.2.
                Python3-Websockets updated to 4.0.1.
        - name: Meta Intel
          manifest_project: meta-intel
          features:
            - heading: Layer Update
              summary: |
                Ixgbe updated to v5.3.7.
                Ixgbevf updated to v4.3.5.
        - name: Meta 96boards
          manifest_project: meta-96boards
          features:
            - heading: Layer Update
              summary: |
                Grub2 now based on the upstream grub-efi 2.02 recipe.
        - name: Meta Freescale
          manifest_project: meta-freescale
          features:
            - heading: Layer Update
              summary: |
                New machine configuration for p5040ds-64b, t1024rdb-64b,
                t2080rdb-64b and t4240rdb-64b.
                Added utp-com recipe.
                Imx-uuc updated to the latest revision.
        - name: Meta RaspberryPi
          manifest_project: meta-raspberrypi
          features:
            - heading: Layer Update
              summary: |
                Firmware updated to 20180417.
                Rpi-config now does not force device tree selection for
                raspberrypi3-64.
        - name: Meta OSF Layer
          manifest_project: meta-osf
          features:
            - heading: Layer Update
              summary: |
                OSF Unified Linux Kernel updated to 4.16.12.
                Support for RISC-V qemuriscv64 and freedom-u540.
                Removal of alsa, irda, pcmcia, nfc and pulseaudio from distro
                features, as they should be provided via containers.
                Added new lmp-mini-image for minimal OTA+ compatible images,
                currently used by RISC-V targets due lack of Golang support.
          bug_fixes:
            - heading: linux-osf
              summary: |
                Kernel update to the 4.16.x series broke overlay support for
                Raspberry PI 3 64 targets, which is now fixed as part of the
                4.16.12 update (device-tree not exporting __symbols__).
        - name: Meta Updater Layer
          manifest_project: meta-updater
          features:
            - heading: Layer Update
              summary: |
                OSTree recipe updated to generate additional packages and
                improve the runtime dependency list.

- update: "0.19"
  highlights:
    - No changes have gone into the LMP since 0.18.
  summary: No changes have gone into the LMP since 0.18.

- update: "0.18"
  highlights:
    - OSF Unified Linux Kernel updated to 4.16.8.
  summary: |
   OSF Unified Linux Kernel updated to the 4.16.8 stable release.
  parts:
    - name: Linux microPlatform
      summary: |
        Core layer updates.
      projects:
        - name: Meta OSF Layer
          manifest_project: meta-osf
          features:
            - heading: Layer Update
              summary: |
                OSF Unified Linux Kernel updated to 4.16.8.
        - name: Meta Freescale
          manifest_project: meta-freescale
          features:
            - heading: Layer Update
              summary: |
                New machine configuration for ls1043ardb-be, ls1046ardb-be,
                ls1088ardb-be, ls2088ardb-be.
        - name: Meta Linaro
          manifest_project: meta-linaro
          features:
            - heading: Layer Update
              summary: |
                Added optee-examples bitbake recipe, which builds the OPTEE
                examples trusted applications.
        - name: Meta OpenEmbedded Layer
          manifest_project: meta-openembedded
          features:
            - heading: Layer Update
              summary: |
                Yp-tools updated to 4.2.3.
                Added wpan-tools recipe.
                Wireshark updated to 2.4.6.
                Mbedtls updated to 2.8.0.
        - name: Meta Qualcomm
          manifest_project: meta-qcom
          features:
            - heading: Layer Update
              summary: |
                Updated qmic, qrtr and rmtfs to the latest version available.
        - name: Meta RaspberryPi
          manifest_project: meta-raspberrypi
          features:
            - heading: Layer Update
              summary: |
                rpi-config extended to cover more commonly used config
                variables.
        - name: Meta Updater Layer
          manifest_project: meta-updater
          features:
            - heading: Layer Update
              summary: |
                Aktualizr now validates /var/sota file access permission before
                initializing the service.
                Aktualizr can now publish the target network information to the
                OTA+ server.
                Garage-sign version now depends on what gets provided by the
                remote server available in the sota credentials file.

- update: "0.17"
  highlights:
    - No changes have gone into the LMP since 0.16.
  summary: No changes have gone into the LMP since 0.16.

- update: "0.16"
  highlights:
    - OSF Unified Linux Kernel updated to 4.16.6.
    - Support for Raspberry 0 WiFi and Raspberry Pi 3 B+.
    - Support for Hummingboard 2 SOM version 1.5.
  summary: |
   OSF Unified Linux Kernel updated to the 4.16.6 stable release.
  parts:
    - name: Linux microPlatform
      summary: |
        Core layer updates.
      projects:
        - name: Meta OSF Layer
          manifest_project: meta-osf
          features:
            - heading: Layer Update
              summary: |
                OSF Unified Linux Kernel updated to 4.16.6.
                U-Boot-Toradex changed to disable secure mode by default.
                Support for Raspberry 0 WiFi and Raspberry Pi 3 B+.
                Support for Hummingboard 2 SOM version 1.5.

- update: "0.15"
  highlights:
    - Binutils updated to the 2.30 release.
    - Glibc updated to the 2.27 release.
    - Systemd updated to the 237 release.
    - NetworkManager updated to the 1.10.6 release.
    - Docker updated to the 18.03.0 release.
    - Containerd updated to the 1.0.2 release.
    - Runc updated to the 1.0.0-rc5 release.
  summary: |
   Core layer updates based on the latest sumo changes.
  parts:
    - name: Linux microPlatform
      summary: |
        Core layer updates bringing it closer to the final sumo release.
      projects:
        - name: OpenEmbedded-Core Layer
          manifest_project: openembedded-core
          features:
            - heading: Layer Update
              summary: |
                Binutils updated to 2.30.
                Cmake updated to 3.10.3.
                Curl updated to 7.58.0.
                Git updated to 2.16.1.
                Glib-2.0 updated to 2.54.3.
                Glibc updated to 2.27.
                Go updated to 1.9.4.
                Go-dep updated to 0.4.1.
                Iptables updated to 1.6.2.
                Libpng updated to 1.6.34.
                Libunistring updated to 0.9.9.
                Linux-libc-headers updated to 4.15.7.
                Llvm updated to 6.0.
                Musl updated to 1.1.19.
                Nspr updated to 4.19.
                Nss updated to 3.35.
                Openssl updated to 1.1.0h and 1.0.2o.
                Patch updated to 2.7.6.
                Pkgconf updated to 1.4.2.
                Python3 updated to 3.5.5.
                Python3-dbus updated to 1.2.6.
                Python3-pip updated to 9.0.2.
                Python3-pygobject updated to 3.28.1.
                Python3-setuptools updated to 39.0.0.
                Qemu updated to 2.11.1.
                Slang updated to 2.3.2.
                Sudo updated to 1.8.22.
                Systemd updated to 237.
                Vala updated to 0.38.8.
                Time updated to 1.8.
                Tzdata updated to 2018d.
          bug_fixes:
            - heading: busybox
              summary: |
                runCnt overflow in bunzip2.
              cves:
                - 2017-15873
            - heading: dhcp
              summary: |
                Failure to properly clean up closed OMAPI connections can
                exhaust available sockets.
              cves:
                - 2017-3144
            - heading: libvorbis
              summary: |
                Multiple issues.
              cves:
                - 2018-5146
                - 2017-14632
                - 2017-14633
            - heading: patch
              summary: |
                Multiple issues.
              cves:
                - 2018-1000156
                - 2018-6951
            - heading: python3
              summary: |
                Possible integer overflow in PyBytes_DecodeEscape.
              cves:
                - 2017-1000158
            - heading: tiff
              summary: |
                Multiple issues.
              cves:
                - 2017-9935
                - 2017-18013
                - 2018-5784
        - name: Meta OpenEmbedded Layer
          manifest_project: meta-openembedded
          features:
            - heading: Layer Update
              summary: |
                NetworkManager updated to 1.10.6.
                Python-cffi updated to 1.11.4.
                Python-cython updated to 0.28.
                Python-ply updated to 3.11.
        - name: Meta Virtualization
          manifest_project: meta-virtualization
          features:
            - heading: Layer Update
              summary: |
                Docker updated to 18.03.0.
                Containerd updated to v1.0.2.
                Runc updated to 1.0.0-rc5.
        - name: Meta 96boards
          manifest_project: meta-96boards
          features:
            - heading: Layer Update
              summary: |
                EDK2, ATF and OPP updated to the current upstream revision.
                Updated partition table for HiKey, including a new l-loader
                recovery binary.
                96boards-tools updated to 0.12.
        - name: Meta Freescale
          manifest_project: meta-freescale
          features:
            - heading: Layer Update
              summary: |
                U-boot-fslc updated to a07698f.
                New machine configuration for t4240rdb, t2080rdb, t1024rdb,
                p5040ds, p4080ds, p3041ds, p2041rdb and p1020rdb.
        - name: Meta Intel
          manifest_project: meta-intel
          features:
            - heading: Layer Update
              summary: |
                Intel-microcode updated to 20180312.
                Ixgbe updated to v5.3.6.
                Ixgbevf updated to v4.3.4.
                Systemd-boot bbappend updated to work with Systemd 237.
        - name: Meta Qualcomm
          manifest_project: meta-qcom
          features:
            - heading: Layer Update
              summary: |
                Firmware-qcom-dragonboard updated to r1034.2.1.
                New machine configuration for Dragonboard 600c.
        - name: Meta RaspberryPi
          manifest_project: meta-raspberrypi
          features:
            - heading: Layer Update
              summary: |
                BCM43430A1 firmware updated to the latest public revision.
                BCM4345C0.hcd added for Raspberry Pi 3B+.
                Improved support for Raspberry Pi Zero W and 3B+.
                Linux-firmware-raspdebian is now used for the Raspberry Pi
                specific firmware packages.
        - name: Meta Updater Layer
          manifest_project: meta-updater
          features:
            - heading: Layer Update
              summary: |
                Python dependency removed from OSTree.
        - name: Meta OSF Layer
          manifest_project: meta-osf
          features:
            - heading: Layer Update
              summary: |
                Distro version bumped to 2.5 (sumo based).
                Added recipe for docker-init, used by docker.
                Python3-docker updated to 3.2.1.
                Python3-docker-compose updated to 1.21.0.
                Python3-docker-pycreds updated to 0.2.2.

- update: "0.14"
  highlights:
    - OSF Unified Linux Kernel updated to 4.14.33.
  summary: |
   OSF Unified Linux Kernel updated to the 4.14.33 stable release.
  parts:
    - name: Linux microPlatform
      summary: |
        Core layer updates.
      projects:
        - name: Meta OSF Layer
          manifest_project: meta-osf
          features:
            - heading: Layer Update
              summary: |
                OSF Unified Linux Kernel updated to 4.14.33.
        - name: Meta Updater Layer
          manifest_project: meta-updater
          features:
            - heading: Layer Update
              summary: |
                Added support for custom garage target version and url.
                Aktualizr updated for the kRejectAll and metadata check fixes.

- update: "0.13"
  highlights:
    - OSF Unified Linux Kernel updated to 4.14.26.
    - New layer Meta Updater added to LMP (provides SOTA support).
    - U-Boot support for Dragonboard 410c and 820c.
    - VMDK and VDI images are now available for the intel-corei7-64 target.
    - Support for OTA software updates using OSTree and TUF.
    - OTA compatibility with ATS Garage and ATS OTA Community Edition.
  summary: |
   OSF Unified Linux Kernel updated to the 4.14.26 stable release.
   Support for OTA software updates is now enabled by default in the Linux
   microPlatform, supporting OSTree with TUF and compatible with the ATS
   Garage and ATS OTA Community Edition services.
  parts:
    - name: Linux microPlatform
      summary: |
        Core layer updates and support for OTA+ and OSTree.
      projects:
        - name: Meta OSF Layer
          manifest_project: meta-osf
          features:
            - heading: Layer Update
              summary: |
                OSF Unified Linux Kernel updated to 4.14.26.
                New u-boot-script-toradex recipe added.
                U-Boot-Compulab updated to the 2017.07-cl-som-imx7-1.1 release.
                New u-boot-ostree-src recipe added.
                Python3-docker updated to 2.7.0.
                Python3-docker-compose updated to 1.19.0.
                Docker-compose is now installed by default in lmp-gateway-image.
                New lshw recipe added based on latest upstream git snapshot.
            - heading: U-Boot support for DB410c and DB820c targets
              summary: |
                Default LMP image now ships with u-boot support for the DB410c
                and DB820c targets (requirement for OTA+ support).
            - heading: OSTree support
              summary: |
                Root filesystem is now OSTree-based. Please check
                https://ostree.readthedocs.io for the upstream OSTree documentation.
        - name: OpenEmbedded-Core Layer
          manifest_project: openembedded-core
          features:
            - heading: Layer Update
              summary: |
                Musl updated to the latest upstream master.
                Python 3 target and native recipes updated to 3.5.4.
                Ncurses updated to 6.0+20171125.
                Tar updated to 1.30.
                Pigz updated to 2.4.
                Wget updated to 1.19.4.
                Rsync updated to 3.1.3.
                Ninja updated to 1.8.2 (major release update).
                RPM updated to 4.14.1.
                Openssl updated to 1.0.2n.
                Libnl updated to 3.4.0.
                Boost updated to 1.66.0.
                Iputils updated to 20161105.
                Linux-libc-headers updated to v4.15.
                Ccache updated to 3.3.5.
                Libva updated to 2.0.0.
                Strace updated to 4.20.
          bug_fixes:
            - heading: qemu
              summary: |
                VNC server implementation in QEMU was found to be vulnerable to
                an unbounded memory allocation issue.
              cves:
                - 2017-15124
        - name: Meta Virtualization
          manifest_project: meta-virtualization
          features:
            - heading: Layer Update
              summary: |
                Fixes required by latest OE-Core update.
        - name: Meta OpenEmbedded Layer
          manifest_project: meta-openembedded
          features:
            - heading: Layer Update
              summary: |
                Python-ndg-httpsclient updated to 0.4.4.
                Python 3 depends on python3-misc removed due missing _pydecimal.py.
        - name: Meta Yocto
          manifest_project: meta-yocto
          features:
            - heading: Layer Update
              summary: |
                Fixes required by latest OE-Core update.
        - name: Meta Freescale
          manifest_project: meta-freescale
          features:
            - heading: Layer Update
              summary: |
                U-boot-fw-utils added to u-boot-fslc-fw-utils provides.
        - name: Meta Freescale 3rdparty
          manifest_project: meta-freescale-3rdparty
          features:
            - heading: Layer Update
              summary: |
                broadcom-nvram-config changed to use nonarch_base_libdir
                instead of /lib.

- update: "0.12"
  highlights:
    - No changes have gone into the LMP since 0.11.
  summary: No changes have gone into the LMP since 0.11.

- update: "0.11"
  highlights:
    - No changes have gone into the LMP since 0.10.
  summary: No changes have gone into the LMP since 0.10.

- update: "0.10"
  highlights:
    - OSF Unified Linux Kernel updated to 4.14.19.
    - Root file system is now compatible with UsrMerge.
    - Beaglebone machine name renamed to beaglebone-yocto.
  summary: |
   OSF Unified Linux Kernel updated to the 4.14.19 stable release.
   UsrMerge (https://www.freedesktop.org/wiki/Software/systemd/TheCaseForTheUsrMerge/)
   is now enabled by default in LMP.
  parts:
    - name: Linux microPlatform
      summary: |
        UsrMerge is now enabled by default in LMP.
      projects:
        - name: Meta OSF Layer
          manifest_project: meta-osf
          features:
            - heading: Layer Update
              summary: |
                Enable support for UsrMerge.
                Remove custom Linux Raspberry Pi logo.
                EFI wic image now provides startup.nsh by default.
                OSF Unified Linux Kernel updated to 4.14.19.
        - name: Meta Intel
          manifest_project: meta-intel
          features:
            - heading: Layer Update
              summary: |
                Intel-microcode reverted back to 20171117 as
                recommended by Intel.
        - name: Meta Yocto
          manifest_project: meta-yocto
          features:
            - heading: Layer Update
              summary: |
                Beaglebone machine renamed to beaglebone-yocto in order to
                avoid conflicts with meta-ti.

- update: 0.9
  highlights:
    - OSF Unified Linux Kernel updated to 4.14.17.
    - GCC updated to the latest 7.3 release.
    - U-Boot updated to the 2018.01 release.
    - QEMU guest support added to intel-corei7-64.
  summary: |
   OSF Unified Linux Kernel updated to the 4.14.17 stable release.
   Default GCC version was updated to the latest upstream 7.3 release.
  parts:
    - name: Linux microPlatform
      summary: |
        GCC updated to the 7.3 upstream release.
      projects:
        - name: Meta OSF Layer
          manifest_project: meta-osf
          features:
            - heading: Layer Update
              summary: |
                OSF Unified Linux Kernel updated to 4.14.17.
                QEMU guest support added to intel-corei7-64.
                Default EFI_PROVIDER for intel-corei7-64 changed to grub-efi.
                Machine specific configuration moved from conf/local.conf to
                lmp-machine-custom.bbclass.
                Initial support for colibri-imx7.
        - name: OpenEmbedded-Core Layer
          manifest_project: openembedded-core
          features:
            - heading: Layer Update
              summary: |
                Python packaging was restructured and replaced with autopackaging.
                U-Boot updated to the 2018.01 release.
                Bash updated to 4.4.12.
                Gdbm updated to 1.14.1.
                Iw updated to 4.14.
                Systemd-bootchart updated to v233.
                Python-setuptools updated to 38.4.0.
                Nspr updated to 4.18.
                Sqlite3 updated to 3.22.0.
                Vte updated to 0.50.2.
                Curl updated to 7.57.0.
                Tzcode and tzdata updated to 2018c.
                GCC updated to 7.3.
                Hdparm updated to 9.53.
                Gzip updated to 1.9.
                Lsb updated to 5.0.
                Kmod updated to 25.
                Less updated to 529.
                Libunwind updated to 1.2.1.
                Linux-libc-headers updated to 4.14.13.
                Man-pages updated to 4.14.
                E2fsprogs updated to 1.43.8.
          bug_fixes:
            - heading: glibc
              summary: |
                Multiple issues.
              cves:
                - 2017-15671
                - 2017-16997
                - 2017-17426
        - name: Meta OpenEmbedded Layer
          manifest_project: meta-openembedded
          features:
            - heading: Layer Update
              summary: |
                Python-certifi updated to 2018.1.18.
        - name: Meta Virtualization
          manifest_project: meta-virtualization
          features:
            - heading: Layer Update
              summary: |
                Fixes required by latest OE-Core update.
        - name: Meta Freescale
          manifest_project: meta-freescale
          features:
            - heading: Layer Update
              summary: |
                New machine configuration files for t1042d4rdb, t1042d4rdb-64b,
                p2020rdb and mpc8548cds.
                imx-codec, imx-parser and imx-vpuwrap updated to v4.3.2.
        - name: Meta Intel
          manifest_project: meta-intel
          features:
            - heading: Layer Update
              summary: |
                Default EFI_PROVIDER changed to systemd-boot.
                Thermald updated to 1.7.1.
        - name: Meta RaspberryPi
          manifest_project: meta-raspberrypi
          features:
            - heading: Layer Update
              summary: |
                BCM43430A1 firmware updated to the latest public revision.
          bug_fixes:
            - heading: broken wifi support
              summary: |
                Linux-firmware changed to use the correct override for bcm43430.
        - name: Meta 96boards
          manifest_project: meta-96boards
          features:
            - heading: Layer Update
              summary: |
                EDK2, ATF and OPP updated to the current upstream revision.
                New machine configuration file for orangepi i96.

- update: 0.8
  highlights:
    - OSF Unified Linux Kernel updated to 4.14.15
    - Default GCC changed from 7.1-Linaro to 7.2-OE.
    - Raspberry Pi 3 image format changed from rpi-sdimg to WIC (standard OE format).
  summary: |
   OSF Unified Linux Kernel updated to the 4.14.15 stable release.
   Default GCC version was changed from the 7.1-Linaro to the latest OpenEmbedded 7.2 release.
  parts:
    - name: Linux microPlatform
      summary: |
        OSF Unified Linux Kernel updated to 4.14.15.
      projects:
        - name: Meta OSF Layer
          manifest_project: meta-osf
          features:
            - heading: Layer Update
              summary: |
                OSF Unified Linux Kernel updated to 4.14.15.
                Default inputrc config file changed for better serial (readline) support.
                Runc-Docker updated to improve the terminal settings.
                Default GCC changed from 7.1-Linaro to 7.2-OE.
        - name: OpenEmbedded-Core Layer
          manifest_project: openembedded-core
          features:
            - heading: Layer Update
              summary: |
                Coreutils updated to 8.29.
                Linux-firmware updated to the 65b1c68c git revision.
                libgcrypt updated to 1.8.2.
                gnupg updated to 2.2.4.
                BlueZ updated to 5.48.
                Icu updated to 60.2.
                Iproute2 updated to 4.14.1.
                CMake updated to 3.10.1.
                Qemu updated to 2.11.
                Usbutils updated to 009.
                Go-dep updated to 0.3.2.
        - name: Meta OpenEmbedded Layer
          manifest_project: meta-openembedded
          features:
            - heading: Layer Update
              summary: |
                Python-pytest updated to 3.3.2.
                Consolekit dependency removal from NetworkManager.
                Bridge-utils updated to v1.6.
                Python-cffi updated to 1.11.4.
        - name: Meta Virtualization
          manifest_project: meta-virtualization
          features:
            - heading: Layer Update
              summary: |
                Docker-compose now rdepends on python3-terminal.

- update: 0.7
  highlights:
    - OSF Unified Linux Kernel updated to 4.14.13
    - U-Boot updated to the 2017.11 release.
    - Raspberry Pi firmware updated to the 20171029 snapshot.
    - Initial support for Raspberry Pi 3 64-bit.
  summary: |
   This kernel update includes x86 support for kernel page-table isolation
   (KPTI), which mitigates the recent meltdown security vulnerability.
  parts:
    - name: Linux microPlatform
      summary: |
        OSF Unified Linux Kernel updated to 4.14.13.
      projects:
        - name: Meta OSF Layer
          manifest_project: meta-osf
          features:
            - heading: Layer Update
              summary: |
                OSF Unified Linux Kernel updated to 4.14.13.
                QCA6174 firmware updated to WLAN.RM.4.4.1-00079-QCARMSWPZ-1.
                Initial support for Raspberry Pi 3 64-bit.
            - heading: Build Environment Speedup
              summary: |
                The build environment has been updated to use a mirror of the
                sstate cache which drastically improves the time it takes to
                build the first time.
        - name: Meta Intel
          manifest_project: git/meta-intel
          features:
            - heading: Layer Update
              summary: |
                Intel microcode updated to 20180108.
        - name: Meta Linaro
          manifest_project: openembedded/meta-linaro
          features:
            - heading: Layer Update
              summary: |
                OPTEE OS recipe updated to simplify the deply logic.
                GCC Linaro 7.1 updated to include ILP32 patches for correct
                triplet.
                Binutils updated to include patches for correct gnu_ilp32
                triplet.
        - name: Meta Qualcomm
          manifest_project: ndechesne/meta-qcom
          features:
            - heading: Layer Update
              summary: |
                wic.bmap image type added for Dragonboard 410c.
        - name: OpenEmbedded-Core Layer
          manifest_project: openembedded/openembedded-core
          features:
            - heading: Layer Update
              summary: |
                Glibc updated to the latest on 2.26 release.
                Binutils updated to 2.29.1.
                Python Setuptools updated to 38.2.5.
                Nss updated to 3.34.1.
                Avahi updated to 0.7.
                Dbus updated to 1.12.2.
                Coreutils updated to 8.28.
                libunistring updated to 0.9.8.
                Mc updated to 4.8.20.
                Psmisc updated to 23.0.
                Gobject introspection updated to 1.54.1.
                Pciutils updated to 3.5.6.
                Alsa-utils, alsa-plugins and alsa-lib updated to 1.1.5.
                Gnutls updated to 3.6.1.
                Openssl10 updated to 1.0.2m.
                Icu updated to 60.1.
                libpciaccess updated to 0.14.
                Dtc updated to 1.4.5.
                Glib-2.0 updated to 2.54.2.
                U-Boot updated to 2017.11.
                Ethtool updated to 4.13.
                Strace updated to 4.19.
                Less updated to 527.
                Logrotate updated to 3.13.0.
                Git updated to 2.15.0.
                File updated to 5.32.
                e2fsprogs updated to 1.43.7.
                Iproute2 updated to 4.13.
                Gawk updated to 4.2.0.
                Sudo updated to 1.8.21p2.
                SQlite3 updated to 3.21.0.
                Quota updated to 4.04.
                Linux-firmware updated to the bf04291 git revision.
                CMake updated to 3.9.5.
                libgudev updated to 232.
                Shared-mime-info updated to 1.9.
                Iso-codes updated to 3.76.
                Boost updated to 1.65.1.
                libsolv updated to 0.6.29.
                Vala updated to 0.38.2.
                Qemu updated to 2.10.1.
          bug_fixes:
            - heading: icu
              summary: |
                Fix double free in i18n/zonemeta.cpp.
              cves:
                - 2017-14952
            - heading: openssl10
              summary: |
                Multiple issues.
              cves:
                - 2017-3736
                - 2017-3735
            - heading: busybox
              summary: |
                Vulnerability in the tab-complete logic.
              cves:
                - 2017-16544
            - heading: binutils
              summary: |
                Multiple issues.
              cves:
                - 2017-15939
                - 2017-15938
                - 2017-15225
                - 2017-15025
                - 2017-15024
                - 2017-15023
                - 2017-15022
                - 2017-15021
                - 2017-15020
                - 2017-14974
                - 2017-14940
                - 2017-14939
                - 2017-14938
                - 2017-14934
                - 2017-14933
                - 2017-14932
                - 2017-14930
                - 2017-14745
                - 2017-14729
                - 2017-14529
                - 2017-14333
                - 2017-14130
                - 2017-14129
                - 2017-14128
                - 2017-13757
                - 2017-13716
                - 2017-13710
                - 2017-12967
                - 2017-12799
                - 2017-12459
                - 2017-12458
                - 2017-12457
                - 2017-12456
                - 2017-12455
                - 2017-12454
                - 2017-12453
                - 2017-12452
                - 2017-12451
                - 2017-12450
                - 2017-12449
                - 2017-12448
        - name: Meta Virtualization
          manifest_project: git/meta-virtualization
          features:
            - heading: Layer Update
              summary: |
                Switch remaining pypi recipes to use the pypi class.
        - name: Meta OpenEmbedded Layer
          manifest_project: openembedded/meta-openembedded
          features:
            - heading: Layer Update
              summary: |
                Python-pyopenssl updated to 17.5.0.
                Python-cryptography updated to 2.1.4.
                Python-asn1crypto updated to 0.24.0.
                Python3-certifi updated to 2017.11.5.
                Python-pytest updated to 3.2.3.
                Python-pyasn1 updated to 0.3.7.
                Htop updated to v2.0.2.
          bug_fixes:
            - heading: vim
              summary: |
                Information leak when creating swp files.
              cves:
                - 2017-17087
        - name: Meta Raspberrypi Layer
          manifest_project: git/meta-raspberrypi
          features:
            - heading: Layer Update
              summary: |
                Config RPI_EXTRA_CONFIG added to rpi-config.
                Default KERNEL_IMAGETYPE changed to zImage.
                Default KERNEL_IMAGETYPE for raspberrypi3-64 changed to Image.
                Firmware updated to 20171029.
                U-Boot support for Raspberry Pi Zero W.
        - name: Meta Freescale Layer
          manifest_project: git/meta-freescale
          features:
            - heading: Layer Update
              summary: |
                U-boot-fslc updated to 2017.11-based fork.