-
Notifications
You must be signed in to change notification settings - Fork 10
/
ChangeLog_oss.txt
1660 lines (1266 loc) · 69.3 KB
/
ChangeLog_oss.txt
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
#
# IRIS Changes to Open Source Software for i2hubos project
#
IRIS Changes to poky
Upgrade submodule to Yocto 2.7.4 tag
Converted to submodule using Yocto 2.7.3 tag
Import of Yocto 2.7.2 (poky-warrior-21.0.2) release
...
184 files changed, 8563 insertions(+), 1373 deletions(-)
Import of Yocto 2.7.1 (poky-warrior-21.0.1) release
...
724 files changed, 8119 insertions(+), 10641 deletions(-)
Import of Yocto 2.7.0 (poky-warrior-21.0.0) release
...
4143 files changed, 150750 insertions(+), 154944 deletions(-)
Import of Yocto 2.4.3 (poky-rocko-18.0.3) release
...
339 files changed, 20706 insertions(+), 19848 deletions(-)
Import of Yocto 2.4.2 (poky-rocko-18.0.2) release
...
342 files changed, 17421 insertions(+), 16791 deletions(-)
Import of Yocto 2.4.1 (poky-rocko-18.0.1) release
...
213 files changed, 6466 insertions(+), 4365 deletions(-)
Import of Yocto 2.4.0 (poky-rocko-18.0.0) release
...
2492 files changed, 117039 insertions(+), 123435 deletions(-)
Import of Yocto 2.3.2 (poky-pyro-17.0.2) release
...
252 files changed, 8526 insertions(+), 1300 deletions(-)
Import of Yocto 2.3.0 (poky-pyro-17.0.0) release
...
2850 files changed, 106061 insertions(+), 150068 deletions(-)
Import of Yocto 2.2.2 (poky-morty-16.0.2) release
...
219 files changed, 18188 insertions(+), 872 deletions(-)
Import of Yocto 2.2.1 (poky-morty-16.0.1) release
...
230 files changed, 6069 insertions(+), 2819 deletions(-)
Import of Yocto 2.2.0 (poky-morty-16.0.0) release
...
2759 files changed, 115681 insertions(+), 104669 deletions(-)
Import of Yocto 2.1.2 (poky-krogoth-15.0.2) release candidate
...
208 files changed, 12069 insertions(+), 826 deletions(-)
Update to 4.4.26 kernel to get "Dirty COW" fix
.../recipes-kernel/linux/linux-yocto_4.4.bbappend | 17 ++++++++++-------
poky/meta/recipes-kernel/linux/linux-yocto-rt_4.4.bb | 6 +++---
.../recipes-kernel/linux/linux-yocto-tiny_4.4.bb | 6 +++---
poky/meta/recipes-kernel/linux/linux-yocto_4.4.bb | 20 ++++++++++----------
4 files changed, 26 insertions(+), 23 deletions(-)
Import of Yocto 2.1.1 (poky-krogoth-15.0.1) release
...
224 files changed, 9336 insertions(+), 1025 deletions(-)
Update to kernel 4.4.11 for beaglebone builds
.../recipes-kernel/linux/linux-yocto_4.4.bbappend | 14 +++++++---
poky/meta/recipes-kernel/linux/linux-yocto-rt_4.4.bb | 17 ++++++++++
poky/meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb | 6 +++---
poky/meta/recipes-kernel/linux/linux-yocto_4.4.bb | 20 ++++++++++-
4 files changed, 33 insertions(+), 24 deletions(-)
Import of Yocto 2.1 "Krogoth" release (poky-krogoth-15.0.0)
...
3046 files changed, 114856 insertions(+), 145056 deletions(-)
Import of Yocto 2.0.1 "Jethro" release (poky-fido-14.0.1)
...
306 files changed, 15796 insertions(+), 1235 deletions(-)
Import of Yocto 2.0.0 "Jethro" release (poky-fido-14.0.0)
...
2850 files changed, 151517 insertions(+), 168418 deletions(-)
Import of Yocto 1.8.1 "Fido" release (poky-fido-13.0.1)
...
346 files changed, 10680 insertions(+), 3036 deletions(-)
Import of Yocto 1.8.0 "Fido" release (poky-fido-13.0.0)
...
2131 files changed, 86487 insertions(+), 221350 deletions(-)
Import of Yocto 1.7.3 release (poky-dizzy-12.0.3)
...
96 files changed, 3748 insertions(+), 288 deletions(-)
Import of Yocto 1.7.2 release (poky-dizzy-12.0.2)
...
178 files changed, 7119 insertions(+), 705 deletions(-)
Import of Yocto 1.7.1 release (poky-dizzy-12.0.1)
...
261 files changed, 8420 insertions(+), 645 deletions(-)
Import of Yocto 1.7.0 release (poky-dizzy-12.0.0)
...
2469 files changed, 121767 insertions(+), 110089 deletions(-)
IRIS Changes to meta-openembedded
Converted to submodule using commit circa Yocto 2.7.3 tag
Latest update to meta-openembedded "warrior" branch, circa 21.0.1 release
...
96 files changed, 834 insertions(+), 457 deletions(-)
Latest update to meta-openembedded "warrior" branch, circa 21.0.0 release
...
4811 files changed, 156152 insertions(+), 91045 deletions(-)
Latest update to meta-openembedded "rocko" branch, circa 18.0.3 release
...
23 files changed, 250 insertions(+), 97 deletions(-)
Latest update to meta-openembedded "rocko" branch
...
2136 files changed, 55233 insertions(+), 52413 deletions(-)
Latest update to meta-openembedded "pyro" branch
...
1881 files changed, 49298 insertions(+), 17778 deletions(-)
Latest update to meta-openembedded "morty" branch, circa 2.2.2 build
...
35 files changed, 590 insertions(+), 81 deletions(-)
Latest update to meta-openembedded "morty" branch, circa 2.2.1 build
...
167 files changed, 2064 insertions(+), 757 deletions(-)
Update to meta-openembedded "morty" branch circa 2.2.0 release
...
1253 files changed, 31680 insertions(+), 13515 deletions(-)
Latest update to meta-openembedded "krogoth" branch circa Yocto 2.1.2 release
...
3050 files changed, 5034 insertions(+), 38825 deletions(-)
Latest update to meta-openembedded "krogoth" branch (circa 5/1/16)
...
4351 files changed, 16006 insertions(+), 146874 deletions(-)
Latest update to meta-openembedded "jethro" branch
...
1162 files changed, 122597 insertions(+), 1128 deletions(-)
Latest update to meta-openembedded "fido" branch
...
686 files changed, 24611 insertions(+), 693 deletions(-)
Latest update to meta-openembedded "dizzy" branch
...
1089 files changed, 54515 insertions(+), 1575 deletions(-)
Last update to meta-openembedded "daisy" branch
meta-openembedded/meta-oe/recipes-navigation/gdal/gdal_1.10.1.bb | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
Import of meta-openembedded daisy snapshot
2044 files changed, 159915 insertions(+)
IRIS Changes to meta-freescale
Update submodule to latest commit circa Yocto 2.7.4 release
Converted to submodule using commit circa Yocto 2.7.3 tag
Import of latest "Warrior" branch support from FSL Community BSP, circa 21.0.1
...
31 files changed, 30 insertions(+), 376 deletions(-)
Import of latest "Warrior" branch support from FSL Community BSP, circa 21.0.0
...
379 files changed, 10488 insertions(+), 15867 deletions(-)
Import of latest "Rocko" branch support from FSL Community BSP, circa 18.0.3
...
101 files changed, 1653 insertions(+), 2994 deletions(-)
Import of latest "Rocko" branch support from FSL Community BSP
...
433 files changed, 41660 insertions(+)
IRIS Changes to meta-freescale-3rdparty
Converted to submodule using commit circa Yocto 2.7.3 tag
Removed linux-fslc-lts-4.19.bbappend, no longer supported
.../recipes-kernel/linux/linux-fslc-lts-4.19.bbappend | 19 -------------------
1 file changed, 19 deletions(-)
Import of latest "Warrior" branch support from FSL Community BSP, circa 21.0.1
...
31 files changed, 2448 insertions(+), 7 deletions(-)
Import of latest "Warrior" branch support from FSL Community BSP, circa 21.0.0
...
120 files changed, 3072 insertions(+), 5129 deletions(-)
Import of latest "Rocko" branch support from FSL Community BSP, circa 18.0.3
meta-freescale-3rdparty/conf/machine/apalis-imx6.conf | 3 +--
meta-freescale-3rdparty/conf/machine/colibri-vf.conf | 2 +-
meta-freescale-3rdparty/conf/machine/imx7s-warp.conf | 3 +++
.../recipes-bsp/broadcom-nvram-config/broadcom-nvram-config.inc | 2 +-
meta-freescale-3rdparty/recipes-kernel/linux/linux-boundary_4.1.15.bb | 2 +-
meta-freescale-3rdparty/recipes-kernel/linux/linux-warp7/defconfig | 1 +
6 files changed, 8 insertions(+), 5 deletions(-)
Import of latest "Rocko" branch support from FSL Community BSP
...
215 files changed, 22935 insertions(+)
IRIS Changes to meta-iris/conf
Moved some beaglebone related config to poky-iris-ti.conf from poky files
meta-iris/conf/distro/poky-iris-ti.conf | 9 +++++++++
1 file changed, 9 insertions(+)
Actually, wireless-tools addition needs to be in distro config
meta-iris/conf/distro/poky-iris-fsl.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Limit v2 SERIAL_CONSOLES to just the one we actually use
meta-iris/conf/distro/poky-iris-ti.conf | 3 +++
1 file changed, 3 insertions(+)
Need to clear SERIAL_CONSOLES_CHECK variable to avoid build issues
meta-iris/conf/distro/poky-iris-ti.conf | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
Move to 4.19.x kernel for TI build
meta-iris/conf/distro/poky-iris-ti.conf | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
Removed wireless-tools, seems to no longer be available
meta-iris/conf/distro/poky-iris-fsl.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Added LAYERSERIES_COMPAT_iris define to get rid of new Yocto warnings
meta-iris/conf/layer.conf | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
Switch to mp3 format audio files to reduce size of hubOS image
meta-iris/conf/distro/poky-iris-fsl.conf | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
Updates to LTE support to handle Quectel module and Huawei dongle on v3 hub
meta-iris/conf/distro/poky-iris-fsl.conf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Hub Image production build - remove Quectel connection manager
meta-iris/conf/distro/poky-iris-fsl.conf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Enable bluetooth/bluez5 support for build
meta-iris/conf/distro/poky-iris-fsl.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Add NFC diagnostics and initial hubOS support
meta-iris/conf/distro/poky-iris-fsl.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Build 2016.03 u-boot with GS imxdimagic patches for initial testing
meta-iris/conf/machine/imxdimagic.conf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Added back in linux-wifi-firmware to fsl target
meta-iris/conf/distro/poky-iris-fsl.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Updated u-boot configuration name for imxdimagic target
meta-iris/conf/machine/imxdimagic.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Update dtb file for IMX-D-IMAGIC board
meta-iris/conf/machine/imxdimagic.conf | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
Rename recently added target to imxdimagic to match GS naming
meta-iris/conf/machine/imx6iris.conf | 30 ------------------------------
meta-iris/conf/machine/imxdimagic.conf | 30 ++++++++++++++++++++++++++++++
2 files changed, 30 insertions(+), 30 deletions(-)
First pass at adding a new machine target for GS next hw spin
meta-iris/conf/distro/poky-iris-fsl.conf | 2 +-
meta-iris/conf/machine/imx6iris.conf | 30 ++++++++++++++++++++++++++++++
2 files changed, 31 insertions(+), 1 deletion(-)
Moved imx6qmq machine configuration to meta-iris/conf/machine
meta-iris/conf/machine/imx6qmq.conf | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
Removed vfat (for license issues) and some firmware-imx-* packages (space)
meta-iris/conf/distro/poky-iris-fsl.conf | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Remove X11 package for space reasons and vfat for licensing ones
meta-iris/conf/distro/poky-iris-ti.conf | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
Use 4.12 kernel for now, will update to 4.14 LTS down the road
meta-iris/conf/distro/poky-iris-ti.conf | 3 +++
1 file changed, 3 insertions(+)
Added rtc and busybox-hwclock packages to new hub builds
meta-iris/conf/distro/poky-iris-fsl.conf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Added libqmi to NXP build - for LTE modem control
meta-iris/conf/distro/poky-iris-fsl.conf | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Added initial wireless interface support
meta-iris/conf/distro/poky-iris-fsl.conf | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Create ti and fsl distros to simplify per-platform config
meta-iris/conf/distro/poky-iris-fsl.conf | 63 ++++++++++++++++++++++++++++++++
meta-iris/conf/distro/poky-iris-ti.conf | 57 +++++++++++++++++++++++++++++
meta-iris/conf/distro/poky-iris.conf | 57 -----------------------------
3 files changed, 120 insertions(+), 57 deletions(-)
Added support for building Wandboard sdcard image for initial testing
meta-iris/conf/distro/poky-iris.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Swap to standard u-boot rather than ti-staging one, clean up warnings
meta-iris/conf/distro/poky-iris.conf | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
Added back in some libc support to our distro required by latest code
meta-iris/conf/distro/poky-iris.conf | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
Enabled Icedtea 2.6.5 for openjdk version
meta-iris/conf/distro/poky-iris.conf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Update to use openjdk-7-jre version 95b0-2.6.4
meta-iris/conf/distro/poky-iris.conf | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
Force readline to version 5.2 to avoid GPLv3 issues
meta-iris/conf/distro/poky-iris.conf | 3 +++
1 file changed, 3 insertions(+)
TI AM3352 MPU Speed is not set to maximum value for ...
meta-iris/conf/distro/poky-iris.conf | 3 +++
1 file changed, 3 insertions(+)
Update IcedTea to 2.5.5 package
meta-iris/conf/distro/poky-iris.conf | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
Added in a few libc packages that are needed to build collectd support
meta-iris/conf/distro/poky-iris.conf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Final release image size cleanup - libc reductions
meta-iris/conf/distro/poky-iris.conf | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
Harden u-boot and Linux prior to release
meta-iris/conf/distro/poky-iris.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Java build clean up effort - down to about 37M total image size
meta-iris/conf/distro/poky-iris.conf | 5 -----
1 file changed, 5 deletions(-)
Support for openjdk 1.7.0_75, with icedtea v2.5.4
meta-iris/conf/distro/poky-iris.conf | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
Added back in multiarch and various libc packages I had removed recently...
meta-iris/conf/distro/poky-iris.conf | 21 ++++++++++++---------
1 file changed, 12 insertions(+), 9 deletions(-)
Added i2c-tools package to the builds
meta-iris/conf/distro/poky-iris.conf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Cleaned up some of the libc support we don't need and removed 3g for now
meta-iris/conf/distro/poky-iris.conf | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
Removed bluetooth build support for now...
meta-iris/conf/distro/poky-iris.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Added Lowe's copyright boilerplate to files that we created
meta-iris/conf/distro/poky-iris.conf | 13 +++++++++++++
meta-iris/conf/layer.conf | 13 +++++++++++++
2 files changed, 26 insertions(+)
Add udev-extraconf support to the build so we notice USB disks
meta-iris/conf/distro/poky-iris.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Determine flash partition design
meta-iris/conf/distro/poky-iris.conf | 3 +++
1 file changed, 3 insertions(+)
Added back in USB host support - was lost with initialy poky-iris distro add
meta-iris/conf/distro/poky-iris.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Create simple manufacturing shell app
meta-iris/conf/layer.conf | 1 +
1 file changed, 1 insertion(+)
Further changes to reduce size of image - still need to sort out X11 issues
meta-iris/conf/distro/poky-iris.conf | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
Initial pass at meta-iris recipes - new core-image-minimal-iris target
meta-iris/conf/distro/poky-iris.conf | 15 +++++++++++++++
meta-iris/conf/layer.conf | 11 +++++++++++
2 files changed, 26 insertions(+)
IRIS Changes to meta-iris/recipes-bsp
Handle machine name change from beaglebone to beaglebone-yocto
meta-iris/recipes-bsp/u-boot/u-boot_2016.03.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
No longer need to add dtc-native DEPEND in latest Yocto
meta-iris/recipes-bsp/u-boot/u-boot-imxgs.bb | 1 -
1 file changed, 1 deletion(-)
v3 Hub: Update DDR settings to match patches from manufacturer
meta-iris/recipes-bsp/u-boot/files/0006-Update-to-Micron-DDR-settings.patch | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imxgs.bb | 1 +
2 files changed, 50 insertions(+)
Hub Image production build - updates to secure u-boot for production
.../u-boot/files/0005-Lockdown-for-production.patch | 21 +++++++++------------
meta-iris/recipes-bsp/u-boot/u-boot-imxgs.bb | 3 +--
2 files changed, 10 insertions(+), 14 deletions(-)
Hub Image production build - secure u-boot for production
.../files/0005-Lockdown-for-production.patch | 53 ++++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imxgs.bb | 2 +
2 files changed, 55 insertions(+)
Patch from GS to fix issue with Samsung DDR
...-Fix-to-Samsung-K4B4G1646E-BYMA-DDR3-1866.patch | 40 ++++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imxgs.bb | 1 +
2 files changed, 41 insertions(+)
Applied DDR patches from GS for latest memory chip
.../u-boot/files/0003-REV-B-DDR-Support.patch | 181 +++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imxgs.bb | 1 +
2 files changed, 182 insertions(+)
Added IRIS multi-partition support to 2016.03 u-boot for GS
...02-mx6imagic-IRIS-multi-partition-2016.03.patch | 163 +++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imxgs.bb | 1 +
2 files changed, 164 insertions(+)
Build 2016.03 u-boot with GS imxdimagic patches for initial testing
.../0001-imxdimagic-platform-support-2016.03.patch | 4017 ++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imxgs.bb | 27 +
2 files changed, 4044 insertions(+)
Fixed mmc dev in recent u-boot patch to add multi-partition support
.../0005-mx6imagic-IRIS-multi-partition.patch | 162 +++++++++++++++++++++
.../files/0005-mx6imagic-IRIS-multi-platform.patch | 162 ---------------------
meta-iris/recipes-bsp/u-boot/u-boot-imx_%.bbappend | 2 +-
3 files changed, 163 insertions(+), 163 deletions(-)
Added Iris multi-partition support to new u-boot mx6imagic target
.../files/0005-mx6imagic-IRIS-multi-platform.patch | 162 +++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imx_%.bbappend | 1 +
2 files changed, 163 insertions(+)
Added support for mx6imagic u-boot target
.../files/0004-mx6imagic-board-support.patch | 4320 ++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imx_%.bbappend | 1 +
2 files changed, 4321 insertions(+)
Rename recently added target to imxdimagic to match GS naming
meta-iris/recipes-bsp/u-boot/u-boot-imx_%.bbappend | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
First pass at adding a new machine target for GS next hw spin
meta-iris/recipes-bsp/u-boot/u-boot-imx_%.bbappend | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
OSS patch clean up for imx6qmq board
...0001-IRIS-support-for-multiple-partitions.patch | 1 -
.../files/0001-imx6qmq-tweaks-for-eval-board.patch | 107 +++++++++++++
.../0002-imx6qmq-Added-IRIS-multi-partition.patch | 168 ++++++++++++++++++++
.../u-boot/files/0003-Use-SD4-for-eMMC.patch | 3 +-
meta-iris/recipes-bsp/u-boot/u-boot-imx_%.bbappend | 4 +-
5 files changed, 278 insertions(+), 282 deletions(-)
Changed kernel partitions to ext2 rather than fat16
...2-imx6qmq-Added-IRIS-multi-partition.patch | 31 ++++++++++++++--------
1 file changed, 20 insertions(+), 11 deletions(-)
Update u-boot-imx patches to support 2017.03 imx release
.../0001-imx6qmq-tweaks-for-eval-board.patch | 97 +++++++++++----------
.../0002-imx6qmq-Added-IRIS-multi-partition.patch | 43 +++++-----
.../u-boot/files/0003-Use-SD4-for-eMMC.patch | 98 ++++++++++++++++++----
3 files changed, 156 insertions(+), 82 deletions(-)
Update to u-boot 2017.09 sources - not tested yet
...0001-IRIS-support-for-multiple-partitions.patch | 75 +++++++++-------------
1 file changed, 32 insertions(+), 43 deletions(-)
Added support for SD4 as eMMC is u-boot for imx6qmq proto
.../u-boot/files/0003-Use-SD4-for-eMMC.patch | 92 ++++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imx_%.bbappend | 1 +
2 files changed, 93 insertions(+)
Update IRIS multiple partition patch to handle eMMC partition values
.../files/0002-imx6qmq-Added-IRIS-multi-partition.patch | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
Added reset switch check and initial LED state to u-boot patch
...Q-Added-IRIS-changed-for-multiple-paritio.patch | 162 ---------------------
...2-imx6qmq-Added-IRIS-multi-partition.patch | 161 ++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imx_%.bbappend | 2 +-
3 files changed, 162 insertions(+), 163 deletions(-)
Added in IRIS multiple partition support to imx6qmq u-boot
.../0001-imx6qmq-tweaks-for-eval-board.patch | 103 +++++++++++++
.../0002-imx6qmq-tweaks-for-eval-board.patch | 103 -------------
...Q-Added-IRIS-changed-for-multiple-paritio.patch | 162 +++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imx_%.bbappend | 5 +-
4 files changed, 267 insertions(+), 106 deletions(-)
Initial support for imx6qmq target
meta-iris/recipes-bsp/u-boot/u-boot-fslc_%.bbappend | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
imx6qmq u-boot modifications for their eval board
.../0002-imx6qmq-tweaks-for-eval-board.patch | 103 +++++++++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-imx_%.bbappend | 10 ++
2 files changed, 113 insertions(+)
Avoid build issues with TI build due to recent changes
meta-iris/recipes-bsp/u-boot/u-boot-fslc_%.bbappend | 2 ++
1 file changed, 2 insertions(+)
Patched u-boot-fslc code to add Iris partition support
...0001-IRIS-support-for-multiple-partitions.patch | 172 +++++++++++++++++++++
.../recipes-bsp/u-boot/u-boot-fslc_%.bbappend | 6 +
2 files changed, 178 insertions(+)
First pass of u-boot 2016.03 support for our hardware
.../u-boot/files/0001-Iris-patches-2016.03.patch | 360 ++++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot_2016.03.bb | 42 +++
2 files changed, 402 insertions(+)
Remove support for u-boot 2013.07 in our code
meta-iris/recipes-bsp/u-boot/u-boot_2013.07.bbappend | 5 -----
1 file changed, 5 deletions(-)
TI AM3352 MPU Speed is not set to maximum value
.../u-boot/files/0001-Iris-patches-2013.10.patch | 417 +++++++++++++++++++++
1 file changed, 417 insertions(+)
TI AM3358 MPU Speed is not set to maximum value
.../u-boot/u-boot-ti-staging_2013.10.bb | 24 +++++++++++++
meta-iris/recipes-bsp/u-boot/u-boot-ti.inc | 41 ++++++++++++++++++++++
2 files changed, 65 insertions(+)
Bootloader support for flipping Linux partition if reset
.../u-boot/files/0001-Iris-patches.patch | 25 +++++++++++++++-------
1 file changed, 17 insertions(+), 8 deletions(-)
More u-boot speed up items and security tweaks
.../u-boot/files/0001-Iris-patches.patch | 61 +++++++++++++++-------
1 file changed, 41 insertions(+), 20 deletions(-)
Turn on all our LEDs in u-boot so they aren't off during initial boot
.../u-boot/files/0001-Iris-patches.patch | 24 ++++++++++++++++------
1 file changed, 18 insertions(+), 6 deletions(-)
Added support in u-boot for trying other partition if boot fails
.../u-boot/files/0001-Iris-patches.patch | 74 +++++++++++++++-------
1 file changed, 50 insertions(+), 24 deletions(-)
Speed up u-boot boot process by removing more support we really do not need
.../u-boot/files/0001-Iris-patches.patch | 248 +++++++++++++++------
1 file changed, 175 insertions(+), 73 deletions(-)
Harden u-boot and Linux prior to release
.../u-boot/files/0001-Iris-patches.patch | 30 ++++++++++++++--------
1 file changed, 19 insertions(+), 11 deletions(-)
Pass in "quiet" option to kernel boot flags - reduces console log display
.../u-boot/files/0001-Iris-patches.patch | 30 ++++++++++++++--------
1 file changed, 19 insertions(+), 11 deletions(-)
Disable USB support in U-boot
.../u-boot/files/0001-Iris-patches.patch | 75 ++++++++++++++++++++--
1 file changed, 70 insertions(+), 5 deletions(-)
Rolled poky u-boot patch into our patch to make further patches easier
.../u-boot/files/0001-Iris-patches.patch | 62 +++++++++++++++++++---
1 file changed, 56 insertions(+), 6 deletions(-)
Investigate restart hang on EPR1 hardware
.../u-boot/files/0001-Iris-patches.patch | 24 +++++++++++++++++++---
1 file changed, 21 insertions(+), 3 deletions(-)
U-boot changes for EPR1 - disable RTC and force in board name
.../0001-Add-dual-image-booting-support.patch | 129 -----------------
.../u-boot/files/0001-Iris-patches.patch | 161 +++++++++++++++++++++
.../recipes-bsp/u-boot/u-boot_2013.07.bbappend | 2 +-
3 files changed, 162 insertions(+), 130 deletions(-)
Create flash formatter script and image to boot from
.../files/0001-Add-dual-image-booting-support.patch | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
Add boot loader support for dual images
.../0001-Add-dual-image-booting-support.patch | 126 +++++++++++++++++++++
.../recipes-bsp/u-boot/u-boot_2013.07.bbappend | 5 +
2 files changed, 131 insertions(+)
IRIS Changes to meta-iris/recipes-devtools
Handle machine name change from beaglebone to beaglebone-yocto
meta-iris/recipes-devtools/omapconf/omapconf_git.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Upgrade to latest omapconf code (top of master) to avoid compiler issues
meta-iris/recipes-devtools/omapconf/omapconf_git.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Added omapconf package for debug of TI settings
.../recipes-devtools/omapconf/omapconf_git.bb | 25 ++++++++++++++++++++++
1 file changed, 25 insertions(+)
Fixed how e2fsprogs are built to remove duplicate copies of applications
meta-iris/recipes-devtools/e2fsprogs/e2fsprogs_%.bbappend | 13 +++++++++++++
1 file changed, 13 insertions(+)
IRIS Changes to meta-iris/recipes-extended
Added recipe to extend packagegroup-base rather than changing poky files
meta-iris/recipes-extended/packagegroups/packagegroup-base.bbappend | 5 +++++
1 file changed, 5 insertions(+)
Added recipe to extend init-ifupdown rather than changing poky files
.../init-ifupdown/files/interfaces | 32 ++++++++++++++++++++++
.../init-ifupdown/init-ifupdown_1.%.bbappend | 7 +++++
2 files changed, 39 insertions(+)
Added recipe to extend udev-extraconf rather than changing poky files
.../recipes-extended/udev/files/mount.blacklist | 7 +
meta-iris/recipes-extended/udev/files/mount.sh | 152 +++++++++++++++++++++
.../udev/udev-extraconf_1.%.bbappend | 8 ++
3 files changed, 167 insertions(+)
Added recipe to extend ca-certificates rather than changing poky files
.../ca-certificates/ca-certificates_2019%.bbappend | 32 ++++++++++++++++++++++
1 file changed, 32 insertions(+)
Added recipe to extend dropbear rather than direct changes to poky files
.../dropbear/dropbear_2019.%.bbappend | 9 ++
.../dropbear/files/[email protected] | 12 +++
.../dropbear/files/dropbearkey.service | 12 +++
meta-iris/recipes-extended/dropbear/files/init | 114 +++++++++++++++++++++
4 files changed, 147 insertions(+)
Rename nspr bbappend file so it works with newer version of package
meta-iris/recipes-extended/nspr/{nspr_4.16.bbappend => nspr_4.%.bbappend} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
Switch to mp3 format audio files to reduce size of hubOS image
meta-iris/recipes-extended/sox/sox_14%.bbappend | 11 +++++++++++
1 file changed, 11 insertions(+)
Ability to test wifi-connection and package size reduction
meta-iris/recipes-extended/wpa-supplicant/files/defconfig | 552 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
meta-iris/recipes-extended/wpa-supplicant/wpa-supplicant_2%.bbappend | 5 +
2 files changed, 557 insertions(+)
Removed Bluez tools that use readline due to GPLv3 license issues
meta-iris/recipes-extended/bluez5/bluez5_%.bbappend | 7 +++++++
1 file changed, 7 insertions(+)
Added recipe to extend bluez5 support for our needs
.../recipes-extended/bluez5/bluez5_%.bbappend | 18 ++++++
.../bluez5/files/0001-Allow-GATT-access.patch | 22 ++++++++
.../recipes-extended/bluez5/files/bluetooth.init | 66 ++++++++++++++++++++++
3 files changed, 106 insertions(+)
Fixed typo in a disable flag
meta-iris/recipes-extended/alsa/alsa-lib_1%.bbappend | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Disable building alsamixer now that it has been removed from base packages
meta-iris/recipes-extended/alsa/alsa-utils_1%.bbappend | 1 +
1 file changed, 1 insertion(+)
Trimmed alsa support to reduce image size
meta-iris/recipes-extended/alsa/alsa-lib_1%.bbappend | 13 +++++++++++++
meta-iris/recipes-extended/alsa/alsa-utils_1%.bbappend | 16 ++++++++++++++++
2 files changed, 29 insertions(+)
Removed MBIM support to trim size of libqmi package
meta-iris/recipes-extended/libqmi/libqmi_1%.bbappend | 8 ++++++++
1 file changed, 8 insertions(+)
Build wpa-supplicant with openssl rather than GnuTLS to save space
meta-iris/recipes-extended/wpa-supplicant/wpa-supplicant_2%.bbappend | 4 ++++
1 file changed, 4 insertions(+)
Build curl without GnuTLS to save space
meta-iris/recipes-extended/curl/curl_7%.bbappend | 9 +++++++++
1 file changed, 9 insertions(+)
HACK - remove IRIS clean up attempt for now due to build errors
.../recipes-extended/libxml2/libxml2_%.bbappend | 50 +++++++++++-----------
1 file changed, 25 insertions(+), 25 deletions(-)
Avoid explicit use of mmcblkXpY references by adding links at boot
meta-iris/recipes-extended/collectd/files/collectd.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Move extended recipes to later versions
.../collectd/collectd_5.5.0.bbappend | 44 ----------------------
.../collectd/collectd_5.7.2.bbappend | 44 ++++++++++++++++++++++
meta-iris/recipes-extended/nspr/nspr_4.12.bbappend | 3 --
meta-iris/recipes-extended/nspr/nspr_4.16.bbappend | 3 ++
.../rrdtool/rrdtool_1.5.4.bbappend | 22 -----------
.../rrdtool/rrdtool_1.6.0.bbappend | 22 +++++++++++
6 files changed, 69 insertions(+), 69 deletions(-)
Update to i2c-tools to v3.1.2
.../recipes-extended/i2c-tools/i2c-tools_3.1.0.bb | 22 ----------------------
.../recipes-extended/i2c-tools/i2c-tools_3.1.2.bb | 22 ++++++++++++++++++++++
2 files changed, 22 insertions(+), 22 deletions(-)
Merged in iris-4g-hilink branch with initial Huawae LTE dongle support
meta-iris/recipes-extended/usb-modeswitch/usb-modeswitch_%.bbappend | 10 ++++
1 file changed, 10 insertions(+)
Attempt to remove perl dependencies in rrdtool package
meta-iris/recipes-extended/rrdtool/rrdtool_1.5.4.bbappend | 9 +++++++++
1 file changed, 9 insertions(+)
Removed dependency on perl in nspr
meta-iris/recipes-extended/nspr/nspr_4.12.bbappend | 3 +++
1 file changed, 3 insertions(+)
Removed collectd v5.2.2 support
.../recipes-extended/collectd/collectd_5.2.2.bbappend | 45 ---------------
1 file changed, 45 deletions(-)
Removed rrdtool v1.4.7 support
meta-iris/recipes-extended/rrdtool/rrdtool_1.4.7.bbappend | 15 ---------------
1 file changed, 15 deletions(-)
Fixed collectd patch support - libgcrypt remove now handled in base code
meta-iris/recipes-extended/collectd/collectd_%.bbappend | 45 ----------------
.../recipes-extended/collectd/collectd_5.2.2.bbappend | 45 ++++++++++++++++
.../recipes-extended/collectd/collectd_5.5.0.bbappend | 44 ++++++++++++++++
3 files changed, 89 insertions(+), 45 deletions(-)
Tweaked libxml2 "--without..." feature flags to minimize library
meta-iris/recipes-extended/libxml2/libxml2_%.bbappend | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
Missed a file in last rrdtool commit
meta-iris/recipes-extended/rrdtool/rrdtool_1.4.7.bbappend | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Moved to v1.5.4 of rrdtool
.../rrdtool/files/remove-xml-support.patch | 86 ---------------
.../rrdtool/files/remove-xml-support_1.4.7.patch | 86 +++++++++++++++
meta-iris/recipes-extended/rrdtool/rrdtool_%.bbappend | 15 -----
meta-iris/recipes-extended/rrdtool/rrdtool_1.4.7.bbappend | 15 +++++
meta-iris/recipes-extended/rrdtool/rrdtool_1.5.4.bbappend | 13 ++++
5 files changed, 114 insertions(+), 101 deletions(-)
Errors seen in hubOS system log due to incorrect ping host
meta-iris/recipes-extended/collectd/files/collectd.conf | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
Add more collectd support needed by hub agent
.../recipes-extended/collectd/collectd_%.bbappend | 9 +-
.../recipes-extended/collectd/files/collectd.conf | 105 ++++++++++-----------
2 files changed, 59 insertions(+), 55 deletions(-)
Add more collectd support ... enabled additional plugins
meta-iris/recipes-extended/collectd/collectd_%.bbappend | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
Collectd - added extended collectd recipe with basic support
.../recipes-extended/collectd/collectd_%.bbappend | 37 +
meta-iris/recipes-extended/collectd/files/collectd | 2 +
.../recipes-extended/collectd/files/collectd.conf | 1140 ++++++++++++++++++++
.../collectd/files/omap-serial-support.patch | 14 +
.../collectd/files/remove-libgcrypt-config.patch | 157 +++
5 files changed, 1350 insertions(+)
More work toward collectd support
.../rrdtool/files/remove-xml-support.patch | 86 ++++++++++++++++++++++
.../recipes-extended/rrdtool/rrdtool_%.bbappend | 15 ++++
2 files changed, 101 insertions(+)
Work toward collectd support
.../recipes-extended/libxml2/libxml2_%.bbappend | 29 ++++++++++++++++++++++
1 file changed, 29 insertions(+)
Log Rotation - Zwave/ZigBee binary message log
meta-iris/recipes-extended/logrotate/files/logrotate.conf | 3 ++-
meta-iris/recipes-extended/logrotate/files/logrotate.cron | 15 +++++++++++++++
meta-iris/recipes-extended/logrotate/logrotate_%.bbappend | 8 ++++++--
3 files changed, 23 insertions(+), 3 deletions(-)
Add Hub agent bootstrapping support - log rotate
.../logrotate/files/logrotate.conf | 45 ++++++++++++++++++++++
.../logrotate/logrotate_%.bbappend | 20 ++++++++++
2 files changed, 65 insertions(+)
Final release image size cleanup - shadow cleanup
meta-iris/recipes-extended/shadow/shadow_%.bbappend | 15 +++++++++++++++
1 file changed, 15 insertions(+)
Extended i2c-tools recipe to avoid the need for perl on target
.../recipes-extended/i2c-tools/files/Makefile | 40 ++++++++++++++++++++++
.../recipes-extended/i2c-tools/i2c-tools_3.1.0.bb | 22 ++++++++++++
2 files changed, 62 insertions(+)
IRIS Changes to meta-iris/recipes-kernel
Added last FSL community 4.14.x kernel recipe linux-fslc-iris.bb
meta-freescale/recipes-kernel/linux/linux-fslc-iris.bb | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
Move to 4.19.x kernel for TI build
.../0001-Iris-dtsi-config-changes.patch | 0
.../0002-Disable-Ethernet-MDIX.patch | 0
...sbnet-fix-debugging-output-for-work-items.patch | 0
.../0004-Go-back-to-old-mmc-numbering-scheme.patch | 28 +++++++++++-----------
.../linux/{linux-4.12 => linux-4.x}/adc.cfg | 0
.../linux/{linux-4.12 => linux-4.x}/defconfig | 0
.../linux/{linux-4.12 => linux-4.x}/fs.cfg | 0
.../linux/{linux-4.12 => linux-4.x}/leds.cfg | 0
.../linux/{linux-4.12 => linux-4.x}/pwm.cfg | 0
.../linux/{linux-4.12 => linux-4.x}/usb.cfg | 0
.../recipes-kernel/linux/linux-yocto_4.%.bbappend | 6 +++--
11 files changed, 18 insertions(+), 16 deletions(-)
Clean up fuzz warning issue with v3 kernel patch
.../linux-fslc/0006-Up-IMX-watchdog-default-timeout.patch | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
Rename linux-yocto_4.12.bbappend to linux-yocto_4.%.bbappend
.../linux/{linux-yocto_4.12.bbappend => linux-yocto_4.%.bbappend} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
Renamed last Linux fslc 4.x bbappend file to linux-fslc-iris.bb
.../linux/{linux-fslc_4.%.bbappend => linux-fslc-iris.bbappend} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
Updates to LTE support to handle Quectel module and Huawei dongle on v3 hub
meta-iris/recipes-kernel/linux/linux-fslc/imxdimagic/defconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Hub Image production build - remove Quectel kernel module
meta-iris/recipes-kernel/linux/linux-fslc/imxdimagic/defconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Set LED ring to a solid color at boot
.../0013-Set-LED-ring-to-purple-at-boot.patch | 97 ++++++++++++++++++++++
.../recipes-kernel/linux/linux-fslc_4.%.bbappend | 1 +
2 files changed, 98 insertions(+)
Possible fix: HUB V3: Locks up occasionally on boot
meta-iris/recipes-kernel/linux/linux-fslc/imxdimagic/defconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Updated wireless firmware to latest for IH30x module
.../files/brcmfmac43362-sdio.bin | Bin 0 -> 214940 bytes
.../files/brcmfmac43362-sdio.txt | 138 ++++++++++++---------
.../linux-wifi-firmware/linux-wifi-firmware.bb | 5 +-
3 files changed, 86 insertions(+), 57 deletions(-)
Enabled required CONFIG_BT_x support for bluez5 functionality
.../recipes-kernel/linux/linux-fslc/imxdimagic/defconfig | 12 ++++++++++++
1 file changed, 12 insertions(+)
Hub OS to update BLE Chip - Add GPIO_BT_RST support
.../linux/linux-fslc/0012-Add-BT-RST-signal.patch | 23 ++++++++++++++++++++++
.../recipes-kernel/linux/linux-fslc_4.%.bbappend | 1 +
2 files changed, 24 insertions(+)
Added in kernel patches to support CUT-2 hardware from GS
.../0011-IMX-D-IMAGIC-CUT-2-modifications.patch | 296 +++++++++++++++++++++
.../recipes-kernel/linux/linux-fslc_4.%.bbappend | 1 +
2 files changed, 297 insertions(+)
Removed 4G related GPIOs from GS gpio driver
.../linux-fslc/0007-IMX-D-IMAGIC-board-support.patch | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
Updates from GS to support mods to latest prototypes
.../0007-IMX-D-IMAGIC-board-support.patch | 200 ++++++++++++---------
1 file changed, 111 insertions(+), 89 deletions(-)
Update to 4.14.22 kernel - latest on LTS branch
meta-iris/recipes-kernel/linux/linux-fslc_4.%.bbappend | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Fixed issue with GS mbi6023 driver code that led to kernel panic
.../0008-IMX-D-IMAGIC-driver-support.patch | 545 ++++++++++-----------
1 file changed, 268 insertions(+), 277 deletions(-)
Enabled ZTE LTE support for imx6qmq target as well for testing
meta-iris/recipes-kernel/linux/linux-fslc/imx6qmq/defconfig | 4 ++++
1 file changed, 4 insertions(+)
Change Broadcom fmac and IMX sdma drivers to modules
meta-iris/recipes-kernel/linux/linux-fslc/imxdimagic/defconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Added support for AP6181 wireless module
.../files/brcmfmac43362-sdio.txt | 56 ++++++++++++++++++++++
.../linux-wifi-firmware/linux-wifi-firmware.bb | 22 +++++++--
2 files changed, 75 insertions(+), 3 deletions(-)
Removed CONFIG_SOC_IMX6Q_MQ define - not used by new target
meta-iris/recipes-kernel/linux/linux-fslc/imxdimagic/defconfig | 1 -
1 file changed, 1 deletion(-)
Added in patches for IMX-D-IMAGIC board (based on 4.1.15) kernel
.../0007-IMX-D-IMAGIC-board-support.patch | 1144 ++++++++++++++
.../0008-IMX-D-IMAGIC-driver-support.patch | 1592 ++++++++++++++++++++
.../0009-IMX-D-IMAGIC-sound-support.patch | 430 ++++++
.../linux/linux-fslc/imxdimagic/defconfig | 17 +-
.../recipes-kernel/linux/linux-fslc_4.%.bbappend | 6 +-
5 files changed, 3185 insertions(+), 4 deletions(-)
Rename recently added target to imxdimagic to match GS naming
.../linux/linux-fslc/imx6iris/defconfig | 615 ---------------------
.../linux/linux-fslc/imxdimagic/defconfig | 615 +++++++++++++++++++++
.../recipes-kernel/linux/linux-fslc_4.%.bbappend | 2 +-
3 files changed, 616 insertions(+), 616 deletions(-)
Update to 4.14.16 kernel
meta-iris/recipes-kernel/linux/linux-fslc_4.%.bbappend | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
First pass at adding a new machine target for GS next hw spin
.../linux/linux-fslc/imx6iris/defconfig | 615 ++++++++++++++++++++
.../linux/linux-fslc/imx6iris/defconfig~ | 620 +++++++++++++++++++++
.../recipes-kernel/linux/linux-fslc_4.%.bbappend | 3 +-
3 files changed, 1237 insertions(+), 1 deletion(-)
Created a board specific imx6qmq defconfig file in our kernel recipe area
.../linux/linux-fslc/imx6qmq/defconfig | 620 +++++++++++++++++++++
.../recipes-kernel/linux/linux-fslc_4.%.bbappend | 1 +
2 files changed, 621 insertions(+)
Added kernel patch to enable support for ZTE LTE modem