File: copyright

package info (click to toggle)
coreboot 25.09%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 217,084 kB
  • sloc: ansic: 1,685,313; sh: 15,803; python: 11,200; perl: 10,186; asm: 8,519; makefile: 5,179; cpp: 4,724; pascal: 2,327; ada: 1,985; yacc: 1,264; lex: 731; sed: 75; ruby: 5; lisp: 5; awk: 4
file content (4486 lines) | stat: -rw-r--r-- 224,716 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: coreboot
Source: https://www.coreboot.org/
Files-Excluded:
 3rdparty/arm-trusted-firmware
 3rdparty/cmocka
 3rdparty/ffs
 3rdparty/intel-sec-tools
 3rdparty/libgfxinit
 3rdparty/libhwbase
 3rdparty/opensbi
 3rdparty/open-power-signing-utils
 3rdparty/stm
 3rdparty/vboot/tests
 tests/data/lib/lzma-test/data.1.*
 tests/data/lib/lzma-test/data.4.*
 src/vendorcode/amd/opensil/genoa_poc/opensil/util/kconfig/lib/win/*.pyd
Comment: Exclude unused 3rdparty code.
         Exclude source-less binaries.

Files: *
Copyright: 2005-2019 Advanced Micro Devices, Inc.
           2015 Boris Barbulovski <bbarbulovski@gmail.com>
           2003-2017 Cavium Inc. <support@cavium.com>
           2005-2010 coresystems GmbH <info@coresystems.de>
           2013-2019 Damien Zammit <damien@zamaudio.com>
           2014-2019 Eltan B.V.
           2009, emlix GmbH, Oskar Schirmer <oskar@scara.com>
           2017-2019 Facebook Inc.
           2008-2019 Google LLC
           2006-2019 Intel Corporation.
           2011 Linaro
           2018 Masahiro Yamada <yamada.masahiro@socionext.com>
           2015-2019 MediaTek Inc.
           2008 Nir Tzachar <nir.tzachar@gmail.com>
           2010-2016 NVIDIA CORPORATION.
           2012 Red Hat Inc.
           2014-2018 Rockchip Electronics
           2002-2003 Romain Lievin <roms@tilp.info>
           2002-2005 Roman Zippel <zippel@linux-m68k.org>
           2011-2018 Sage Electronic Engineering, LLC
           2002-2005 Sam Ravnborg <sam@ravnborg.org>
           2009-2013 Samsung Electronics
           2012 secunet Security Networks AG
           2014-2019 Siemens AG
           2005-2009 Steven Rostedt
           2003-2004 SUSE LINUX AG
           2010-2019 The ChromiumOS Authors.
           2002 The Regents of the University of California.
           2010-2017 Timothy Pearson <tpearson@raptorengineering.com>,
                     Raptor Engineering
           2019 Trent Piepho <tpiepho@gmail.com>
           2003-2006 Tyan Computer
           2006-2010 Uwe Hermann <uwe@hermann-uwe.de>
           2009-2010 Wind River Systems, Inc.
           2018, Masahiro Yamada <yamada.masahiro@socionext.com>
License: GPL-2

Files: Makefile
Copyright: See Files: *
License: BSD-3-clause

Files: 3rdparty/vboot/*
Copyright: 2010-2024 The ChromiumOS Authors.
License: BSD-3-clause-Google

Files: 3rdparty/vboot/firmware/2lib/2sha256.c
Copyright: 2005, 2007 Olivier Gay <olivier.gay@a3.epfl.ch>
           2021 The ChromiumOS Authors.
License: BSD-3-clause-project and BSD-3-clause-Google

Files: 3rdparty/vboot/firmware/2lib/2sha512.c
Copyright: 2005, 2007 Olivier Gay <olivier.gay@a3.epfl.ch>
License: BSD-3-clause-project

Files: 3rdparty/vboot/firmware/2lib/sha256_armv8a_ce_a64.S
Copyright: 2015-2020, Linaro Limited
           2014 Linaro Ltd <ard.biesheuvel@linaro.org>
           2023 The ChromiumOS Authors
License: BSD-2-clause

Files: 3rdparty/vboot/firmware/lib/cgptlib/crc32.c
Copyright: 1986 Gary S. Brown.
License: Unrestricted
 You may use this program, or code or tables extracted from it,
 as desired without restriction.

Files: 3rdparty/vboot/scripts/image_signing/lib/shflags/shflags
Copyright: 2008 Kate Ward. All Rights Reserved.
License: LGPL
 Released under the LGPL (GNU Lesser General Public License).
Comment:
 On Debian systems, the complete text of the GNU Lesser General
 Public License can be found in "/usr/share/common-licenses/LGPL".

Files: Documentation/*
Copyright: 2017-2024 coreboot developers
License: CC-BY-4.0

Files: Documentation/corebootBuildingGuide.tex
Copyright: Stefan Reinauer, <stepan@coresystems.de>
License: GPL
 This file is subject to the terms and conditions of the GNU General
 Public License
Comment:
 On Debian systems, the complete text of the GNU General Public License
 version 1 can be found in "/usr/share/common-licenses/GPL-1".

Files: Documentation/_static/theme_overrides.css
Copyright: 2018 Patrick Rudolph <siro@das-labor.org>
License: CC-BY-4.0

Files: Documentation/Makefile
       Documentation/Makefile.sphinx
Copyright: 2017-2024 coreboot developers
License: GPL-2

Files: payloads/Makefile.mk
Copyright: 2016 Google Inc.
License: GPL-2

Files: payloads/coreinfo/*
Copyright: Advanced Micro Devices, Inc.
           Dave Jones
           Jordan Crouse
           Uwe Hermann
License: GPL-2

Files: payloads/external/tint/*.sh
Copyright: 2019 Mike Banon <mikebdp2@gmail.com>
License: GPL-2

Files: payloads/external/tint/tint-0.07_libpayload.patch
Copyright: Abraham vd Merwe <abz@blio.net>
License: GPL-2 and BSD-3-clause-author

Files: payloads/libpayload/arch/*
Copyright: 2008 Advanced Micro Devices, Inc.
           2008-2009 coresystems GmbH
           2012-2024 Google Inc.
           2018-2022 Google LLC
           2017 Patrick Rudolph <siro@das-labor.org>
           2010 Per Odlund <per.odlund@armagedon.se>
License: BSD-3-clause

Files: payloads/libpayload/arch/arm/asmlib.h
       payloads/libpayload/arch/arm/memset.S
Copyright: 1995-2000 Russell King
License: GPL-2

Files: payloads/libpayload/arch/*/gdb.c
Copyright: 2014 Google Inc.
License: GPL-2+

Files: payloads/libpayload/arch/*/Kconfig
Copyright: 2012 Google Inc.
License: GPL-2

Files: payloads/libpayload/arch/arm/memcpy.S
       payloads/libpayload/arch/arm/memmove.S
Copyright: 2005 MontaVista Software, Inc.
License: GPL-2

Files: payloads/libpayload/arch/arm64/mem*
Copyright: 2012-2013, Linaro Limited
           All rights reserved.
License: BSD-3-clause-Linaro

Files: payloads/libpayload/arch/x86/string.c
Copyright: 1991-2005 Free Software Foundation, Inc.
           2011 The ChromiumOS Authors.
License: GPL-2+

Files: payloads/libpayload/arch/mock/*
Copyright: See Files: *
License: GPL-2

Files: payloads/libpayload/bin/*
Copyright: 2008 Advanced Micro Devices, Inc.
License: BSD-3-clause

Files: payloads/libpayload/crypto/Makefile.mk
Copyright: 2007 Uwe Hermann <uwe@hermann-uwe.de>
License: BSD-3-clause

Files: payloads/libpayload/crypto/sha1.c
Copyright: By Steve Reid <steve@edmweb.com>
License: public-domain
 100% Public Domain

Files: payloads/libpayload/curses/PDCurses/*
       payloads/libpayload/curses/pdcurses-backend/*
Copyright: William McBrine
License: public-domain
 All files in this directory except configure, config.guess and
 config.sub are released to the Public Domain. config.guess and
 config.sub are under the GPL; configure is under a free license
 described within it.

Files: payloads/libpayload/curses/form*
       payloads/libpayload/curses/menu/*
       payloads/libpayload/curses/curses.h
       payloads/libpayload/curses/curses.priv.h
       payloads/libpayload/curses/PDCurses/demos/rain.c
       payloads/libpayload/curses/PDCurses/demos/worm.c
Copyright: 1998-2010 Free Software Foundation, Inc.
License: X11

Files: payloads/libpayload/curses/colors.c
       payloads/libpayload/curses/keyboard.c
       payloads/libpayload/curses/local.h
       payloads/libpayload/curses/Makefile.mk
       payloads/libpayload/curses/tinycurses.c
Copyright: 2008 Advanced Micro Devices, Inc.
           2008-2009 coresystems GmbH
           2008 Ulf Jordan <jordan@chalmers.se>
           2007 Uwe Hermann <uwe@hermann-uwe.de>
License: BSD-3-clause

Files: payloads/libpayload/curses/pdcurses-backend/pdcdisp.c
       payloads/libpayload/curses/pdcurses-backend/pdcgetsc.c
       payloads/libpayload/curses/pdcurses-backend/pdcsetsc.c
       payloads/libpayload/curses/pdcurses-backend/pdcutil.c
Copyright: 2011 secunet AG
License: public-domain
 All files in this directory except configure, config.guess and
 config.sub are released to the Public Domain. config.guess and
 config.sub are under the GPL; configure is under a free license
 described within it.

Files: payloads/libpayload/curses/PDCurses/install-sh
Copyright: 1991 by the Massachusetts Institute of Technology
License: MIT-old
 Permission to use, copy, modify, distribute, and sell this software and its
 documentation for any purpose is hereby granted without fee, provided that
 the above copyright notice appear in all copies and that both that
 copyright notice and this permission notice appear in supporting
 documentation, and that the name of M.I.T. not be used in advertising or
 publicity pertaining to distribution of the software without specific,
 written prior permission.  M.I.T. makes no representations about the
 suitability of this software for any purpose.  It is provided "as is"
 without express or implied warranty.

Files: payloads/libpayload/curses/PDCurses/doc/manext.c
Copyright: 1991-1996 Mark Hessling
License: GPL-2+

Files: payloads/libpayload/drivers/*
Copyright: 2008 Advanced Micro Devices, Inc.
           2014 Chromium OS authors
           2008-2010 coresystems GmbH
           2013 Edward O'Callaghan <eocallaghan@alterapraxis.com>
           2012-2016 Google Inc.
           2018 Google LLC
           2005 Martin Decky
           2010 Patrick Georgi
           2017 Patrick Rudolph <siro@das-labor.org>
           2017 Paul Kocialkowski <contact@paulk.fr>
           2012-2019 secunet Security Networks AG
           2008 Ulf Jordan <jordan@chalmers.se>
           2007-2008 Uwe Hermann <uwe@hermann-uwe.de>
License: BSD-3-clause

Files: payloads/libpayload/drivers/pci_map_bus_ops.c
       payloads/libpayload/drivers/pci_qcom.c
       payloads/libpayload/drivers/pcie_mediatek.c
       payloads/libpayload/drivers/*/Kconfig
Copyright: See Files: *
License: GPL-2

Files: payloads/libpayload/drivers/serial/ipq40xx.c
       payloads/libpayload/drivers/serial/qcom_qupv3_serial.c
       payloads/libpayload/drivers/serial/qcs405.c
       payloads/libpayload/drivers/timer/arm64_arch_timer.c
Copyright: 2010-2019, The Linux Foundation.
           2020 Qualcomm Technologies.
License: BSD-3-clause-Linux-Foundation

Files: payloads/libpayload/drivers/timer/generic.c
Copyright: 2016 Google Inc.
License: BSD-3-clause or GPL-2

Files: payloads/libpayload/drivers/udc/dwc2*
       payloads/libpayload/drivers/usb/dwc2*
Copyright: 2014-2015 Rockchip Electronics
License: GPL-2

Files: payloads/libpayload/gdb/*
Copyright: 2014 Google Inc.
License: GPL-2+

Files: payloads/libpayload/include/*
Copyright: 2008 Advanced Micro Devices, Inc.
           1994 Brini
           2008-2013 coresystems GmbH
           2010-2020 Google Inc.
           2018 Google LLC
           1994-1997 Mark Brinicombe
           2003-2004 Olivier Houchard
           2016 Prodrive Technologies
           2011-2019 secunet Security Networks AG
           2012-2015 The ChromiumOS Authors.
           2007 Uwe Hermann <uwe@hermann-uwe.de>
License: BSD-3-clause

Files: payloads/libpayload/include/mock/*
Copyright: See Files: *
License: GPL-2

Files: payloads/libpayload/include/keycodes.h
       payloads/libpayload/include/panel.h
       payloads/libpayload/include/term.h
Copyright: William McBrine
License: public-domain
 All files in this directory except configure, config.guess and
 config.sub are released to the Public Domain. config.guess and
 config.sub are under the GPL; configure is under a free license
 described within it.

Files: payloads/libpayload/include/gdb.h
Copyright: 2014 Google Inc.
License: GPL-2+

Files: payloads/libpayload/include/getopt.h
Copyright: 2000 The NetBSD Foundation, Inc.
License: BSD-2-clause

Files: payloads/libpayload/include/lz4.h
Copyright: 2015, Google Inc.
License: BSD-3-clause or GPL-2

Files: payloads/libpayload/include/inttypes.h
Copyright: 1997, 2005, Todd C. Miller <Todd.Miller@courtesan.com>
License: ISC

Files: payloads/libpayload/include/queue.h
Copyright: 1990-1993 The Regents of the University of California.
License: BSD-3-clause-UC

Files: payloads/libpayload/include/udc/dwc2_udc.h
       payloads/libpayload/include/usb/dwc2_registers.h
Copyright: 2014-2015 Rockchip Electronics
License: GPL-2

Files: payloads/libpayload/libc/*
       payloads/libpayload/libpci/libpci.c
       payloads/libpayload/libpci/Makefile.mk
Copyright: 2008 Advanced Micro Devices, Inc.
           2008-2010 coresystems GmbH
           2013-2020 Google Inc.
           2001-2004 Jakub Jermar
           2006 Josef Cejka
           2008 Jordan Crouse <jordan@cosmicpenguin.net>
           2005 Martin Decky
           2007-2008 Uwe Hermann <uwe@hermann-uwe.de>
License: BSD-3-clause

Files: payloads/libpayload/libc/getopt_long.c
Copyright: 2002 Todd C. Miller <Todd.Miller@courtesan.com>
           2008 coresystems GmbH
           2000 The NetBSD Foundation, Inc.
License: ISC and BSD-2-clause

Files: payloads/libpayload/libc/qsort.c
       payloads/libpayload/libc/rand.c
Copyright: 1990-1993 The Regents of the University of California.
License: BSD-3-clause-UC

Files: payloads/libpayload/libc/strlcpy.c
Copyright: 1998 Todd C. Miller <Todd.Miller@courtesan.com>
License: ISC

Files: payloads/libpayload/libcbfs/*
Copyright: See Files: *
           2011 secunet Security Networks AG
License: BSD-3-clause

Files: payloads/libpayload/libcbfs/Kconfig
Copyright: See Files: *
License: GPL-2+ or BSD-3-clause

Files: payloads/libpayload/liblz4/lz4_wrapper.c
Copyright: 2015, Google Inc.
License: BSD-3-clause or GPL-2

Files: payloads/libpayload/liblz4/lz4.c.inc
Copyright: 2011-2015, Yann Collet.
License: BSD-2-clause

Files: payloads/libpayload/liblz4/Makefile.mk
Copyright: 2015 Google, Inc.
License: BSD-3-clause

Files: payloads/libpayload/liblzma/Makefile.mk
       payloads/libpayload/liblzma/lzma.c
Copyright: 2011 secunet Security Networks AG
           2013, 2015 Google, Inc.
           2006 Carl-Daniel Hailfinger
License: BSD-3-clause

Files: payloads/libpayload/sample/arch_mock/*
       payloads/libpayload/tests/*
Copyright: See File: *
License: GPL-2

Files: payloads/libpayload/sample/Makefile
       payloads/libpayload/sample/hello.c
Copyright: 2008, Advanced Micro Devices, Inc.
License: BSD-3-clause

Files: payloads/libpayload/vboot/*
Copyright: See File: *
License: BSD-3-clause

Files: payloads/libpayload/Kconfig
Copyright: See File: *
License: GPL-2

Files: payloads/libpayload/Makefile*
Copyright: 2008 Advanced Micro Devices, Inc.
           2008-2010 coresystems GmbH
           2011 secunet Security Networks AG
           2008 Uwe Hermann <uwe@hermann-uwe.de>
License: BSD-3-clause

Files: payloads/linuxcheck/*
Copyright: 2018 Google Inc.
License: GPL-2

Files: payloads/nvramcui/*
Copyright: 2012 secunet Security Networks AG
License: GPL-2

Files: payloads/Kconfig
Copyright: See File: *
License: GPL-2

Files: src/*
Copyright: See Files: *
License: GPL-2

Files: src/acpi/acpigen_ps2_keybd.c
       src/acpi/acpigen_usb.c
Copyright: See Files: *
License: GPL-2+

Files: src/arch/arm64/div0.c
       src/arch/arm64/eabi_compat.c
       src/arch/arm64/fit_payload.c
       src/arch/arm64/ramdetect.c
       src/arch/arm/div0.c
       src/arch/arm/eabi_compat.c
       src/arch/arm/fit_payload.c
       src/arch/arm/include/armv7.h
       src/arch/arm/libgcc/ashldi3.S
       src/arch/arm/libgcc/lib1funcs.S
       src/arch/arm/libgcc/lshrdi3.S
       src/arch/riscv/fit_payload.c
       src/arch/x86/include/arch/pirq_routing.h
       src/arch/x86/memset.c
       src/arch/x86/pirq_routing.c
Copyright: See Files: *
License: GPL-2+

Files: src/arch/arm/armv4/cache.c
       src/arch/arm/armv7/bootblock_m.S
       src/arch/arm/armv7/cache.c
       src/arch/arm/armv7/cache_m.c
       src/arch/arm/armv7/cpu.S
       src/arch/arm/armv7/exception.c
       src/arch/arm/armv7/exception_asm.S
       src/arch/arm/armv7/exception_mr.c
       src/arch/arm/armv7/mmu.c
       src/arch/arm/clock.c
       src/arch/arm/include/armv4/arch/cache.h
       src/arch/arm/include/armv4/arch/exception.h
       src/arch/arm/include/armv7/arch/cache.h
       src/arch/arm/include/armv7/arch/exception.h
       src/arch/arm64/armv8/cache.c
       src/arch/arm64/armv8/exception.c
       src/arch/arm64/armv8/mmu.c
       src/arch/arm64/include/armv8/arch/cache.h
       src/arch/arm64/include/armv8/arch/exception.h
       src/arch/ppc64/include/arch/cache.h
       src/arch/riscv/include/arch/barrier.h
       src/arch/riscv/include/arch/cache.h
       src/arch/riscv/include/arch/exception.h
       src/arch/x86/include/arch/cache.h
       src/arch/x86/include/arch/exception.h
Copyright: See Files: *
License: BSD-3-clause

Files: src/arch/riscv/include/arch/encoding.h
       src/arch/riscv/include/arch/errno.h
       src/arch/riscv/include/arch/smp/atomic.h
       src/arch/riscv/include/bits.h
       src/arch/riscv/include/vm.h
       src/arch/riscv/mcall.c
Copyright: See Files: *
License: BSD-4-Clause-UC

Files: src/commonlib/bsd/cbfs_mcache.c
       src/commonlib/bsd/cbfs_private.c
       src/commonlib/bsd/elog.c
       src/commonlib/bsd/gcd.c
       src/commonlib/bsd/include/commonlib/bsd/bcd.h
       src/commonlib/bsd/include/commonlib/bsd/cb_err.h
       src/commonlib/bsd/include/commonlib/bsd/cbfs_mdata.h
       src/commonlib/bsd/include/commonlib/bsd/cbfs_private.h
       src/commonlib/bsd/include/commonlib/bsd/cbfs_serialized.h
       src/commonlib/bsd/include/commonlib/bsd/cbmem_id.h
       src/commonlib/bsd/include/commonlib/bsd/clamp.h
       src/commonlib/bsd/include/commonlib/bsd/compiler.h
       src/commonlib/bsd/include/commonlib/bsd/compression.h
       src/commonlib/bsd/include/commonlib/bsd/elog.h
       src/commonlib/bsd/include/commonlib/bsd/fmap_serialized.h
       src/commonlib/bsd/include/commonlib/bsd/gcd.h
       src/commonlib/bsd/include/commonlib/bsd/helpers.h
       src/commonlib/bsd/include/commonlib/bsd/ipchksum.h
       src/commonlib/bsd/include/commonlib/bsd/mem_chip_info.h
       src/commonlib/bsd/include/commonlib/bsd/metadata_hash.h
       src/commonlib/bsd/include/commonlib/bsd/stdlib.h
       src/commonlib/bsd/include/commonlib/bsd/string.h
       src/commonlib/bsd/include/commonlib/bsd/sysincludes.h
       src/commonlib/bsd/include/commonlib/bsd/tpm_log_defs.h
       src/commonlib/bsd/ipchksum.c
       src/commonlib/bsd/lz4_wrapper.c
       src/commonlib/bsd/string.c
Copyright: See Files: *
License: BSD-3-clause

Files: src/commonlib/device_tree.c
       src/commonlib/include/commonlib/console/post_codes.h
       src/commonlib/include/commonlib/device_tree.h
       src/commonlib/include/commonlib/list.h
       src/commonlib/include/commonlib/loglevel.h
       src/commonlib/include/commonlib/sdhci.h
       src/commonlib/include/commonlib/sd_mmc_ctrlr.h
       src/commonlib/include/commonlib/storage.h
       src/commonlib/list.c
       src/commonlib/storage/bouncebuf.c
       src/commonlib/storage/bouncebuf.h
       src/commonlib/storage/mmc.c
       src/commonlib/storage/mmc.h
       src/commonlib/storage/pci_sdhci.c
       src/commonlib/storage/sd.c
       src/commonlib/storage/sdhci_adma.c
       src/commonlib/storage/sdhci.c
       src/commonlib/storage/sdhci_display.c
       src/commonlib/storage/sdhci.h
       src/commonlib/storage/sd_mmc.c
       src/commonlib/storage/sd_mmc.h
       src/commonlib/storage/storage.c
       src/commonlib/storage/storage_erase.c
       src/commonlib/storage/storage.h
       src/commonlib/storage/storage_write.c
Copyright: See Files: *
License: GPL-2+

Files: src/commonlib/bsd/lz4.c.inc
Copyright: 2011-2015, Yann Collet.
License: BSD-2-clause

Files: src/cpu/intel/model_65x/Makefile.mk
       src/cpu/intel/model_67x/Makefile.mk
       src/cpu/intel/model_68x/Kconfig
       src/cpu/intel/model_68x/Makefile.mk
       src/cpu/intel/slot_1/l2_cache.c
       src/cpu/intel/slot_1/Makefile.mk
       src/cpu/power9/Makefile.mk
       src/cpu/power9/power9.c
       src/cpu/power9/scom.c
       src/cpu/qemu-power8/Makefile.mk
       src/cpu/qemu-power8/qemu.c
       src/cpu/qemu-x86/Makefile.mk
       src/cpu/qemu-x86/qemu.c
       src/cpu/x86/early_reset.S
       src/cpu/x86/entry32.S
       src/cpu/x86/mtrr/mtrr.c
Copyright: See Files: *
License: GPL-2+

Files: src/cpu/x86/entry16.S
Copyright: See Files: *
License: BSD-3-clause

Files: src/device/dram/ddr2.c
       src/device/dram/ddr3.c
       src/device/dram/spd.c
       src/device/xhci.c
       src/device/xhci_resource.c
Copyright: See Files: *
License: GPL-2+

Files: src/device/oprom/include/x86emu/*
       src/device/oprom/x86emu/*
Copyright: 1996-1999 SciTech Software, Inc.
           David Mosberger-Tang
           1999 Egbert Eich
License: HPND-sell-variant

Files: src/device/oprom/yabel/*
Copyright: 2004, 2008 IBM Corporation
           2008, 2009 Pattrick Hueper <phueper@hueper.net>
           2010 coresystems GmbH
License: BSD-2-clause

Files: src/drivers/aspeed/common/ast_drv.h
       src/drivers/aspeed/common/ast_i2c.c
       src/drivers/aspeed/common/ast_main.c
       src/drivers/aspeed/common/ast_mode.c
       src/drivers/aspeed/common/ast_mode_corebootfb.c
       src/drivers/aspeed/common/ast_post.c
       src/drivers/intel/gma/i915_reg.h
       src/drivers/intel/gma/intel_bios.h
       src/drivers/intel/gma/intel_ddi.c
Copyright: 2005 ASPEED Technology Inc.
           Eric Anholt <eric@anholt.net>
           See Files: *
License: Expat

Files: src/drivers/aspeed/common/ast_tables.h
Copyright: See Files: *
License: HPND-sell-variant

Files: src/drivers/crb/tpm.c
       src/drivers/crb/tpm.h
       src/drivers/spi/tpm/tis.c
       src/drivers/spi/tpm/tpm.c
       src/drivers/spi/tpm/tpm.h
       src/drivers/ti/tps65090/tps65090.c
       src/drivers/ti/tps65090/tps65090.h
       src/drivers/tpm/cr50.c
       src/drivers/tpm/cr50.h
       src/drivers/uart/pl011.h
       src/drivers/vpd/vpd.c
       src/drivers/vpd/vpd.h
       src/drivers/vpd/vpd_decode.c
       src/drivers/vpd/vpd_decode.h
       src/drivers/vpd/vpd_serial.c
       src/drivers/vpd/vpd_tables.h
Copyright: See Files: *
License: BSD-3-clause

Files: src/drivers/amd/i2s_machine_dev/chip.h
       src/drivers/amd/i2s_machine_dev/i2s_machine_dev.c
       src/drivers/aspeed/common/aspeed_coreboot.h
       src/drivers/emulation/qemu/cirrus.c
       src/drivers/i2c/max98390/chip.h
       src/drivers/i2c/max98390/max98390.c
       src/drivers/i2c/tpm/tis_atmel.c
       src/drivers/i2c/tpm/tis.c
       src/drivers/intel/fsp1_1/temp_ram_exit.c
       src/drivers/intel/fsp2_0/debug.c
       src/drivers/intel/fsp2_0/fsp_error_info_hob.c
       src/drivers/intel/fsp2_0/fsp_gop_blt.c
       src/drivers/intel/fsp2_0/fsp_timestamp.c
       src/drivers/intel/fsp2_0/graphics.c
       src/drivers/intel/fsp2_0/hand_off_block.c
       src/drivers/intel/fsp2_0/header_display.c
       src/drivers/intel/fsp2_0/header_util/fspupdvpd_sanitize.sh
       src/drivers/intel/fsp2_0/header_util/fspupdvpd.spatch
       src/drivers/intel/fsp2_0/hob_display.c
       src/drivers/intel/fsp2_0/hob_verify.c
       src/drivers/intel/fsp2_0/include/fsp/api.h
       src/drivers/intel/fsp2_0/include/fsp/debug.h
       src/drivers/intel/fsp2_0/include/fsp/graphics.h
       src/drivers/intel/fsp2_0/include/fsp/info_header.h
       src/drivers/intel/fsp2_0/include/fsp/upd.h
       src/drivers/intel/fsp2_0/include/fsp/util.h
       src/drivers/intel/fsp2_0/memory_init.c
       src/drivers/intel/fsp2_0/notify.c
       src/drivers/intel/fsp2_0/save_mrc_data.c
       src/drivers/intel/fsp2_0/silicon_init.c
       src/drivers/intel/fsp2_0/temp_ram_exit.c
       src/drivers/intel/fsp2_0/upd_display.c
       src/drivers/intel/fsp2_0/util.c
       src/drivers/intel/gma/acpi.c
       src/drivers/intel/gma/opregion.h
       src/drivers/intel/pmc_mux/chip.h
       src/drivers/intel/pmc_mux/conn/chip.h
       src/drivers/intel/pmc_mux/conn/conn.c
       src/drivers/intel/pmc_mux/mux.c
       src/drivers/intel/usb4/retimer/chip.h
       src/drivers/intel/usb4/retimer/retimer.c
       src/drivers/intel/usb4/retimer/retimer.h
       src/drivers/ipmi/ocp/ipmi_ocp.c
       src/drivers/ipmi/ocp/ipmi_ocp.h
       src/drivers/ipmi/ocp/ipmi_ocp_romstage.c
       src/drivers/ipmi/ocp/ipmi_sel.c
       src/drivers/lenovo/lenovo.h
       src/drivers/maxim/max77686/max77686.c
       src/drivers/maxim/max77686/max77686.h
       src/drivers/maxim/max77802/max77802.h
       src/drivers/ocp/dmi/ocp_dmi.h
       src/drivers/ocp/dmi/smbios.c
       src/drivers/ocp/ewl/ewl.c
       src/drivers/ocp/ewl/ocp_ewl.h
       src/drivers/ocp/include/vpd.h
       src/drivers/pc80/pc/spkmodem.c
       src/drivers/pc80/vga/vga.c
       src/drivers/pc80/vga/vga_font_8x16.c
       src/drivers/pc80/vga/vga_io.c
       src/drivers/pc80/vga/vga_palette.c
       src/drivers/pcie/rtd3/device/chip.c
       src/drivers/spi/adesto.c
       src/drivers/spi/amic.c
       src/drivers/spi/atmel.c
       src/drivers/spi/eon.c
       src/drivers/spi/gigadevice.c
       src/drivers/spi/issi.c
       src/drivers/spi/macronix.c
       src/drivers/spi/spansion.c
       src/drivers/spi/spi_flash.c
       src/drivers/spi/spi_flash_internal.h
       src/drivers/spi/spi-generic.c
       src/drivers/spi/sst.c
       src/drivers/spi/stmicro.c
       src/drivers/spi/winbond.c
       src/drivers/uart/acpi/acpi.c
       src/drivers/uart/acpi/chip.h
       src/drivers/usb/ehci.h
       src/drivers/usb/hub/acpi.c
       src/drivers/wwan/fm/acpi_fm350gl.c
Copyright: See Files: *
License: GPL-2+

Files: src/drivers/net/ne2k.c
Copyright: 1993-1994, David Greenman, Martin Renters.
License: Retain-copyright
  This software may be used, modified, copied, distributed, and sold, in
  both source and binary form provided that the above copyright and these
  terms are retained. Under no circumstances are the authors responsible for
  the proper functioning of this software, nor do the authors assume any
  responsibility for damages incurred with its use.

Files: src/drivers/net/ns8390.h
Copyright: Martin Renters
License: BSD-2-clause

Files: src/ec/51nb/npce985la0dx/Kconfig
       src/ec/51nb/npce985la0dx/Makefile.mk
       src/ec/51nb/npce985la0dx/npce985la0dx.c
       src/ec/clevo/it5570e/smbios.c
       src/ec/google/chromeec/audio_codec/audio_codec.c
       src/ec/google/chromeec/audio_codec/chip.h
       src/ec/google/chromeec/ec_acpi.c
       src/ec/google/chromeec/ec_message.h
       src/ec/google/chromeec/ec_skuid.c
       src/ec/google/chromeec/ec_smbios.c
       src/ec/google/chromeec/i2c_tunnel/chip.h
       src/ec/google/chromeec/i2c_tunnel/i2c_tunnel.c
       src/ec/google/chromeec/mux/conn/conn.c
       src/ec/google/chromeec/mux/mux.c
       src/ec/intel/board_id.c
       src/ec/intel/board_id.h
       src/ec/intel/Makefile.mk
Copyright: See Files: *
License: GPL-2+

Files: src/ec/google/chromeec/ec_cmd_api.h
       src/ec/google/chromeec/ec_commands.h
Copyright: See Files: *
License: BSD-3-clause

Files: src/include/acpi/acpigen_ps2_keybd.h
       src/include/acpi/acpigen_usb.h
       src/include/console/debug.h
       src/include/cpu/intel/l2_cache.h
       src/include/cpu/power/scom.h
       src/include/cpu/power/spr.h
       src/include/device/dram/common.h
       src/include/device/dram/ddr2.h
       src/include/device/dram/ddr3.h
       src/include/device/dram/rcd.h
       src/include/device/dram/spd.h
       src/include/device/xhci.h
       src/include/endian.h
       src/include/fit.h
       src/include/framebuffer_info.h
       src/include/pc80/vga.h
       src/include/pc80/vga_io.h
       src/include/sdram_mode.h
       src/include/spd.h
       src/include/spi-generic.h
Copyright: See Files: *
License: GPL-2+

Files: src/include/device/pci.h
Copyright: 1994, Drew Eckhardt
           1997--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
License: GPL-2

Files: src/include/input-event-codes.h
Copyright: 1999-2002 Vojtech Pavlik
           2015 Hans de Goede <hdegoede@redhat.com>
License: GPL-2

Files: src/include/vbe.h
Copyright: 2004, 2008 IBM Corporation
           2009 Pattrick Hueper <phueper@hueper.net>
License: BSD-2-clause

Files: src/include/xxhash.h
Copyright: 2012-2016, Yann Collet.
License: BSD-2-clause

Files: src/include/arch-generic/io.h
Copyright: 1996-2000, Russell King
License: GPL-2

Files: src/lib/edid*
Copyright: See Files: *
License: Expat

Files: src/lib/gcov-io.*
       src/lib/gnat/*
       src/lib/libgcov.c
Copyright: 1989-2014 Free Software Foundation, Inc.
License: GPL-3+ with GCC Runtime Library Exception

Files: src/lib/gnat/gnat.ads
Copyright: 1992-2014, AdaCore
License: GPL-3+ with GCC Runtime Library Exception

Files: src/lib/gnat/Makefile.mk
Copyright: See Files: *
License: GPL-2

Files: src/lib/gcov-iov.h
Copyright: See Files: *
License: CC-PDDC

Files: src/lib/Kconfig.cbfs_verification
Copyright: See Files: *
License: BSD-3-clause or GPL-2+

Files: src/lib/lzma.c
Copyright: 2006 Carl-Daniel Hailfinger
Comment: Parts of this file are based on C/7zip/Compress/LZMA_C/LzmaTest.c from the
         LZMA SDK 4.42, which is written and distributed to public domain by
         Igor Pavlov.
License: GPL-2+

Files: src/lib/lzmadecode.*
       payloads/libpayload/liblzma/lzmadecode.*
Copyright: 1999-2006 Igor Pavlov (2006-05-01)
License: LGPL or CPL-1 with SPECIAL EXCEPTION
  LZMA SDK is licensed under two licenses:
  1) GNU Lesser General Public License (GNU LGPL)
  2) Common Public License (CPL)
  It means that you can select one of these two licenses and
  follow rules of that license.
 .
  SPECIAL EXCEPTION:
  Igor Pavlov, as the author of this Code, expressly permits you to
  statically or dynamically link your Code (or bind by name) to the
  interfaces of this file without subjecting your linked Code to the
  terms of the CPL or GNU LGPL. Any modifications or additions
  to this file, however, are subject to the LGPL or CPL terms.
Comment:
  On Debian systems, the complete text of the GNU Lesser General
  Public License can be found in "/usr/share/common-licenses/LGPL".

Files: src/lib/stack.c
Copyright: 2000, Ron Minnich, Advanced Computing Lab, LANL, rminnich@lanl.gov
 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
License: LANL
 This software and ancillary information (herein called SOFTWARE)
 called LinuxBIOS          is made available under the terms described
 here.  The SOFTWARE has been approved for release with associated
 LA-CC Number 00-34   .  Unless otherwise indicated, this SOFTWARE has
 been authored by an employee or employees of the University of
 California, operator of the Los Alamos National Laboratory under
 Contract No. W-7405-ENG-36 with the U.S. Department of Energy.  The
 U.S. Government has rights to use, reproduce, and distribute this
 SOFTWARE.  The public may copy, distribute, prepare derivative works
 and publicly display this SOFTWARE without charge, provided that this
 Notice and any statement of authorship are reproduced on all copies.
 Neither the Government nor the University makes any warranty, express
 or implied, or assumes any liability or responsibility for the use of
 this SOFTWARE.  If SOFTWARE is modified to produce derivative works,
 such modified SOFTWARE should be clearly marked, so as not to confuse
 it with the version available from LANL.

Files: src/lib/ubsan.c
Copyright: 2014, 2015 Jonas 'Sortie' Termansen.
License: ISC

Files: src/lib/xxhash.c
Copyright: 2012-2016, Yann Collet.
License: BSD-2-clause

Files: src/mainboard/acer/g43t-am3/acpi/ec.asl
       src/mainboard/amd/pademelon/romstage.c
       src/mainboard/apple/macbook21/acpi/superio.asl
       src/mainboard/apple/macbookair4_2/acpi/superio.asl
       src/mainboard/asrock/b75m-itx/acpi/ec.asl
       src/mainboard/asrock/b75pro3-m/acpi/ec.asl
       src/mainboard/asrock/b85m_pro4/acpi/ec.asl
       src/mainboard/asrock/fatal1ty_z87_professional/acpi/ec.asl
       src/mainboard/asrock/fatal1ty_z87_professional/acpi/superio.asl
       src/mainboard/asrock/g41c-gs/acpi/ec.asl
       src/mainboard/asrock/g41c-gs/acpi/superio.asl
       src/mainboard/asrock/h77pro4-m/acpi/ec.asl
       src/mainboard/asrock/h81m-hds/acpi/ec.asl
       src/mainboard/asrock/h110m/acpi/ec.asl
       src/mainboard/asrock/h110m/acpi/mainboard.asl
       src/mainboard/asrock/h110m/acpi/superio.asl
       src/mainboard/asrock/z87_extreme3/acpi/ec.asl
       src/mainboard/asrock/z87_extreme3/acpi/superio.asl
       src/mainboard/asrock/z87_extreme4/acpi/ec.asl
       src/mainboard/asrock/z87_extreme4/acpi/superio.asl
       src/mainboard/asrock/z87_pro4/acpi/ec.asl
       src/mainboard/asrock/z87e-itx/acpi/ec.asl
       src/mainboard/asrock/z87m_extreme4/acpi/ec.asl
       src/mainboard/asrock/z87m_extreme4/acpi/superio.asl
       src/mainboard/asrock/z87m_oc_formula/acpi/ec.asl
       src/mainboard/asrock/z87m_oc_formula/acpi/superio.asl
       src/mainboard/asrock/z97_extreme6/acpi/ec.asl
       src/mainboard/asrock/z97e-itx_ac/acpi/ec.asl
       src/mainboard/asus/h61-series/acpi/ec.asl
       src/mainboard/asus/maximus_iv_gene-z/acpi/ec.asl
       src/mainboard/asus/p2b/irq_tables.c
       src/mainboard/asus/p5gc-mx/acpi/ec.asl
       src/mainboard/asus/p5gc-mx/acpi/superio.asl
       src/mainboard/asus/p5qc/acpi/ec.asl
       src/mainboard/asus/p5qc/acpi/superio.asl
       src/mainboard/asus/p5ql-em/acpi/ec.asl
       src/mainboard/asus/p5ql-em/acpi/superio.asl
       src/mainboard/asus/p5qpl-am/acpi/ec.asl
       src/mainboard/asus/p8x7x-series/acpi/ec.asl
       src/mainboard/biostar/th61-itx/acpi/ec.asl
       src/mainboard/biostar/th61-itx/acpi/superio.asl
       src/mainboard/bostentech/gbyt4/acpi/ec.asl
       src/mainboard/bostentech/gbyt4/acpi/superio.asl
       src/mainboard/clevo/kbl-u/acpi/ec.asl
       src/mainboard/dell/gm45_latitude/acpi/ec.asl
       src/mainboard/dell/gm45_latitude/acpi/superio.asl
       src/mainboard/dell/optiplex_3050/acpi/ec.asl
       src/mainboard/dell/optiplex_3050/acpi/superio.asl
       src/mainboard/dell/optiplex_9020/acpi/ec.asl
       src/mainboard/dell/optiplex_9020/acpi/superio.asl
       src/mainboard/dell/snb_ivb_workstations/acpi/ec.asl
       src/mainboard/dell/xps_8300/acpi/ec.asl
       src/mainboard/dell/xps_8300/acpi/superio.asl
       src/mainboard/facebook/fbg1701/acpi/ec.asl
       src/mainboard/foxconn/d41s/acpi/ec.asl
       src/mainboard/foxconn/g41s-k/acpi/ec.asl
       src/mainboard/gigabyte/ga-945gcm-s2l/acpi/superio.asl
       src/mainboard/gigabyte/ga-b75m-d3h/acpi/ec.asl
       src/mainboard/gigabyte/ga-b75m-d3h/acpi/superio.asl
       src/mainboard/gigabyte/ga-d510ud/acpi/ec.asl
       src/mainboard/gigabyte/ga-g41m-es2l/acpi/ec.asl
       src/mainboard/gigabyte/ga-g41m-es2l/acpi/superio.asl
       src/mainboard/gigabyte/ga-h61m-series/acpi/ec.asl
       src/mainboard/gigabyte/ga-h77m-d3h/acpi/ec.asl
       src/mainboard/gigabyte/ga-h77m-d3h/acpi/superio.asl
       src/mainboard/gigabyte/ga-h81m-d2w/acpi/ec.asl
       src/mainboard/google/auron/variants/auron_paine/include/variant/acpi/ec.asl
       src/mainboard/google/auron/variants/auron_yuna/include/variant/acpi/ec.asl
       src/mainboard/google/auron/variants/buddy/include/variant/acpi/ec.asl
       src/mainboard/google/auron/variants/buddy/include/variant/acpi/usb.asl
       src/mainboard/google/beltino/acpi/ec.asl
       src/mainboard/google/eve/acpi/ec.asl
       src/mainboard/google/eve/acpi/superio.asl
       src/mainboard/google/fizz/acpi/ec.asl
       src/mainboard/google/fizz/acpi/superio.asl
       src/mainboard/google/glados/variants/asuka/include/variant/acpi/mainboard.asl
       src/mainboard/google/glados/variants/asuka/include/variant/ec.h
       src/mainboard/google/glados/variants/cave/include/variant/acpi/mainboard.asl
       src/mainboard/google/glados/variants/glados/include/variant/acpi/mainboard.asl
       src/mainboard/google/glados/variants/lars/include/variant/acpi/mainboard.asl
       src/mainboard/google/glados/variants/sentry/include/variant/acpi/mainboard.asl
       src/mainboard/google/jecht/acpi/ec.asl
       src/mainboard/google/jecht/variants/guado/include/variant/acpi/usb.asl
       src/mainboard/google/jecht/variants/jecht/include/variant/acpi/usb.asl
       src/mainboard/google/jecht/variants/tidus/include/variant/acpi/usb.asl
       src/mainboard/google/poppy/acpi/ec.asl
       src/mainboard/google/poppy/acpi/superio.asl
       src/mainboard/google/rambi/variants/banjo/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/clapper/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/enguarde/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/expresso/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/glimmer/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/gnawty/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/heli/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/kip/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/ninja/include/variant/acpi/mainboard.asl
       src/mainboard/google/rambi/variants/ninja/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/orco/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/quawks/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/rambi/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/sumo/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/swanky/include/variant/acpi/usb.asl
       src/mainboard/google/rambi/variants/winky/include/variant/acpi/usb.asl
       src/mainboard/google/slippy/variants/falco/include/variant/acpi/usb.asl
       src/mainboard/google/slippy/variants/leon/include/variant/acpi/usb.asl
       src/mainboard/hp/280_g2/acpi/ec.asl
       src/mainboard/hp/280_g2/acpi/superio.asl
       src/mainboard/hp/pro_3x00_series/acpi/ec.asl
       src/mainboard/hp/snb_ivb_desktops/acpi/ec.asl
       src/mainboard/intel/baskingridge/acpi/ec.asl
       src/mainboard/intel/d510mo/acpi/ec.asl
       src/mainboard/intel/d510mo/acpi/superio.asl
       src/mainboard/intel/dcp847ske/acpi/ec.asl
       src/mainboard/intel/dg41wv/acpi/ec.asl
       src/mainboard/intel/dg43gt/acpi/ec.asl
       src/mainboard/intel/dq67sw/acpi/ec.asl
       src/mainboard/intel/dq67sw/acpi/superio.asl
       src/mainboard/intel/emeraldlake2/acpi/ec.asl
       src/mainboard/intel/saddlebrook/acpi/ec.asl
       src/mainboard/intel/saddlebrook/acpi/superio.asl
       src/mainboard/intel/wtm2/acpi/superio.asl
       src/mainboard/kontron/bsl6/acpi/ec.asl
       src/mainboard/kontron/bsl6/acpi/superio.asl
       src/mainboard/lenovo/m900_tiny/acpi/ec.asl
       src/mainboard/lenovo/t60/acpi/mainboard.asl
       src/mainboard/lenovo/t60/acpi/superio.asl
       src/mainboard/lenovo/t400/acpi/superio.asl
       src/mainboard/lenovo/t400/mptable.c
       src/mainboard/lenovo/thinkcentre_a58/acpi/ec.asl
       src/mainboard/lenovo/thinkcentre_m710s/acpi/ec.asl
       src/mainboard/lenovo/thinkcentre_m710s/acpi/superio.asl
       src/mainboard/lenovo/x60/acpi/mainboard.asl
       src/mainboard/lenovo/x60/acpi/superio.asl
       src/mainboard/lenovo/x200/acpi/superio.asl
       src/mainboard/lenovo/x200/mptable.c
       src/mainboard/libretrend/lt1000/acpi/ec.asl
       src/mainboard/libretrend/lt1000/acpi/superio.asl
       src/mainboard/msi/h81m-p33/acpi/ec.asl
       src/mainboard/msi/ms7707/acpi/ec.asl
       src/mainboard/msi/ms7707/acpi/superio.asl
       src/mainboard/portwell/m107/acpi/ec.asl
       src/mainboard/protectli/vault_bsw/acpi/ec.asl
       src/mainboard/protectli/vault_kbl/acpi/ec.asl
       src/mainboard/protectli/vault_kbl/acpi/superio.asl
       src/mainboard/razer/blade_stealth_kbl/acpi/superio.asl
       src/mainboard/roda/rk9/mptable.c
       src/mainboard/roda/rv11/variants/rv11/include/acpi/superio.asl
       src/mainboard/samsung/stumpy/acpi/ec.asl
       src/mainboard/sapphire/pureplatinumh61/acpi/ec.asl
       src/mainboard/sapphire/pureplatinumh61/acpi/superio.asl
       src/mainboard/supermicro/x9sae/acpi/ec.asl
       src/mainboard/supermicro/x9scl/acpi/ec.asl
       src/mainboard/supermicro/x10slm-f/acpi/ec.asl
       src/mainboard/supermicro/x11-lga1151-series/acpi/ec.asl
       src/mainboard/supermicro/x11-lga1151-series/acpi/mainboard.asl
       src/mainboard/supermicro/x11-lga1151-series/acpi/superio.asl
Copyright: See Files: *
License: CC-PDDC

Files: src/mainboard/cavium/cn8100_sff_evb/ddr4-common.dtsi
       src/mainboard/google/gale/blsp.c
       src/mainboard/google/storm/gsbi.c
Copyright: See Files: *
License: BSD-3-clause

Files: src/mainboard/google/fatcat/variants/baseboard/fatcat/memory.c
       src/mainboard/google/rex/variants/baseboard/ovis/memory.c
       src/mainboard/google/rex/variants/baseboard/rex/memory.c
       src/mainboard/google/rex/variants/ovis/memory.c
       src/mainboard/google/rex/variants/screebo/memory.c
Copyright: See Files: *
License: GPL-3

Files: src/mainboard/51nb/Kconfig
       src/mainboard/51nb/x210/acpi/battery.asl
       src/mainboard/51nb/x210/acpi/ec.asl
       src/mainboard/51nb/x210/acpi/graphics.asl
       src/mainboard/51nb/x210/acpi/mainboard.asl
       src/mainboard/51nb/x210/acpi/platform.asl
       src/mainboard/51nb/x210/acpi/superio.asl
       src/mainboard/51nb/x210/dsdt.asl
       src/mainboard/51nb/x210/gpio.h
       src/mainboard/51nb/x210/hda_verb.c
       src/mainboard/51nb/x210/mainboard.c
       src/mainboard/51nb/x210/Makefile.mk
       src/mainboard/51nb/x210/romstage.c
       src/mainboard/acer/g43t-am3/devicetree.cb
       src/mainboard/acer/g43t-am3/hda_verb.c
       src/mainboard/acer/g43t-am3/variants/g43t-am3/early_init.c
       src/mainboard/acer/g43t-am3/variants/g43t-am3/overridetree.cb
       src/mainboard/acer/g43t-am3/variants/q45t-am/early_init.c
       src/mainboard/acer/g43t-am3/variants/q45t-am/overridetree.cb
       src/mainboard/amd/birman/chromeos.c
       src/mainboard/amd/birman_plus/chromeos.c
       src/mainboard/amd/chausie/chromeos.c
       src/mainboard/amd/majolica/chromeos.c
       src/mainboard/amd/mayan/chromeos.c
       src/mainboard/amd/pademelon/hda_verb.c
       src/mainboard/apple/macbook21/hda_verb.c
       src/mainboard/asrock/b75m-itx/acpi/platform.asl
       src/mainboard/asrock/b75m-itx/acpi/superio.asl
       src/mainboard/asrock/b75m-itx/cmos.layout
       src/mainboard/asrock/b75m-itx/devicetree.cb
       src/mainboard/asrock/b75m-itx/dsdt.asl
       src/mainboard/asrock/b75m-itx/gpio.c
       src/mainboard/asrock/b75m-itx/hda_verb.c
       src/mainboard/asrock/b75m-itx/Kconfig
       src/mainboard/asrock/b75m-itx/mainboard.c
       src/mainboard/asrock/b75m-itx/Makefile.mk
       src/mainboard/asrock/b75pro3-m/devicetree.cb
       src/mainboard/asrock/b75pro3-m/mainboard.c
       src/mainboard/asrock/b85m_pro4/acpi/superio.asl
       src/mainboard/asrock/b85m_pro4/Kconfig
       src/mainboard/asrock/fatal1ty_z87_professional/Makefile.mk
       src/mainboard/asrock/g41c-gs/early_init.c
       src/mainboard/asrock/g41c-gs/hda_verb.c
       src/mainboard/asrock/g41c-gs/variants/g41c-gs/devicetree.cb
       src/mainboard/asrock/g41c-gs/variants/g41c-gs-r2/devicetree.cb
       src/mainboard/asrock/g41c-gs/variants/g41m-gs/devicetree.cb
       src/mainboard/asrock/g41c-gs/variants/g41m-s3/devicetree.cb
       src/mainboard/asrock/g41c-gs/variants/g41m-vs3-r2/devicetree.cb
       src/mainboard/asrock/h110m/mainboard.c
       src/mainboard/asrock/h77pro4-m/acpi/platform.asl
       src/mainboard/asrock/h77pro4-m/devicetree.cb
       src/mainboard/asrock/h77pro4-m/Kconfig
       src/mainboard/asrock/h81m-hds/acpi/platform.asl
       src/mainboard/asrock/h81m-hds/acpi/superio.asl
       src/mainboard/asrock/h81m-hds/devicetree.cb
       src/mainboard/asrock/h81m-hds/dsdt.asl
       src/mainboard/asrock/h81m-hds/gpio.c
       src/mainboard/asrock/h81m-hds/hda_verb.c
       src/mainboard/asrock/h81m-hds/Kconfig
       src/mainboard/asrock/h81m-hds/mainboard.c
       src/mainboard/asrock/h81m-hds/Makefile.mk
       src/mainboard/asrock/z87e-itx/acpi/superio.asl
       src/mainboard/asrock/z87e-itx/devicetree.cb
       src/mainboard/asrock/z87e-itx/Kconfig
       src/mainboard/asrock/z87e-itx/Kconfig.name
       src/mainboard/asrock/z87e-itx/Makefile.mk
       src/mainboard/asrock/z87m_oc_formula/devicetree.cb
       src/mainboard/asrock/z87m_oc_formula/Kconfig
       src/mainboard/asrock/z87m_oc_formula/Kconfig.name
       src/mainboard/asrock/z87m_oc_formula/Makefile.mk
       src/mainboard/asrock/z97e-itx_ac/acpi/superio.asl
       src/mainboard/asrock/z97e-itx_ac/Kconfig
       src/mainboard/asrock/z97e-itx_ac/Kconfig.name
       src/mainboard/asrock/z97e-itx_ac/Makefile.mk
       src/mainboard/asrock/z97_extreme6/acpi/superio.asl
       src/mainboard/asrock/z97_extreme6/devicetree.cb
       src/mainboard/asrock/z97_extreme6/Kconfig
       src/mainboard/asrock/z97_extreme6/Kconfig.name
       src/mainboard/asrock/z97_extreme6/Makefile.mk
       src/mainboard/asus/h61-series/acpi/superio.asl
       src/mainboard/asus/h61-series/devicetree.cb
       src/mainboard/asus/h61-series/variants/h61m-cs/overridetree.cb
       src/mainboard/asus/h61-series/variants/p8h61-m_lx3_r2_0/overridetree.cb
       src/mainboard/asus/h61-series/variants/p8h61-m_lx/early_init.c
       src/mainboard/asus/h61-series/variants/p8h61-m_lx/gpio.c
       src/mainboard/asus/h61-series/variants/p8h61-m_lx/hda_verb.c
       src/mainboard/asus/h61-series/variants/p8h61-m_lx/overridetree.cb
       src/mainboard/asus/h61-series/variants/p8h61-m_pro_cm6630/overridetree.cb
       src/mainboard/asus/h61-series/variants/p8h61-m_pro/overridetree.cb
       src/mainboard/asus/maximus_iv_gene-z/acpi/platform.asl
       src/mainboard/asus/maximus_iv_gene-z/acpi/superio.asl
       src/mainboard/asus/maximus_iv_gene-z/devicetree.cb
       src/mainboard/asus/maximus_iv_gene-z/dsdt.asl
       src/mainboard/asus/maximus_iv_gene-z/early_init.c
       src/mainboard/asus/maximus_iv_gene-z/gpio.c
       src/mainboard/asus/maximus_iv_gene-z/hda_verb.c
       src/mainboard/asus/maximus_iv_gene-z/Kconfig
       src/mainboard/asus/maximus_iv_gene-z/mainboard.c
       src/mainboard/asus/maximus_iv_gene-z/Makefile.mk
       src/mainboard/asus/p2b/bootblock.c
       src/mainboard/asus/p2b/variants/p2b-d/irq_tables.c
       src/mainboard/asus/p2b/variants/p2b-d/mptable.c
       src/mainboard/asus/p2b/variants/p2b-ds/irq_tables.c
       src/mainboard/asus/p2b/variants/p2b-ds/mptable.c
       src/mainboard/asus/p2b/variants/p2b-f/irq_tables.c
       src/mainboard/asus/p2b/variants/p2b/irq_tables.c
       src/mainboard/asus/p2b/variants/p2b-ls/irq_tables.c
       src/mainboard/asus/p2b/variants/p3b-f/irq_tables.c
       src/mainboard/asus/p2b/variants/p3b-f/romstage.c
       src/mainboard/asus/p5qc/early_init.c
       src/mainboard/asus/p5qc/hda_verb.c
       src/mainboard/asus/p5qc/variants/p5qc/devicetree.cb
       src/mainboard/asus/p5qc/variants/p5q/devicetree.cb
       src/mainboard/asus/p5qc/variants/p5ql_pro/devicetree.cb
       src/mainboard/asus/p5qc/variants/p5q_pro/devicetree.cb
       src/mainboard/asus/p5qc/variants/p5q_se/devicetree.cb
       src/mainboard/asus/p5ql-em/devicetree.cb
       src/mainboard/asus/p5ql-em/early_init.c
       src/mainboard/asus/p5ql-em/hda_verb.c
       src/mainboard/asus/p5qpl-am/devicetree.cb
       src/mainboard/asus/p5qpl-am/early_init.c
       src/mainboard/asus/p5qpl-am/hda_verb.c
       src/mainboard/asus/p5qpl-am/variants/p5g41t-m_lx/overridetree.cb
       src/mainboard/asus/p5qpl-am/variants/p5qpl-am/overridetree.cb
       src/mainboard/asus/p8x7x-series/variants/p8z77-m/early_init.c
       src/mainboard/asus/p8x7x-series/variants/p8z77-m/gpio.c
       src/mainboard/asus/p8x7x-series/variants/p8z77-m/hda_verb.c
       src/mainboard/bytedance/bd_egs/devicetree.cb
       src/mainboard/bytedance/bd_egs/dsdt.asl
       src/mainboard/bytedance/bd_egs/gpio.c
       src/mainboard/bytedance/bd_egs/gpio.h
       src/mainboard/clevo/cml-u/smihandler.c
       src/mainboard/clevo/tgl-u/smihandler.c
       src/mainboard/cwwk/adl/bootblock.c
       src/mainboard/cwwk/adl/dsdt.asl
       src/mainboard/cwwk/adl/Kconfig
       src/mainboard/cwwk/adl/Kconfig.name
       src/mainboard/cwwk/adl/Makefile.mk
       src/mainboard/cwwk/Kconfig
       src/mainboard/cwwk/Kconfig.name
       src/mainboard/dell/snb_ivb_latitude/devicetree.cb
       src/mainboard/dell/snb_ivb_latitude/variants/e5420/overridetree.cb
       src/mainboard/dell/snb_ivb_latitude/variants/e5520/overridetree.cb
       src/mainboard/dell/snb_ivb_latitude/variants/e5530/overridetree.cb
       src/mainboard/dell/snb_ivb_latitude/variants/e6220/overridetree.cb
       src/mainboard/dell/snb_ivb_latitude/variants/e6230/overridetree.cb
       src/mainboard/dell/snb_ivb_latitude/variants/e6320/overridetree.cb
       src/mainboard/dell/snb_ivb_latitude/variants/e6330/overridetree.cb
       src/mainboard/dell/snb_ivb_latitude/variants/e6420/overridetree.cb
       src/mainboard/dell/snb_ivb_latitude/variants/e6430/overridetree.cb
       src/mainboard/dell/snb_ivb_latitude/variants/e6520/overridetree.cb
       src/mainboard/dell/snb_ivb_latitude/variants/e6530/overridetree.cb
       src/mainboard/emulation/qemu-aarch64/bootblock_custom.S
       src/mainboard/emulation/qemu-aarch64/cbmem.c
       src/mainboard/emulation/qemu-aarch64/devicetree.cb
       src/mainboard/emulation/qemu-aarch64/include/mainboard/addressmap.h
       src/mainboard/emulation/qemu-aarch64/Kconfig
       src/mainboard/emulation/qemu-aarch64/mainboard.c
       src/mainboard/emulation/qemu-aarch64/Makefile.mk
       src/mainboard/emulation/qemu-aarch64/media.c
       src/mainboard/emulation/qemu-aarch64/memlayout.ld
       src/mainboard/emulation/qemu-aarch64/mmio.c
       src/mainboard/emulation/qemu-i440fx/bootmode.c
       src/mainboard/emulation/qemu-q35/chromeos.c
       src/mainboard/emulation/qemu-sbsa/bootblock_custom.S
       src/mainboard/emulation/qemu-sbsa/cbmem.c
       src/mainboard/emulation/qemu-sbsa/chip.h
       src/mainboard/emulation/qemu-sbsa/devicetree.cb
       src/mainboard/emulation/qemu-sbsa/include/mainboard/addressmap.h
       src/mainboard/emulation/qemu-sbsa/Kconfig
       src/mainboard/emulation/qemu-sbsa/Kconfig.name
       src/mainboard/emulation/qemu-sbsa/mainboard.c
       src/mainboard/emulation/qemu-sbsa/Makefile.mk
       src/mainboard/emulation/qemu-sbsa/media.c
       src/mainboard/emulation/qemu-sbsa/memlayout.ld
       src/mainboard/emulation/qemu-sbsa/mmio.c
       src/mainboard/foxconn/d41s/devicetree.cb
       src/mainboard/foxconn/d41s/early_init.c
       src/mainboard/foxconn/g41s-k/devicetree.cb
       src/mainboard/foxconn/g41s-k/early_init.c
       src/mainboard/foxconn/g41s-k/hda_verb.c
       src/mainboard/framework/Kconfig
       src/mainboard/framework/Kconfig.name
       src/mainboard/gigabyte/ga-g41m-es2l/devicetree.cb
       src/mainboard/gigabyte/ga-g41m-es2l/early_init.c
       src/mainboard/gigabyte/ga-g41m-es2l/hda_verb.c
       src/mainboard/google/brox/acpi/gps.asl
       src/mainboard/google/brox/acpi/gpu_defines.h
       src/mainboard/google/brox/acpi/gpu_top.asl
       src/mainboard/google/brox/acpi/nbci.asl
       src/mainboard/google/brox/acpi/nvjt.asl
       src/mainboard/google/brox/acpi/nvop.asl
       src/mainboard/google/brox/acpi/nvpcf.asl
       src/mainboard/google/brox/acpi/peg.asl
       src/mainboard/google/brox/acpi/power.asl
       src/mainboard/google/brox/acpi/utility.asl
       src/mainboard/google/brox/bootblock.c
       src/mainboard/google/brox/chromeos.c
       src/mainboard/google/brox/dsdt.asl
       src/mainboard/google/brox/ec.c
       src/mainboard/google/brox/mainboard.c
       src/mainboard/google/brox/romstage.c
       src/mainboard/google/brox/smihandler.c
       src/mainboard/google/brox/spd/Makefile.mk
       src/mainboard/google/brox/variants/baseboard/brox/gpio.c
       src/mainboard/google/brox/variants/baseboard/brox/include/baseboard/ec.h
       src/mainboard/google/brox/variants/baseboard/brox/include/baseboard/gpio.h
       src/mainboard/google/brox/variants/baseboard/brox/memory.c
       src/mainboard/google/brox/variants/baseboard/brox/ramstage.c
       src/mainboard/google/brox/variants/baseboard/include/baseboard/variants.h
       src/mainboard/google/brox/variants/brox/gpio.c
       src/mainboard/google/brox/variants/brox/include/variant/ec.h
       src/mainboard/google/brox/variants/brox/include/variant/gpio.h
       src/mainboard/google/brox/variants/brox/memory/dram_id.generated.txt
       src/mainboard/google/brox/variants/brox/memory/Makefile.mk
       src/mainboard/google/brox/variants/brox/ramstage.c
       src/mainboard/google/brox/variants/greenbayupoc/gpio.c
       src/mainboard/google/brox/variants/greenbayupoc/include/variant/ec.h
       src/mainboard/google/brox/variants/greenbayupoc/include/variant/gpio.h
       src/mainboard/google/brox/variants/greenbayupoc/memory.c
       src/mainboard/google/brox/variants/greenbayupoc/ramstage.c
       src/mainboard/google/brox/variants/jubilant/gpio.c
       src/mainboard/google/brox/variants/jubilant/include/variant/ec.h
       src/mainboard/google/brox/variants/jubilant/include/variant/gpio.h
       src/mainboard/google/brox/variants/jubilant/memory.c
       src/mainboard/google/brox/variants/jubilant/memory/dram_id.generated.txt
       src/mainboard/google/brox/variants/jubilant/memory/Makefile.mk
       src/mainboard/google/brox/variants/jubilant/ramstage.c
       src/mainboard/google/brox/variants/lotso/gpio.c
       src/mainboard/google/brox/variants/lotso/include/variant/ec.h
       src/mainboard/google/brox/variants/lotso/include/variant/gpio.h
       src/mainboard/google/brox/variants/lotso/memory.c
       src/mainboard/google/brox/variants/lotso/memory/dram_id.generated.txt
       src/mainboard/google/brox/variants/lotso/memory/Makefile.mk
       src/mainboard/google/brya/acpi/gps.asl
       src/mainboard/google/brya/acpi/gpu_defines.h
       src/mainboard/google/brya/acpi/gpu_top.asl
       src/mainboard/google/brya/acpi/nbci.asl
       src/mainboard/google/brya/acpi/nvjt.asl
       src/mainboard/google/brya/acpi/nvop.asl
       src/mainboard/google/brya/acpi/nvpcf.asl
       src/mainboard/google/brya/acpi/peg.asl
       src/mainboard/google/brya/acpi/power.asl
       src/mainboard/google/brya/acpi/utility.asl
       src/mainboard/google/brya/bootblock.c
       src/mainboard/google/brya/chromeos.c
       src/mainboard/google/brya/dsdt.asl
       src/mainboard/google/brya/ec.c
       src/mainboard/google/brya/mainboard.c
       src/mainboard/google/brya/romstage.c
       src/mainboard/google/brya/smihandler.c
       src/mainboard/google/brya/spd/Makefile.mk
       src/mainboard/google/brya/variants/agah/gpio.c
       src/mainboard/google/brya/variants/agah/include/variant/ec.h
       src/mainboard/google/brya/variants/agah/include/variant/gpio.h
       src/mainboard/google/brya/variants/agah/memory.c
       src/mainboard/google/brya/variants/agah/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/agah/memory/Makefile.mk
       src/mainboard/google/brya/variants/agah/ramstage.c
       src/mainboard/google/brya/variants/anahera4es/gpio.c
       src/mainboard/google/brya/variants/anahera4es/include/variant/ec.h
       src/mainboard/google/brya/variants/anahera4es/include/variant/gpio.h
       src/mainboard/google/brya/variants/anahera4es/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/anahera4es/memory/Makefile.mk
       src/mainboard/google/brya/variants/anahera/gpio.c
       src/mainboard/google/brya/variants/anahera/include/variant/ec.h
       src/mainboard/google/brya/variants/anahera/include/variant/gpio.h
       src/mainboard/google/brya/variants/anahera/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/anahera/memory/Makefile.mk
       src/mainboard/google/brya/variants/anraggar/gpio.c
       src/mainboard/google/brya/variants/anraggar/include/variant/ec.h
       src/mainboard/google/brya/variants/anraggar/include/variant/gpio.h
       src/mainboard/google/brya/variants/anraggar/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/anraggar/memory/Makefile.mk
       src/mainboard/google/brya/variants/aurash/gpio.c
       src/mainboard/google/brya/variants/aurash/include/variant/ec.h
       src/mainboard/google/brya/variants/aurash/include/variant/gpio.h
       src/mainboard/google/brya/variants/aurash/memory.c
       src/mainboard/google/brya/variants/aurash/ramstage.c
       src/mainboard/google/brya/variants/banshee/gpio.c
       src/mainboard/google/brya/variants/banshee/include/variant/ec.h
       src/mainboard/google/brya/variants/banshee/include/variant/gpio.h
       src/mainboard/google/brya/variants/banshee/memory.c
       src/mainboard/google/brya/variants/banshee/memory/Makefile.mk
       src/mainboard/google/brya/variants/banshee/ramstage.c
       src/mainboard/google/brya/variants/baseboard/brask/gpio.c
       src/mainboard/google/brya/variants/baseboard/brask/include/baseboard/ec.h
       src/mainboard/google/brya/variants/baseboard/brask/include/baseboard/gpio.h
       src/mainboard/google/brya/variants/baseboard/brask/memory.c
       src/mainboard/google/brya/variants/baseboard/brask/ramstage.c
       src/mainboard/google/brya/variants/baseboard/brya/gpio.c
       src/mainboard/google/brya/variants/baseboard/brya/include/baseboard/ec.h
       src/mainboard/google/brya/variants/baseboard/brya/include/baseboard/gpio.h
       src/mainboard/google/brya/variants/baseboard/brya/memory.c
       src/mainboard/google/brya/variants/baseboard/brya/ramstage.c
       src/mainboard/google/brya/variants/baseboard/hades/include/baseboard/ec.h
       src/mainboard/google/brya/variants/baseboard/hades/include/baseboard/gpio.h
       src/mainboard/google/brya/variants/baseboard/hades/memory.c
       src/mainboard/google/brya/variants/baseboard/hades/ramstage.c
       src/mainboard/google/brya/variants/baseboard/include/baseboard/variants.h
       src/mainboard/google/brya/variants/baseboard/nissa/gpio.c
       src/mainboard/google/brya/variants/baseboard/nissa/include/baseboard/ec.h
       src/mainboard/google/brya/variants/baseboard/nissa/include/baseboard/gpio.h
       src/mainboard/google/brya/variants/baseboard/nissa/memory.c
       src/mainboard/google/brya/variants/baseboard/nissa/ramstage.c
       src/mainboard/google/brya/variants/baseboard/trulo/include/baseboard/ec.h
       src/mainboard/google/brya/variants/baseboard/trulo/include/baseboard/gpio.h
       src/mainboard/google/brya/variants/baseboard/trulo/memory.c
       src/mainboard/google/brya/variants/brask/gpio.c
       src/mainboard/google/brya/variants/brask/include/variant/ec.h
       src/mainboard/google/brya/variants/brask/include/variant/gpio.h
       src/mainboard/google/brya/variants/brask/ramstage.c
       src/mainboard/google/brya/variants/brya0/gpio.c
       src/mainboard/google/brya/variants/brya0/include/variant/ec.h
       src/mainboard/google/brya/variants/brya0/include/variant/gpio.h
       src/mainboard/google/brya/variants/brya0/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/brya0/memory/Makefile.mk
       src/mainboard/google/brya/variants/brya0/ramstage.c
       src/mainboard/google/brya/variants/bujia/gpio.c
       src/mainboard/google/brya/variants/bujia/include/variant/ec.h
       src/mainboard/google/brya/variants/bujia/include/variant/gpio.h
       src/mainboard/google/brya/variants/constitution/gpio.c
       src/mainboard/google/brya/variants/constitution/include/variant/ec.h
       src/mainboard/google/brya/variants/constitution/include/variant/gpio.h
       src/mainboard/google/brya/variants/constitution/memory.c
       src/mainboard/google/brya/variants/constitution/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/constitution/memory/Makefile.mk
       src/mainboard/google/brya/variants/craask/fw_config.c
       src/mainboard/google/brya/variants/craask/gpio.c
       src/mainboard/google/brya/variants/craask/include/variant/ec.h
       src/mainboard/google/brya/variants/craask/include/variant/gpio.h
       src/mainboard/google/brya/variants/craask/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/craask/memory/Makefile.mk
       src/mainboard/google/brya/variants/craaskov/fw_config.c
       src/mainboard/google/brya/variants/craaskov/gpio.c
       src/mainboard/google/brya/variants/craaskov/include/variant/ec.h
       src/mainboard/google/brya/variants/craaskov/include/variant/gpio.h
       src/mainboard/google/brya/variants/craaskov/Makefile.mk
       src/mainboard/google/brya/variants/craaskov/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/craaskov/memory/Makefile.mk
       src/mainboard/google/brya/variants/crota/gpio.c
       src/mainboard/google/brya/variants/crota/include/variant/ec.h
       src/mainboard/google/brya/variants/crota/include/variant/gpio.h
       src/mainboard/google/brya/variants/crota/memory.c
       src/mainboard/google/brya/variants/crota/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/crota/memory/Makefile.mk
       src/mainboard/google/brya/variants/dochi/gpio.c
       src/mainboard/google/brya/variants/dochi/include/variant/ec.h
       src/mainboard/google/brya/variants/dochi/include/variant/gpio.h
       src/mainboard/google/brya/variants/dochi/memory.c
       src/mainboard/google/brya/variants/dochi/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/dochi/memory/Makefile.mk
       src/mainboard/google/brya/variants/felwinter/gpio.c
       src/mainboard/google/brya/variants/felwinter/include/variant/ec.h
       src/mainboard/google/brya/variants/felwinter/include/variant/gpio.h
       src/mainboard/google/brya/variants/felwinter/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/felwinter/memory/Makefile.mk
       src/mainboard/google/brya/variants/gaelin/gpio.c
       src/mainboard/google/brya/variants/gaelin/include/variant/ec.h
       src/mainboard/google/brya/variants/gaelin/include/variant/gpio.h
       src/mainboard/google/brya/variants/gaelin/memory.c
       src/mainboard/google/brya/variants/gimble4es/gpio.c
       src/mainboard/google/brya/variants/gimble4es/include/variant/ec.h
       src/mainboard/google/brya/variants/gimble4es/include/variant/gpio.h
       src/mainboard/google/brya/variants/gimble4es/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/gimble4es/memory/Makefile.mk
       src/mainboard/google/brya/variants/gimble/gpio.c
       src/mainboard/google/brya/variants/gimble/include/variant/ec.h
       src/mainboard/google/brya/variants/gimble/include/variant/gpio.h
       src/mainboard/google/brya/variants/gimble/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/gimble/memory/Makefile.mk
       src/mainboard/google/brya/variants/gladios/gpio.c
       src/mainboard/google/brya/variants/gladios/include/variant/ec.h
       src/mainboard/google/brya/variants/gladios/include/variant/gpio.h
       src/mainboard/google/brya/variants/gladios/variant.c
       src/mainboard/google/brya/variants/glassway/gpio.c
       src/mainboard/google/brya/variants/glassway/include/variant/ec.h
       src/mainboard/google/brya/variants/glassway/include/variant/gpio.h
       src/mainboard/google/brya/variants/glassway/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/glassway/memory/Makefile.mk
       src/mainboard/google/brya/variants/glassway/ramstage.c
       src/mainboard/google/brya/variants/gothrax/fw_config.c
       src/mainboard/google/brya/variants/gothrax/gpio.c
       src/mainboard/google/brya/variants/gothrax/include/variant/ec.h
       src/mainboard/google/brya/variants/gothrax/include/variant/gpio.h
       src/mainboard/google/brya/variants/gothrax/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/gothrax/memory/Makefile.mk
       src/mainboard/google/brya/variants/gothrax/variant.c
       src/mainboard/google/brya/variants/hades/gpio.c
       src/mainboard/google/brya/variants/hades/include/variant/ec.h
       src/mainboard/google/brya/variants/hades/include/variant/gpio.h
       src/mainboard/google/brya/variants/hades/ramstage.c
       src/mainboard/google/brya/variants/joxer/fw_config.c
       src/mainboard/google/brya/variants/joxer/gpio.c
       src/mainboard/google/brya/variants/joxer/include/variant/ec.h
       src/mainboard/google/brya/variants/joxer/include/variant/gpio.h
       src/mainboard/google/brya/variants/joxer/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/joxer/memory/Makefile.mk
       src/mainboard/google/brya/variants/joxer/variant.c
       src/mainboard/google/brya/variants/kano/gpio.c
       src/mainboard/google/brya/variants/kano/include/variant/ec.h
       src/mainboard/google/brya/variants/kano/include/variant/gpio.h
       src/mainboard/google/brya/variants/kano/memory.c
       src/mainboard/google/brya/variants/kano/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/kano/memory/Makefile.mk
       src/mainboard/google/brya/variants/kano/ramstage.c
       src/mainboard/google/brya/variants/kinox/gpio.c
       src/mainboard/google/brya/variants/kinox/include/variant/ec.h
       src/mainboard/google/brya/variants/kinox/include/variant/gpio.h
       src/mainboard/google/brya/variants/kinox/memory.c
       src/mainboard/google/brya/variants/kinox/ramstage.c
       src/mainboard/google/brya/variants/kuldax/gpio.c
       src/mainboard/google/brya/variants/kuldax/include/variant/ec.h
       src/mainboard/google/brya/variants/kuldax/include/variant/gpio.h
       src/mainboard/google/brya/variants/kuldax/ramstage.c
       src/mainboard/google/brya/variants/lisbon/gpio.c
       src/mainboard/google/brya/variants/lisbon/include/variant/ec.h
       src/mainboard/google/brya/variants/lisbon/include/variant/gpio.h
       src/mainboard/google/brya/variants/lisbon/variant.c
       src/mainboard/google/brya/variants/marasov/gpio.c
       src/mainboard/google/brya/variants/marasov/include/variant/ec.h
       src/mainboard/google/brya/variants/marasov/include/variant/gpio.h
       src/mainboard/google/brya/variants/marasov/memory.c
       src/mainboard/google/brya/variants/marasov/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/marasov/memory/Makefile.mk
       src/mainboard/google/brya/variants/marasov/variant.c
       src/mainboard/google/brya/variants/mithrax/gpio.c
       src/mainboard/google/brya/variants/mithrax/include/variant/ec.h
       src/mainboard/google/brya/variants/mithrax/include/variant/gpio.h
       src/mainboard/google/brya/variants/mithrax/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/mithrax/memory/Makefile.mk
       src/mainboard/google/brya/variants/moli/gpio.c
       src/mainboard/google/brya/variants/moli/include/variant/ec.h
       src/mainboard/google/brya/variants/moli/include/variant/gpio.h
       src/mainboard/google/brya/variants/moli/memory.c
       src/mainboard/google/brya/variants/moli/ramstage.c
       src/mainboard/google/brya/variants/nereid/gpio.c
       src/mainboard/google/brya/variants/nereid/include/variant/ec.h
       src/mainboard/google/brya/variants/nereid/include/variant/gpio.h
       src/mainboard/google/brya/variants/nereid/memory.c
       src/mainboard/google/brya/variants/nereid/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/nereid/memory/Makefile.mk
       src/mainboard/google/brya/variants/nivviks/fw_config.c
       src/mainboard/google/brya/variants/nivviks/gpio.c
       src/mainboard/google/brya/variants/nivviks/include/variant/ec.h
       src/mainboard/google/brya/variants/nivviks/include/variant/gpio.h
       src/mainboard/google/brya/variants/nivviks/memory.c
       src/mainboard/google/brya/variants/nivviks/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/nivviks/memory/Makefile.mk
       src/mainboard/google/brya/variants/nokris/include/variant/ec.h
       src/mainboard/google/brya/variants/nokris/include/variant/gpio.h
       src/mainboard/google/brya/variants/nokris/memory/Makefile.mk
       src/mainboard/google/brya/variants/nova/gpio.c
       src/mainboard/google/brya/variants/nova/include/variant/ec.h
       src/mainboard/google/brya/variants/nova/include/variant/gpio.h
       src/mainboard/google/brya/variants/nova/memory.c
       src/mainboard/google/brya/variants/nova/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/nova/memory/Makefile.mk
       src/mainboard/google/brya/variants/omnigul/gpio.c
       src/mainboard/google/brya/variants/omnigul/include/variant/ec.h
       src/mainboard/google/brya/variants/omnigul/include/variant/gpio.h
       src/mainboard/google/brya/variants/omnigul/memory.c
       src/mainboard/google/brya/variants/omnigul/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/omnigul/memory/Makefile.mk
       src/mainboard/google/brya/variants/omnigul/ramstage.c
       src/mainboard/google/brya/variants/orisa/fw_config.c
       src/mainboard/google/brya/variants/orisa/gpio.c
       src/mainboard/google/brya/variants/orisa/include/variant/ec.h
       src/mainboard/google/brya/variants/orisa/include/variant/gpio.h
       src/mainboard/google/brya/variants/orisa/memory.c
       src/mainboard/google/brya/variants/orisa/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/orisa/memory/Makefile.mk
       src/mainboard/google/brya/variants/osiris/gpio.c
       src/mainboard/google/brya/variants/osiris/include/variant/ec.h
       src/mainboard/google/brya/variants/osiris/include/variant/gpio.h
       src/mainboard/google/brya/variants/osiris/memory.c
       src/mainboard/google/brya/variants/osiris/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/osiris/memory/Makefile.mk
       src/mainboard/google/brya/variants/pirrha/fw_config.c
       src/mainboard/google/brya/variants/pirrha/gpio.c
       src/mainboard/google/brya/variants/pirrha/include/variant/ec.h
       src/mainboard/google/brya/variants/pirrha/include/variant/gpio.h
       src/mainboard/google/brya/variants/pirrha/memory.c
       src/mainboard/google/brya/variants/pirrha/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/pirrha/memory/Makefile.mk
       src/mainboard/google/brya/variants/primus/gpio.c
       src/mainboard/google/brya/variants/primus/include/variant/ec.h
       src/mainboard/google/brya/variants/primus/include/variant/gpio.h
       src/mainboard/google/brya/variants/primus/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/primus/memory/Makefile.mk
       src/mainboard/google/brya/variants/pujjo/fw_config.c
       src/mainboard/google/brya/variants/pujjoga/fw_config.c
       src/mainboard/google/brya/variants/pujjoga/gpio.c
       src/mainboard/google/brya/variants/pujjoga/include/variant/ec.h
       src/mainboard/google/brya/variants/pujjoga/include/variant/gpio.h
       src/mainboard/google/brya/variants/pujjoga/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/pujjoga/memory/Makefile.mk
       src/mainboard/google/brya/variants/pujjoga/variant.c
       src/mainboard/google/brya/variants/pujjo/gpio.c
       src/mainboard/google/brya/variants/pujjo/include/variant/ec.h
       src/mainboard/google/brya/variants/pujjo/include/variant/gpio.h
       src/mainboard/google/brya/variants/pujjo/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/pujjo/memory/Makefile.mk
       src/mainboard/google/brya/variants/pujjo/variant.c
       src/mainboard/google/brya/variants/quandiso/fw_config.c
       src/mainboard/google/brya/variants/quandiso/gpio.c
       src/mainboard/google/brya/variants/quandiso/include/variant/ec.h
       src/mainboard/google/brya/variants/quandiso/include/variant/gpio.h
       src/mainboard/google/brya/variants/quandiso/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/quandiso/memory/Makefile.mk
       src/mainboard/google/brya/variants/redrix4es/gpio.c
       src/mainboard/google/brya/variants/redrix4es/include/variant/ec.h
       src/mainboard/google/brya/variants/redrix4es/include/variant/gpio.h
       src/mainboard/google/brya/variants/redrix4es/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/redrix4es/memory/Makefile.mk
       src/mainboard/google/brya/variants/redrix/gpio.c
       src/mainboard/google/brya/variants/redrix/include/variant/ec.h
       src/mainboard/google/brya/variants/redrix/include/variant/gpio.h
       src/mainboard/google/brya/variants/redrix/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/redrix/memory/Makefile.mk
       src/mainboard/google/brya/variants/riven/fw_config.c
       src/mainboard/google/brya/variants/riven/gpio.c
       src/mainboard/google/brya/variants/riven/include/variant/ec.h
       src/mainboard/google/brya/variants/riven/include/variant/gpio.h
       src/mainboard/google/brya/variants/riven/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/riven/memory/Makefile.mk
       src/mainboard/google/brya/variants/riven/ramstage.c
       src/mainboard/google/brya/variants/skolas4es/gpio.c
       src/mainboard/google/brya/variants/skolas4es/include/variant/ec.h
       src/mainboard/google/brya/variants/skolas4es/include/variant/gpio.h
       src/mainboard/google/brya/variants/skolas4es/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/skolas4es/memory/Makefile.mk
       src/mainboard/google/brya/variants/skolas4es/ramstage.c
       src/mainboard/google/brya/variants/skolas/gpio.c
       src/mainboard/google/brya/variants/skolas/include/variant/ec.h
       src/mainboard/google/brya/variants/skolas/include/variant/gpio.h
       src/mainboard/google/brya/variants/skolas/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/skolas/memory/Makefile.mk
       src/mainboard/google/brya/variants/skolas/ramstage.c
       src/mainboard/google/brya/variants/sundance/fw_config.c
       src/mainboard/google/brya/variants/sundance/gpio.c
       src/mainboard/google/brya/variants/sundance/include/variant/ec.h
       src/mainboard/google/brya/variants/sundance/include/variant/gpio.h
       src/mainboard/google/brya/variants/sundance/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/sundance/memory/Makefile.mk
       src/mainboard/google/brya/variants/sundance/variant.c
       src/mainboard/google/brya/variants/taeko4es/gpio.c
       src/mainboard/google/brya/variants/taeko4es/include/variant/ec.h
       src/mainboard/google/brya/variants/taeko4es/include/variant/gpio.h
       src/mainboard/google/brya/variants/taeko4es/memory.c
       src/mainboard/google/brya/variants/taeko4es/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/taeko4es/memory/Makefile.mk
       src/mainboard/google/brya/variants/taeko/gpio.c
       src/mainboard/google/brya/variants/taeko/include/variant/ec.h
       src/mainboard/google/brya/variants/taeko/include/variant/gpio.h
       src/mainboard/google/brya/variants/taeko/memory.c
       src/mainboard/google/brya/variants/taeko/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/taeko/memory/Makefile.mk
       src/mainboard/google/brya/variants/taniks/gpio.c
       src/mainboard/google/brya/variants/taniks/include/variant/ec.h
       src/mainboard/google/brya/variants/taniks/include/variant/gpio.h
       src/mainboard/google/brya/variants/taniks/memory.c
       src/mainboard/google/brya/variants/taniks/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/taniks/memory/Makefile.mk
       src/mainboard/google/brya/variants/teliks/gpio.c
       src/mainboard/google/brya/variants/teliks/include/variant/ec.h
       src/mainboard/google/brya/variants/teliks/include/variant/gpio.h
       src/mainboard/google/brya/variants/teliks/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/teliks/memory/Makefile.mk
       src/mainboard/google/brya/variants/trulo/fw_config.c
       src/mainboard/google/brya/variants/trulo/gpio.c
       src/mainboard/google/brya/variants/trulo/include/variant/ec.h
       src/mainboard/google/brya/variants/trulo/include/variant/gpio.h
       src/mainboard/google/brya/variants/trulo/memory.c
       src/mainboard/google/brya/variants/trulo/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/trulo/memory/Makefile.mk
       src/mainboard/google/brya/variants/uldren/gpio.c
       src/mainboard/google/brya/variants/uldren/include/variant/ec.h
       src/mainboard/google/brya/variants/uldren/include/variant/gpio.h
       src/mainboard/google/brya/variants/uldren/Makefile.mk
       src/mainboard/google/brya/variants/uldren/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/uldren/memory/Makefile.mk
       src/mainboard/google/brya/variants/vell/gpio.c
       src/mainboard/google/brya/variants/vell/include/variant/ec.h
       src/mainboard/google/brya/variants/vell/include/variant/gpio.h
       src/mainboard/google/brya/variants/vell/memory.c
       src/mainboard/google/brya/variants/vell/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/vell/memory/Makefile.mk
       src/mainboard/google/brya/variants/vell/variant.c
       src/mainboard/google/brya/variants/volmar/gpio.c
       src/mainboard/google/brya/variants/volmar/include/variant/ec.h
       src/mainboard/google/brya/variants/volmar/include/variant/gpio.h
       src/mainboard/google/brya/variants/volmar/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/volmar/memory/Makefile.mk
       src/mainboard/google/brya/variants/xivu/fw_config.c
       src/mainboard/google/brya/variants/xivu/gpio.c
       src/mainboard/google/brya/variants/xivu/include/variant/ec.h
       src/mainboard/google/brya/variants/xivu/include/variant/gpio.h
       src/mainboard/google/brya/variants/xivu/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/xivu/memory/Makefile.mk
       src/mainboard/google/brya/variants/xol/gpio.c
       src/mainboard/google/brya/variants/xol/include/variant/ec.h
       src/mainboard/google/brya/variants/xol/include/variant/gpio.h
       src/mainboard/google/brya/variants/xol/memory.c
       src/mainboard/google/brya/variants/xol/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/xol/memory/Makefile.mk
       src/mainboard/google/brya/variants/xol/ramstage.c
       src/mainboard/google/brya/variants/yaviks/fw_config.c
       src/mainboard/google/brya/variants/yaviks/gpio.c
       src/mainboard/google/brya/variants/yaviks/include/variant/ec.h
       src/mainboard/google/brya/variants/yaviks/include/variant/gpio.h
       src/mainboard/google/brya/variants/yaviks/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/yaviks/memory/Makefile.mk
       src/mainboard/google/brya/variants/yavilla/fw_config.c
       src/mainboard/google/brya/variants/yavilla/gpio.c
       src/mainboard/google/brya/variants/yavilla/include/variant/ec.h
       src/mainboard/google/brya/variants/yavilla/include/variant/gpio.h
       src/mainboard/google/brya/variants/yavilla/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/yavilla/memory/Makefile.mk
       src/mainboard/google/brya/variants/yavista/include/variant/ec.h
       src/mainboard/google/brya/variants/yavista/include/variant/gpio.h
       src/mainboard/google/brya/variants/yavista/memory/Makefile.mk
       src/mainboard/google/brya/variants/zydron/gpio.c
       src/mainboard/google/brya/variants/zydron/include/variant/ec.h
       src/mainboard/google/brya/variants/zydron/include/variant/gpio.h
       src/mainboard/google/brya/variants/zydron/memory/dram_id.generated.txt
       src/mainboard/google/brya/variants/zydron/memory/Makefile.mk
       src/mainboard/google/brya/variants/zydron/ramstage.c
       src/mainboard/google/dedede/board_info.c
       src/mainboard/google/dedede/bootblock.c
       src/mainboard/google/dedede/chromeos.c
       src/mainboard/google/dedede/dsdt.asl
       src/mainboard/google/dedede/ec.c
       src/mainboard/google/dedede/mainboard.c
       src/mainboard/google/dedede/romstage.c
       src/mainboard/google/dedede/smihandler.c
       src/mainboard/google/dedede/spd/Makefile.mk
       src/mainboard/google/dedede/variants/awasuki/gpio.c
       src/mainboard/google/dedede/variants/awasuki/include/variant/ec.h
       src/mainboard/google/dedede/variants/awasuki/include/variant/gpio.h
       src/mainboard/google/dedede/variants/awasuki/Makefile.mk
       src/mainboard/google/dedede/variants/awasuki/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/awasuki/memory/Makefile.mk
       src/mainboard/google/dedede/variants/awasuki/ramstage.c
       src/mainboard/google/dedede/variants/baseboard/gpio.c
       src/mainboard/google/dedede/variants/baseboard/include/baseboard/dibbi/ec.h
       src/mainboard/google/dedede/variants/baseboard/include/baseboard/ec.h
       src/mainboard/google/dedede/variants/baseboard/include/baseboard/gpio.h
       src/mainboard/google/dedede/variants/baseboard/include/baseboard/variants.h
       src/mainboard/google/dedede/variants/baseboard/memory.c
       src/mainboard/google/dedede/variants/baseboard/ramstage.c
       src/mainboard/google/dedede/variants/beadrix/gpio.c
       src/mainboard/google/dedede/variants/beadrix/include/variant/ec.h
       src/mainboard/google/dedede/variants/beadrix/include/variant/gpio.h
       src/mainboard/google/dedede/variants/beadrix/Makefile.mk
       src/mainboard/google/dedede/variants/beadrix/memory.c
       src/mainboard/google/dedede/variants/beadrix/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/beadrix/memory/Makefile.mk
       src/mainboard/google/dedede/variants/beadrix/variant.c
       src/mainboard/google/dedede/variants/blipper/gpio.c
       src/mainboard/google/dedede/variants/blipper/include/variant/ec.h
       src/mainboard/google/dedede/variants/blipper/include/variant/gpio.h
       src/mainboard/google/dedede/variants/blipper/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/blipper/memory/Makefile.mk
       src/mainboard/google/dedede/variants/boten/gpio.c
       src/mainboard/google/dedede/variants/boten/include/variant/ec.h
       src/mainboard/google/dedede/variants/boten/include/variant/gpio.h
       src/mainboard/google/dedede/variants/boten/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/boten/memory/Makefile.mk
       src/mainboard/google/dedede/variants/boten/variant.c
       src/mainboard/google/dedede/variants/boxy/gpio.c
       src/mainboard/google/dedede/variants/boxy/include/variant/ec.h
       src/mainboard/google/dedede/variants/boxy/include/variant/gpio.h
       src/mainboard/google/dedede/variants/boxy/Makefile.mk
       src/mainboard/google/dedede/variants/boxy/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/boxy/memory/Makefile.mk
       src/mainboard/google/dedede/variants/boxy/ramstage.c
       src/mainboard/google/dedede/variants/bugzzy/gpio.c
       src/mainboard/google/dedede/variants/bugzzy/include/variant/ec.h
       src/mainboard/google/dedede/variants/bugzzy/include/variant/gpio.h
       src/mainboard/google/dedede/variants/bugzzy/Makefile.mk
       src/mainboard/google/dedede/variants/bugzzy/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/bugzzy/memory/Makefile.mk
       src/mainboard/google/dedede/variants/bugzzy/ramstage.c
       src/mainboard/google/dedede/variants/bugzzy/variant.c
       src/mainboard/google/dedede/variants/cappy2/gpio.c
       src/mainboard/google/dedede/variants/cappy2/include/variant/ec.h
       src/mainboard/google/dedede/variants/cappy2/include/variant/gpio.h
       src/mainboard/google/dedede/variants/cappy2/Makefile.mk
       src/mainboard/google/dedede/variants/cappy2/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/cappy2/memory/Makefile.mk
       src/mainboard/google/dedede/variants/corori/gpio.c
       src/mainboard/google/dedede/variants/corori/include/variant/ec.h
       src/mainboard/google/dedede/variants/corori/include/variant/gpio.h
       src/mainboard/google/dedede/variants/corori/Makefile.mk
       src/mainboard/google/dedede/variants/corori/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/corori/memory/Makefile.mk
       src/mainboard/google/dedede/variants/cret/gpio.c
       src/mainboard/google/dedede/variants/cret/include/variant/ec.h
       src/mainboard/google/dedede/variants/cret/include/variant/gpio.h
       src/mainboard/google/dedede/variants/cret/Makefile.mk
       src/mainboard/google/dedede/variants/cret/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/cret/memory/Makefile.mk
       src/mainboard/google/dedede/variants/cret/variant.c
       src/mainboard/google/dedede/variants/dedede/include/variant/ec.h
       src/mainboard/google/dedede/variants/dedede/include/variant/gpio.h
       src/mainboard/google/dedede/variants/dexi/gpio.c
       src/mainboard/google/dedede/variants/dexi/include/variant/ec.h
       src/mainboard/google/dedede/variants/dexi/include/variant/gpio.h
       src/mainboard/google/dedede/variants/dexi/Makefile.mk
       src/mainboard/google/dedede/variants/dexi/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/dexi/memory/Makefile.mk
       src/mainboard/google/dedede/variants/dexi/ramstage.c
       src/mainboard/google/dedede/variants/dexi/variant.c
       src/mainboard/google/dedede/variants/dibbi/gpio.c
       src/mainboard/google/dedede/variants/dibbi/include/variant/ec.h
       src/mainboard/google/dedede/variants/dibbi/include/variant/gpio.h
       src/mainboard/google/dedede/variants/dibbi/Makefile.mk
       src/mainboard/google/dedede/variants/dibbi/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/dibbi/memory/Makefile.mk
       src/mainboard/google/dedede/variants/dibbi/ramstage.c
       src/mainboard/google/dedede/variants/dita/gpio.c
       src/mainboard/google/dedede/variants/dita/include/variant/ec.h
       src/mainboard/google/dedede/variants/dita/include/variant/gpio.h
       src/mainboard/google/dedede/variants/dita/Makefile.mk
       src/mainboard/google/dedede/variants/dita/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/dita/memory/Makefile.mk
       src/mainboard/google/dedede/variants/dita/ramstage.c
       src/mainboard/google/dedede/variants/dita/variant.c
       src/mainboard/google/dedede/variants/drawcia/gpio.c
       src/mainboard/google/dedede/variants/drawcia/include/variant/ec.h
       src/mainboard/google/dedede/variants/drawcia/include/variant/gpio.h
       src/mainboard/google/dedede/variants/drawcia/Makefile.mk
       src/mainboard/google/dedede/variants/drawcia/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/drawcia/memory/Makefile.mk
       src/mainboard/google/dedede/variants/drawcia/ramstage.c
       src/mainboard/google/dedede/variants/driblee/gpio.c
       src/mainboard/google/dedede/variants/driblee/include/variant/ec.h
       src/mainboard/google/dedede/variants/driblee/include/variant/gpio.h
       src/mainboard/google/dedede/variants/driblee/Makefile.mk
       src/mainboard/google/dedede/variants/driblee/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/driblee/memory/Makefile.mk
       src/mainboard/google/dedede/variants/galtic/gpio.c
       src/mainboard/google/dedede/variants/galtic/include/variant/ec.h
       src/mainboard/google/dedede/variants/galtic/include/variant/gpio.h
       src/mainboard/google/dedede/variants/galtic/Makefile.mk
       src/mainboard/google/dedede/variants/galtic/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/galtic/memory/Makefile.mk
       src/mainboard/google/dedede/variants/gooey/gpio.c
       src/mainboard/google/dedede/variants/gooey/include/variant/ec.h
       src/mainboard/google/dedede/variants/gooey/include/variant/gpio.h
       src/mainboard/google/dedede/variants/gooey/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/gooey/memory/Makefile.mk
       src/mainboard/google/dedede/variants/gooey/variant.c
       src/mainboard/google/dedede/variants/haboki/gpio.c
       src/mainboard/google/dedede/variants/haboki/include/variant/ec.h
       src/mainboard/google/dedede/variants/haboki/include/variant/gpio.h
       src/mainboard/google/dedede/variants/haboki/Makefile.mk
       src/mainboard/google/dedede/variants/haboki/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/haboki/memory/Makefile.mk
       src/mainboard/google/dedede/variants/kracko/gpio.c
       src/mainboard/google/dedede/variants/kracko/include/variant/ec.h
       src/mainboard/google/dedede/variants/kracko/include/variant/gpio.h
       src/mainboard/google/dedede/variants/kracko/Makefile.mk
       src/mainboard/google/dedede/variants/kracko/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/kracko/memory/Makefile.mk
       src/mainboard/google/dedede/variants/kracko/ramstage.c
       src/mainboard/google/dedede/variants/kracko/variant.c
       src/mainboard/google/dedede/variants/lalala/include/variant/ec.h
       src/mainboard/google/dedede/variants/lalala/include/variant/gpio.h
       src/mainboard/google/dedede/variants/lalala/Makefile.mk
       src/mainboard/google/dedede/variants/lalala/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/lalala/memory/Makefile.mk
       src/mainboard/google/dedede/variants/lantis/include/variant/ec.h
       src/mainboard/google/dedede/variants/lantis/include/variant/gpio.h
       src/mainboard/google/dedede/variants/lantis/Makefile.mk
       src/mainboard/google/dedede/variants/lantis/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/lantis/memory/Makefile.mk
       src/mainboard/google/dedede/variants/lantis/ramstage.c
       src/mainboard/google/dedede/variants/madoo/gpio.c
       src/mainboard/google/dedede/variants/madoo/include/variant/ec.h
       src/mainboard/google/dedede/variants/madoo/include/variant/gpio.h
       src/mainboard/google/dedede/variants/madoo/Makefile.mk
       src/mainboard/google/dedede/variants/madoo/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/madoo/memory/Makefile.mk
       src/mainboard/google/dedede/variants/magolor/gpio.c
       src/mainboard/google/dedede/variants/magolor/include/variant/ec.h
       src/mainboard/google/dedede/variants/magolor/include/variant/gpio.h
       src/mainboard/google/dedede/variants/magolor/Makefile.mk
       src/mainboard/google/dedede/variants/magolor/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/magolor/memory/Makefile.mk
       src/mainboard/google/dedede/variants/magolor/ramstage.c
       src/mainboard/google/dedede/variants/metaknight/gpio.c
       src/mainboard/google/dedede/variants/metaknight/include/variant/ec.h
       src/mainboard/google/dedede/variants/metaknight/include/variant/gpio.h
       src/mainboard/google/dedede/variants/metaknight/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/metaknight/memory/Makefile.mk
       src/mainboard/google/dedede/variants/metaknight/variant.c
       src/mainboard/google/dedede/variants/pirika/gpio.c
       src/mainboard/google/dedede/variants/pirika/include/variant/ec.h
       src/mainboard/google/dedede/variants/pirika/include/variant/gpio.h
       src/mainboard/google/dedede/variants/pirika/Makefile.mk
       src/mainboard/google/dedede/variants/pirika/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/pirika/memory/Makefile.mk
       src/mainboard/google/dedede/variants/pirika/ramstage.c
       src/mainboard/google/dedede/variants/sasuke/gpio.c
       src/mainboard/google/dedede/variants/sasuke/include/variant/ec.h
       src/mainboard/google/dedede/variants/sasuke/include/variant/gpio.h
       src/mainboard/google/dedede/variants/sasuke/Makefile.mk
       src/mainboard/google/dedede/variants/sasuke/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/sasuke/memory/Makefile.mk
       src/mainboard/google/dedede/variants/sasukette/gpio.c
       src/mainboard/google/dedede/variants/sasukette/include/variant/ec.h
       src/mainboard/google/dedede/variants/sasukette/include/variant/gpio.h
       src/mainboard/google/dedede/variants/sasukette/Makefile.mk
       src/mainboard/google/dedede/variants/sasukette/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/sasukette/memory/Makefile.mk
       src/mainboard/google/dedede/variants/sasukette/ramstage.c
       src/mainboard/google/dedede/variants/sasukette/variant.c
       src/mainboard/google/dedede/variants/sasuke/variant.c
       src/mainboard/google/dedede/variants/shotzo/gpio.c
       src/mainboard/google/dedede/variants/shotzo/include/variant/ec.h
       src/mainboard/google/dedede/variants/shotzo/include/variant/gpio.h
       src/mainboard/google/dedede/variants/shotzo/Makefile.mk
       src/mainboard/google/dedede/variants/shotzo/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/shotzo/memory/Makefile.mk
       src/mainboard/google/dedede/variants/storo/gpio.c
       src/mainboard/google/dedede/variants/storo/include/variant/ec.h
       src/mainboard/google/dedede/variants/storo/include/variant/gpio.h
       src/mainboard/google/dedede/variants/storo/Makefile.mk
       src/mainboard/google/dedede/variants/storo/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/storo/memory/Makefile.mk
       src/mainboard/google/dedede/variants/storo/variant.c
       src/mainboard/google/dedede/variants/taranza/gpio.c
       src/mainboard/google/dedede/variants/taranza/include/variant/ec.h
       src/mainboard/google/dedede/variants/taranza/include/variant/gpio.h
       src/mainboard/google/dedede/variants/taranza/Makefile.mk
       src/mainboard/google/dedede/variants/taranza/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/taranza/memory/Makefile.mk
       src/mainboard/google/dedede/variants/taranza/ramstage.c
       src/mainboard/google/dedede/variants/taranza/variant.c
       src/mainboard/google/dedede/variants/waddledee/gpio.c
       src/mainboard/google/dedede/variants/waddledee/include/variant/ec.h
       src/mainboard/google/dedede/variants/waddledee/include/variant/gpio.h
       src/mainboard/google/dedede/variants/waddledee/Makefile.mk
       src/mainboard/google/dedede/variants/waddledee/memory.c
       src/mainboard/google/dedede/variants/waddledee/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/waddledee/memory/Makefile.mk
       src/mainboard/google/dedede/variants/waddledoo/include/variant/ec.h
       src/mainboard/google/dedede/variants/waddledoo/include/variant/gpio.h
       src/mainboard/google/dedede/variants/waddledoo/Makefile.mk
       src/mainboard/google/dedede/variants/waddledoo/memory.c
       src/mainboard/google/dedede/variants/waddledoo/memory/dram_id.generated.txt
       src/mainboard/google/dedede/variants/waddledoo/memory/Makefile.mk
       src/mainboard/google/fatcat/bootblock.c
       src/mainboard/google/fatcat/chromeos.c
       src/mainboard/google/fatcat/dsdt.asl
       src/mainboard/google/fatcat/ec.c
       src/mainboard/google/fatcat/mainboard.c
       src/mainboard/google/fatcat/romstage.c
       src/mainboard/google/fatcat/smihandler.c
       src/mainboard/google/fatcat/spd/Makefile.mk
       src/mainboard/google/fatcat/variants/baseboard/fatcat/include/baseboard/ec.h
       src/mainboard/google/fatcat/variants/baseboard/fatcat/include/baseboard/gpio.h
       src/mainboard/google/fatcat/variants/baseboard/include/baseboard/variants.h
       src/mainboard/google/fatcat/variants/fatcat/gpio.c
       src/mainboard/google/fatcat/variants/fatcat/include/variant/ec.h
       src/mainboard/google/fatcat/variants/fatcat/include/variant/gpio.h
       src/mainboard/google/fatcat/variants/fatcat/memory/dram_id.generated.txt
       src/mainboard/google/fatcat/variants/fatcat/memory/Makefile.mk
       src/mainboard/google/guybrush/chromeos.c
       src/mainboard/google/guybrush/ec.c
       src/mainboard/google/guybrush/Kconfig
       src/mainboard/google/guybrush/mainboard.c
       src/mainboard/google/guybrush/Makefile.mk
       src/mainboard/google/guybrush/romstage.c
       src/mainboard/google/guybrush/smihandler.c
       src/mainboard/google/guybrush/spi_speeds.c
       src/mainboard/google/guybrush/variants/baseboard/devicetree.cb
       src/mainboard/google/guybrush/variants/baseboard/gpio.c
       src/mainboard/google/guybrush/variants/baseboard/helpers.c
       src/mainboard/google/guybrush/variants/baseboard/include/baseboard/ec.h
       src/mainboard/google/guybrush/variants/baseboard/include/baseboard/gpio.h
       src/mainboard/google/guybrush/variants/baseboard/include/baseboard/variants.h
       src/mainboard/google/guybrush/variants/dewatt/gpio.c
       src/mainboard/google/guybrush/variants/dewatt/include/variant/ec.h
       src/mainboard/google/guybrush/variants/dewatt/include/variant/gpio.h
       src/mainboard/google/guybrush/variants/dewatt/Makefile.mk
       src/mainboard/google/guybrush/variants/dewatt/memory/dram_id.generated.txt
       src/mainboard/google/guybrush/variants/dewatt/memory/Makefile.mk
       src/mainboard/google/guybrush/variants/dewatt/overridetree.cb
       src/mainboard/google/guybrush/variants/dewatt/variant.c
       src/mainboard/google/guybrush/variants/guybrush/gpio.c
       src/mainboard/google/guybrush/variants/guybrush/include/variant/ec.h
       src/mainboard/google/guybrush/variants/guybrush/Makefile.mk
       src/mainboard/google/guybrush/variants/guybrush/memory/dram_id.generated.txt
       src/mainboard/google/guybrush/variants/guybrush/memory/Makefile.mk
       src/mainboard/google/guybrush/variants/guybrush/overridetree.cb
       src/mainboard/google/guybrush/variants/guybrush/variant.c
       src/mainboard/google/guybrush/variants/nipperkin/gpio.c
       src/mainboard/google/guybrush/variants/nipperkin/include/variant/ec.h
       src/mainboard/google/guybrush/variants/nipperkin/include/variant/gpio.h
       src/mainboard/google/guybrush/variants/nipperkin/Makefile.mk
       src/mainboard/google/guybrush/variants/nipperkin/memory/dram_id.generated.txt
       src/mainboard/google/guybrush/variants/nipperkin/memory/Makefile.mk
       src/mainboard/google/guybrush/variants/nipperkin/overridetree.cb
       src/mainboard/google/guybrush/variants/nipperkin/ramstage.c
       src/mainboard/google/guybrush/variants/nipperkin/tpm_tis.c
       src/mainboard/google/guybrush/verstage.c
       src/mainboard/google/hatch/variants/hatch/ramstage.c
       src/mainboard/google/hatch/variants/jinlon/include/variant/sku.h
       src/mainboard/google/hatch/variants/jinlon/mainboard.c
       src/mainboard/google/hatch/variants/mushu/ramstage.c
       src/mainboard/google/hatch/variants/palkia/gpio.c
       src/mainboard/google/hatch/variants/palkia/include/variant/acpi/dptf.asl
       src/mainboard/google/hatch/variants/palkia/include/variant/ec.h
       src/mainboard/google/hatch/variants/palkia/include/variant/gpio.h
       src/mainboard/google/hatch/variants/palkia/Makefile.mk
       src/mainboard/google/hatch/variants/palkia/memory.c
       src/mainboard/google/myst/chromeos.c
       src/mainboard/google/myst/ec.c
       src/mainboard/google/myst/Kconfig
       src/mainboard/google/myst/mainboard.c
       src/mainboard/google/myst/Makefile.mk
       src/mainboard/google/myst/romstage.c
       src/mainboard/google/myst/variants/baseboard/devicetree.cb
       src/mainboard/google/myst/variants/baseboard/gpio.c
       src/mainboard/google/myst/variants/baseboard/include/baseboard/ec.h
       src/mainboard/google/myst/variants/baseboard/include/baseboard/gpio.h
       src/mainboard/google/myst/variants/baseboard/include/baseboard/variants.h
       src/mainboard/google/myst/variants/baseboard/smihandler.c
       src/mainboard/google/myst/variants/myst/include/variant/ec.h
       src/mainboard/google/myst/variants/myst/Makefile.mk
       src/mainboard/google/myst/variants/myst/memory/dram_id.generated.txt
       src/mainboard/google/myst/variants/myst/memory/Makefile.mk
       src/mainboard/google/myst/variants/myst/overridetree.cb
       src/mainboard/google/myst/verstage.c
       src/mainboard/google/octopus/variants/baseboard/cbi_ssfc.c
       src/mainboard/google/octopus/variants/phaser/memory.c
       src/mainboard/google/rex/bootblock.c
       src/mainboard/google/rex/chromeos.c
       src/mainboard/google/rex/dsdt.asl
       src/mainboard/google/rex/ec.c
       src/mainboard/google/rex/mainboard.c
       src/mainboard/google/rex/romstage.c
       src/mainboard/google/rex/smihandler.c
       src/mainboard/google/rex/spd/Makefile.mk
       src/mainboard/google/rex/variants/baseboard/include/baseboard/variants.h
       src/mainboard/google/rex/variants/baseboard/ovis/include/baseboard/ec.h
       src/mainboard/google/rex/variants/baseboard/ovis/include/baseboard/gpio.h
       src/mainboard/google/rex/variants/baseboard/ovis/ramstage.c
       src/mainboard/google/rex/variants/baseboard/rex/include/baseboard/ec.h
       src/mainboard/google/rex/variants/baseboard/rex/include/baseboard/gpio.h
       src/mainboard/google/rex/variants/baseboard/rex/ramstage.c
       src/mainboard/google/rex/variants/deku/gpio.c
       src/mainboard/google/rex/variants/deku/include/variant/ec.h
       src/mainboard/google/rex/variants/deku/include/variant/gpio.h
       src/mainboard/google/rex/variants/deku/memory/dram_id.generated.txt
       src/mainboard/google/rex/variants/deku/memory/Makefile.mk
       src/mainboard/google/rex/variants/karis/gpio.c
       src/mainboard/google/rex/variants/karis/include/variant/ec.h
       src/mainboard/google/rex/variants/karis/include/variant/gpio.h
       src/mainboard/google/rex/variants/karis/memory/dram_id.generated.txt
       src/mainboard/google/rex/variants/karis/memory/Makefile.mk
       src/mainboard/google/rex/variants/ovis/gpio.c
       src/mainboard/google/rex/variants/ovis/include/variant/ec.h
       src/mainboard/google/rex/variants/ovis/include/variant/gpio.h
       src/mainboard/google/rex/variants/ovis/memory/dram_id.generated.txt
       src/mainboard/google/rex/variants/ovis/memory/Makefile.mk
       src/mainboard/google/rex/variants/rex0/gpio.c
       src/mainboard/google/rex/variants/rex0/include/variant/ec.h
       src/mainboard/google/rex/variants/rex0/include/variant/gpio.h
       src/mainboard/google/rex/variants/rex0/memory/dram_id.generated.txt
       src/mainboard/google/rex/variants/rex0/memory/Makefile.mk
       src/mainboard/google/rex/variants/screebo/gpio.c
       src/mainboard/google/rex/variants/screebo/include/variant/ec.h
       src/mainboard/google/rex/variants/screebo/include/variant/gpio.h
       src/mainboard/google/rex/variants/screebo/memory/dram_id.generated.txt
       src/mainboard/google/rex/variants/screebo/memory/Makefile.mk
       src/mainboard/google/skyrim/chromeos.c
       src/mainboard/google/skyrim/ec.c
       src/mainboard/google/skyrim/Kconfig
       src/mainboard/google/skyrim/mainboard.c
       src/mainboard/google/skyrim/Makefile.mk
       src/mainboard/google/skyrim/romstage.c
       src/mainboard/google/skyrim/spi_speeds.c
       src/mainboard/google/skyrim/variants/baseboard/devicetree.cb
       src/mainboard/google/skyrim/variants/baseboard/gpio.c
       src/mainboard/google/skyrim/variants/baseboard/include/baseboard/baseboard.h
       src/mainboard/google/skyrim/variants/baseboard/include/baseboard/ec.h
       src/mainboard/google/skyrim/variants/baseboard/include/baseboard/gpio.h
       src/mainboard/google/skyrim/variants/baseboard/include/baseboard/variants.h
       src/mainboard/google/skyrim/variants/baseboard/smihandler.c
       src/mainboard/google/skyrim/variants/crystaldrift/include/variant/ec.h
       src/mainboard/google/skyrim/variants/crystaldrift/Makefile.mk
       src/mainboard/google/skyrim/variants/crystaldrift/memory/dram_id.generated.txt
       src/mainboard/google/skyrim/variants/crystaldrift/memory/Makefile.mk
       src/mainboard/google/skyrim/variants/crystaldrift/overridetree.cb
       src/mainboard/google/skyrim/variants/frostflow/gpio.c
       src/mainboard/google/skyrim/variants/frostflow/include/variant/ec.h
       src/mainboard/google/skyrim/variants/frostflow/Makefile.mk
       src/mainboard/google/skyrim/variants/frostflow/memory/dram_id.generated.txt
       src/mainboard/google/skyrim/variants/frostflow/memory/Makefile.mk
       src/mainboard/google/skyrim/variants/frostflow/overridetree.cb
       src/mainboard/google/skyrim/variants/markarth/gpio.c
       src/mainboard/google/skyrim/variants/markarth/include/variant/ec.h
       src/mainboard/google/skyrim/variants/markarth/Makefile.mk
       src/mainboard/google/skyrim/variants/markarth/memory/dram_id.generated.txt
       src/mainboard/google/skyrim/variants/markarth/memory/Makefile.mk
       src/mainboard/google/skyrim/variants/markarth/overridetree.cb
       src/mainboard/google/skyrim/variants/skyrim/include/variant/ec.h
       src/mainboard/google/skyrim/variants/skyrim/Makefile.mk
       src/mainboard/google/skyrim/variants/skyrim/memory/dram_id.generated.txt
       src/mainboard/google/skyrim/variants/skyrim/memory/Makefile.mk
       src/mainboard/google/skyrim/variants/skyrim/overridetree.cb
       src/mainboard/google/skyrim/variants/winterhold/gpio.c
       src/mainboard/google/skyrim/variants/winterhold/include/variant/ec.h
       src/mainboard/google/skyrim/variants/winterhold/Makefile.mk
       src/mainboard/google/skyrim/variants/winterhold/memory/dram_id.generated.txt
       src/mainboard/google/skyrim/variants/winterhold/memory/Makefile.mk
       src/mainboard/google/skyrim/variants/winterhold/overridetree.cb
       src/mainboard/google/skyrim/verstage.c
       src/mainboard/google/volteer/bootblock.c
       src/mainboard/google/volteer/chromeos.c
       src/mainboard/google/volteer/dsdt.asl
       src/mainboard/google/volteer/ec.c
       src/mainboard/google/volteer/mainboard.asl
       src/mainboard/google/volteer/mainboard.c
       src/mainboard/google/volteer/Makefile.mk
       src/mainboard/google/volteer/romstage.c
       src/mainboard/google/volteer/smihandler.c
       src/mainboard/google/volteer/spd/Makefile.mk
       src/mainboard/google/volteer/variants/baseboard/gpio.c
       src/mainboard/google/volteer/variants/baseboard/include/baseboard/ec.h
       src/mainboard/google/volteer/variants/baseboard/include/baseboard/gpio.h
       src/mainboard/google/volteer/variants/baseboard/include/baseboard/variants.h
       src/mainboard/google/volteer/variants/baseboard/Makefile.mk
       src/mainboard/google/volteer/variants/baseboard/memory.c
       src/mainboard/google/volteer/variants/chronicler/gpio.c
       src/mainboard/google/volteer/variants/chronicler/include/variant/ec.h
       src/mainboard/google/volteer/variants/chronicler/include/variant/gpio.h
       src/mainboard/google/volteer/variants/chronicler/memory.c
       src/mainboard/google/volteer/variants/chronicler/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/chronicler/memory/Makefile.mk
       src/mainboard/google/volteer/variants/collis/include/variant/ec.h
       src/mainboard/google/volteer/variants/collis/include/variant/gpio.h
       src/mainboard/google/volteer/variants/collis/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/collis/memory/Makefile.mk
       src/mainboard/google/volteer/variants/collis/variant.c
       src/mainboard/google/volteer/variants/copano/include/variant/ec.h
       src/mainboard/google/volteer/variants/copano/include/variant/gpio.h
       src/mainboard/google/volteer/variants/copano/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/copano/memory/Makefile.mk
       src/mainboard/google/volteer/variants/copano/variant.c
       src/mainboard/google/volteer/variants/delbin/gpio.c
       src/mainboard/google/volteer/variants/delbin/include/variant/ec.h
       src/mainboard/google/volteer/variants/delbin/include/variant/gpio.h
       src/mainboard/google/volteer/variants/delbin/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/delbin/memory/Makefile.mk
       src/mainboard/google/volteer/variants/delbin/variant.c
       src/mainboard/google/volteer/variants/drobit/gpio.c
       src/mainboard/google/volteer/variants/drobit/include/variant/ec.h
       src/mainboard/google/volteer/variants/drobit/include/variant/gpio.h
       src/mainboard/google/volteer/variants/drobit/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/drobit/memory/Makefile.mk
       src/mainboard/google/volteer/variants/drobit/variant.c
       src/mainboard/google/volteer/variants/eldrid/gpio.c
       src/mainboard/google/volteer/variants/eldrid/include/variant/acpi/dptf.asl
       src/mainboard/google/volteer/variants/eldrid/include/variant/ec.h
       src/mainboard/google/volteer/variants/eldrid/memory.c
       src/mainboard/google/volteer/variants/eldrid/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/eldrid/memory/Makefile.mk
       src/mainboard/google/volteer/variants/elemi/gpio.c
       src/mainboard/google/volteer/variants/elemi/include/variant/ec.h
       src/mainboard/google/volteer/variants/elemi/include/variant/gpio.h
       src/mainboard/google/volteer/variants/elemi/memory.c
       src/mainboard/google/volteer/variants/elemi/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/elemi/memory/Makefile.mk
       src/mainboard/google/volteer/variants/halvor/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/halvor/memory/Makefile.mk
       src/mainboard/google/volteer/variants/lillipup/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/lillipup/memory/Makefile.mk
       src/mainboard/google/volteer/variants/lindar/include/variant/ec.h
       src/mainboard/google/volteer/variants/lindar/include/variant/gpio.h
       src/mainboard/google/volteer/variants/lindar/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/lindar/memory/Makefile.mk
       src/mainboard/google/volteer/variants/malefor/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/malefor/memory/Makefile.mk
       src/mainboard/google/volteer/variants/terrador/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/terrador/memory/Makefile.mk
       src/mainboard/google/volteer/variants/todor/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/todor/memory/Makefile.mk
       src/mainboard/google/volteer/variants/trondo/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/trondo/memory/Makefile.mk
       src/mainboard/google/volteer/variants/voema/include/variant/ec.h
       src/mainboard/google/volteer/variants/voema/include/variant/gpio.h
       src/mainboard/google/volteer/variants/voema/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/voema/memory/Makefile.mk
       src/mainboard/google/volteer/variants/volet/include/variant/ec.h
       src/mainboard/google/volteer/variants/volet/include/variant/gpio.h
       src/mainboard/google/volteer/variants/volet/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/volet/memory/Makefile.mk
       src/mainboard/google/volteer/variants/volteer2/gpio.c
       src/mainboard/google/volteer/variants/volteer2/include/variant/ec.h
       src/mainboard/google/volteer/variants/volteer2/include/variant/gpio.h
       src/mainboard/google/volteer/variants/volteer2/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/volteer2/memory/Makefile.mk
       src/mainboard/google/volteer/variants/volteer/gpio.c
       src/mainboard/google/volteer/variants/volteer/include/variant/ec.h
       src/mainboard/google/volteer/variants/volteer/include/variant/gpio.h
       src/mainboard/google/volteer/variants/volteer/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/volteer/memory/Makefile.mk
       src/mainboard/google/volteer/variants/voxel/memory/dram_id.generated.txt
       src/mainboard/google/volteer/variants/voxel/memory/Makefile.mk
       src/mainboard/google/zork/chromeos.c
       src/mainboard/google/zork/dsdt.asl
       src/mainboard/google/zork/ec.c
       src/mainboard/google/zork/Kconfig
       src/mainboard/google/zork/mainboard.c
       src/mainboard/google/zork/Makefile.mk
       src/mainboard/google/zork/sku_id.c
       src/mainboard/google/zork/smihandler.c
       src/mainboard/google/zork/spd/Makefile.mk
       src/mainboard/google/zork/variants/baseboard/dalboz/devicetree.cb
       src/mainboard/google/zork/variants/baseboard/dalboz/fsps.c
       src/mainboard/google/zork/variants/baseboard/dalboz/gpio.c
       src/mainboard/google/zork/variants/baseboard/dalboz/Makefile.mk
       src/mainboard/google/zork/variants/baseboard/helpers.c
       src/mainboard/google/zork/variants/baseboard/include/baseboard/acpi/thermal.asl
       src/mainboard/google/zork/variants/baseboard/include/baseboard/ec.h
       src/mainboard/google/zork/variants/baseboard/include/baseboard/gpio.h
       src/mainboard/google/zork/variants/baseboard/include/baseboard/thermal.h
       src/mainboard/google/zork/variants/baseboard/include/baseboard/variants.h
       src/mainboard/google/zork/variants/baseboard/Makefile.mk
       src/mainboard/google/zork/variants/baseboard/ramstage_common.c
       src/mainboard/google/zork/variants/baseboard/trembyle/devicetree.cb
       src/mainboard/google/zork/variants/baseboard/trembyle/fsps.c
       src/mainboard/google/zork/variants/baseboard/trembyle/gpio.c
       src/mainboard/google/zork/variants/baseboard/trembyle/Makefile.mk
       src/mainboard/google/zork/variants/berknip/gpio.c
       src/mainboard/google/zork/variants/berknip/include/variant/acpi/thermal.asl
       src/mainboard/google/zork/variants/berknip/include/variant/ec.h
       src/mainboard/google/zork/variants/berknip/include/variant/gpio.h
       src/mainboard/google/zork/variants/berknip/include/variant/thermal.h
       src/mainboard/google/zork/variants/berknip/Makefile.mk
       src/mainboard/google/zork/variants/berknip/overridetree.cb
       src/mainboard/google/zork/variants/berknip/spd/dram_id.generated.txt
       src/mainboard/google/zork/variants/berknip/spd/Makefile.mk
       src/mainboard/google/zork/variants/berknip/variant.c
       src/mainboard/google/zork/variants/dalboz/gpio.c
       src/mainboard/google/zork/variants/dalboz/include/variant/acpi/thermal.asl
       src/mainboard/google/zork/variants/dalboz/include/variant/ec.h
       src/mainboard/google/zork/variants/dalboz/include/variant/gpio.h
       src/mainboard/google/zork/variants/dalboz/include/variant/thermal.h
       src/mainboard/google/zork/variants/dalboz/Makefile.mk
       src/mainboard/google/zork/variants/dalboz/overridetree.cb
       src/mainboard/google/zork/variants/dalboz/spd/dram_id.generated.txt
       src/mainboard/google/zork/variants/dalboz/spd/Makefile.mk
       src/mainboard/google/zork/variants/dalboz/variant.c
       src/mainboard/google/zork/variants/dirinboz/gpio.c
       src/mainboard/google/zork/variants/dirinboz/include/variant/acpi/thermal.asl
       src/mainboard/google/zork/variants/dirinboz/include/variant/ec.h
       src/mainboard/google/zork/variants/dirinboz/include/variant/gpio.h
       src/mainboard/google/zork/variants/dirinboz/include/variant/thermal.h
       src/mainboard/google/zork/variants/dirinboz/Makefile.mk
       src/mainboard/google/zork/variants/dirinboz/overridetree.cb
       src/mainboard/google/zork/variants/dirinboz/spd/dram_id.generated.txt
       src/mainboard/google/zork/variants/dirinboz/spd/Makefile.mk
       src/mainboard/google/zork/variants/dirinboz/variant.c
       src/mainboard/google/zork/variants/ezkinil/gpio.c
       src/mainboard/google/zork/variants/ezkinil/include/variant/acpi/thermal.asl
       src/mainboard/google/zork/variants/ezkinil/include/variant/ec.h
       src/mainboard/google/zork/variants/ezkinil/include/variant/gpio.h
       src/mainboard/google/zork/variants/ezkinil/include/variant/thermal.h
       src/mainboard/google/zork/variants/ezkinil/Makefile.mk
       src/mainboard/google/zork/variants/ezkinil/overridetree.cb
       src/mainboard/google/zork/variants/ezkinil/spd/dram_id.generated.txt
       src/mainboard/google/zork/variants/ezkinil/spd/Makefile.mk
       src/mainboard/google/zork/variants/ezkinil/variant.c
       src/mainboard/google/zork/variants/gumboz/gpio.c
       src/mainboard/google/zork/variants/gumboz/include/variant/acpi/thermal.asl
       src/mainboard/google/zork/variants/gumboz/include/variant/ec.h
       src/mainboard/google/zork/variants/gumboz/include/variant/gpio.h
       src/mainboard/google/zork/variants/gumboz/include/variant/thermal.h
       src/mainboard/google/zork/variants/gumboz/Makefile.mk
       src/mainboard/google/zork/variants/gumboz/overridetree.cb
       src/mainboard/google/zork/variants/gumboz/spd/dram_id.generated.txt
       src/mainboard/google/zork/variants/gumboz/spd/Makefile.mk
       src/mainboard/google/zork/variants/gumboz/variant.c
       src/mainboard/google/zork/variants/morphius/gpio.c
       src/mainboard/google/zork/variants/morphius/include/variant/acpi/thermal.asl
       src/mainboard/google/zork/variants/morphius/include/variant/ec.h
       src/mainboard/google/zork/variants/morphius/include/variant/gpio.h
       src/mainboard/google/zork/variants/morphius/include/variant/thermal.h
       src/mainboard/google/zork/variants/morphius/Makefile.mk
       src/mainboard/google/zork/variants/morphius/overridetree.cb
       src/mainboard/google/zork/variants/morphius/spd/dram_id.generated.txt
       src/mainboard/google/zork/variants/morphius/spd/Makefile.mk
       src/mainboard/google/zork/variants/morphius/variant.c
       src/mainboard/google/zork/variants/shuboz/gpio.c
       src/mainboard/google/zork/variants/shuboz/include/variant/acpi/audio.asl
       src/mainboard/google/zork/variants/shuboz/include/variant/acpi/mainboard.asl
       src/mainboard/google/zork/variants/shuboz/include/variant/acpi/thermal.asl
       src/mainboard/google/zork/variants/shuboz/include/variant/ec.h
       src/mainboard/google/zork/variants/shuboz/include/variant/gpio.h
       src/mainboard/google/zork/variants/shuboz/include/variant/thermal.h
       src/mainboard/google/zork/variants/shuboz/Makefile.mk
       src/mainboard/google/zork/variants/shuboz/overridetree.cb
       src/mainboard/google/zork/variants/shuboz/spd/dram_id.generated.txt
       src/mainboard/google/zork/variants/shuboz/spd/Makefile.mk
       src/mainboard/google/zork/variants/shuboz/variant.c
       src/mainboard/google/zork/variants/trembyle/gpio.c
       src/mainboard/google/zork/variants/trembyle/include/variant/acpi/thermal.asl
       src/mainboard/google/zork/variants/trembyle/include/variant/ec.h
       src/mainboard/google/zork/variants/trembyle/include/variant/gpio.h
       src/mainboard/google/zork/variants/trembyle/include/variant/thermal.h
       src/mainboard/google/zork/variants/trembyle/Makefile.mk
       src/mainboard/google/zork/variants/trembyle/overridetree.cb
       src/mainboard/google/zork/variants/trembyle/spd/dram_id.generated.txt
       src/mainboard/google/zork/variants/trembyle/spd/Makefile.mk
       src/mainboard/google/zork/variants/vilboz/gpio.c
       src/mainboard/google/zork/variants/vilboz/include/variant/acpi/thermal.asl
       src/mainboard/google/zork/variants/vilboz/include/variant/ec.h
       src/mainboard/google/zork/variants/vilboz/include/variant/gpio.h
       src/mainboard/google/zork/variants/vilboz/include/variant/thermal.h
       src/mainboard/google/zork/variants/vilboz/Makefile.mk
       src/mainboard/google/zork/variants/vilboz/overridetree.cb
       src/mainboard/google/zork/variants/vilboz/spd/dram_id.generated.txt
       src/mainboard/google/zork/variants/vilboz/spd/Makefile.mk
       src/mainboard/google/zork/variants/vilboz/variant.c
       src/mainboard/google/zork/variants/woomax/gpio.c
       src/mainboard/google/zork/variants/woomax/include/variant/acpi/thermal.asl
       src/mainboard/google/zork/variants/woomax/include/variant/ec.h
       src/mainboard/google/zork/variants/woomax/include/variant/gpio.h
       src/mainboard/google/zork/variants/woomax/include/variant/thermal.h
       src/mainboard/google/zork/variants/woomax/Makefile.mk
       src/mainboard/google/zork/variants/woomax/overridetree.cb
       src/mainboard/google/zork/variants/woomax/spd/dram_id.generated.txt
       src/mainboard/google/zork/variants/woomax/spd/Makefile.mk
       src/mainboard/google/zork/verstage.c
       src/mainboard/hp/elitebook_820_g2/devicetree.cb
       src/mainboard/hp/elitebook_820_g2/Kconfig
       src/mainboard/hp/elitebook_820_g2/Kconfig.name
       src/mainboard/hp/elitebook_820_g2/Makefile.mk
       src/mainboard/hp/pro_3x00_series/devicetree.cb
       src/mainboard/hp/pro_3x00_series/Kconfig
       src/mainboard/hp/pro_3x00_series/Kconfig.name
       src/mainboard/hp/pro_3x00_series/Makefile.mk
       src/mainboard/hp/snb_ivb_desktops/variants/compaq_elite_8300_usdt/overridetree.cb
       src/mainboard/hp/snb_ivb_laptops/devicetree.cb
       src/mainboard/hp/snb_ivb_laptops/variants/2170p/overridetree.cb
       src/mainboard/hp/snb_ivb_laptops/variants/2560p/early_init.c
       src/mainboard/hp/snb_ivb_laptops/variants/2560p/gpio.c
       src/mainboard/hp/snb_ivb_laptops/variants/2560p/hda_verb.c
       src/mainboard/hp/snb_ivb_laptops/variants/2560p/overridetree.cb
       src/mainboard/hp/snb_ivb_laptops/variants/2570p/overridetree.cb
       src/mainboard/hp/snb_ivb_laptops/variants/2760p/overridetree.cb
       src/mainboard/hp/snb_ivb_laptops/variants/8460p/overridetree.cb
       src/mainboard/hp/snb_ivb_laptops/variants/8470p/overridetree.cb
       src/mainboard/hp/snb_ivb_laptops/variants/8560w/early_init.c
       src/mainboard/hp/snb_ivb_laptops/variants/8560w/gpio.c
       src/mainboard/hp/snb_ivb_laptops/variants/8560w/hda_verb.c
       src/mainboard/hp/snb_ivb_laptops/variants/8560w/overridetree.cb
       src/mainboard/hp/snb_ivb_laptops/variants/8770w/overridetree.cb
       src/mainboard/hp/snb_ivb_laptops/variants/folio_9470m/overridetree.cb
       src/mainboard/hp/snb_ivb_laptops/variants/probook_6360b/early_init.c
       src/mainboard/hp/snb_ivb_laptops/variants/probook_6360b/gpio.c
       src/mainboard/hp/snb_ivb_laptops/variants/probook_6360b/hda_verb.c
       src/mainboard/hp/snb_ivb_laptops/variants/probook_6360b/overridetree.cb
       src/mainboard/hp/snb_ivb_laptops/variants/revolve_810_g1/overridetree.cb
       src/mainboard/ibm/sbp1/devicetree.cb
       src/mainboard/ibm/sbp1/dsdt.asl
       src/mainboard/intel/adlrvp/ramstage.c
       src/mainboard/intel/adlrvp/smihandler.c
       src/mainboard/intel/apollolake_rvp/bootblock.c
       src/mainboard/intel/apollolake_rvp/dsdt.asl
       src/mainboard/intel/apollolake_rvp/gpio.h
       src/mainboard/intel/apollolake_rvp/romstage.c
       src/mainboard/intel/archercity_crb/devicetree.cb
       src/mainboard/intel/archercity_crb/dsdt.asl
       src/mainboard/intel/archercity_crb/include/sprsp_ac_iio.h
       src/mainboard/intel/avenuecity_crb/config/iio.c
       src/mainboard/intel/avenuecity_crb/devicetree.cb
       src/mainboard/intel/avenuecity_crb/dsdt.asl
       src/mainboard/intel/beechnutcity_crb/config/iio.c
       src/mainboard/intel/beechnutcity_crb/devicetree.cb
       src/mainboard/intel/beechnutcity_crb/dsdt.asl
       src/mainboard/intel/d510mo/devicetree.cb
       src/mainboard/intel/d510mo/early_init.c
       src/mainboard/intel/dg41wv/devicetree.cb
       src/mainboard/intel/dg41wv/early_init.c
       src/mainboard/intel/dg41wv/hda_verb.c
       src/mainboard/intel/dg43gt/devicetree.cb
       src/mainboard/intel/dg43gt/early_init.c
       src/mainboard/intel/dg43gt/hda_verb.c
       src/mainboard/intel/dq67sw/devicetree.cb
       src/mainboard/intel/harcuvar/romstage.c
       src/mainboard/intel/mtlrvp/bootblock.c
       src/mainboard/intel/mtlrvp/chromeos.c
       src/mainboard/intel/mtlrvp/dsdt.asl
       src/mainboard/intel/mtlrvp/ec.c
       src/mainboard/intel/mtlrvp/mainboard.c
       src/mainboard/intel/mtlrvp/Makefile.mk
       src/mainboard/intel/mtlrvp/romstage.c
       src/mainboard/intel/mtlrvp/smihandler.c
       src/mainboard/intel/mtlrvp/spd/Makefile.mk
       src/mainboard/intel/mtlrvp/variants/baseboard/mtlrvp_p/gpio.c
       src/mainboard/intel/mtlrvp/variants/baseboard/mtlrvp_p/include/baseboard/ec.h
       src/mainboard/intel/mtlrvp/variants/baseboard/mtlrvp_p/include/baseboard/gpio.h
       src/mainboard/intel/mtlrvp/variants/baseboard/mtlrvp_p/Makefile.mk
       src/mainboard/intel/mtlrvp/variants/baseboard/mtlrvp_p/memory/dram_id.generated.txt
       src/mainboard/intel/mtlrvp/variants/baseboard/mtlrvp_p/memory/Makefile.mk
       src/mainboard/intel/mtlrvp/variants/baseboard/mtlrvp_p/memory/memory.c
       src/mainboard/intel/mtlrvp/variants/baseboard/mtlrvp_p/ramstage.c
       src/mainboard/intel/shadowmountain/bootblock.c
       src/mainboard/intel/shadowmountain/chromeos.c
       src/mainboard/intel/shadowmountain/dsdt.asl
       src/mainboard/intel/shadowmountain/ec.c
       src/mainboard/intel/shadowmountain/smihandler.c
       src/mainboard/intel/shadowmountain/variants/baseboard/early_gpio.c
       src/mainboard/intel/shadowmountain/variants/baseboard/gpio.c
       src/mainboard/intel/shadowmountain/variants/baseboard/include/baseboard/ec.h
       src/mainboard/intel/shadowmountain/variants/baseboard/include/baseboard/gpio.h
       src/mainboard/intel/shadowmountain/variants/baseboard/include/baseboard/variants.h
       src/mainboard/intel/shadowmountain/variants/baseboard/Makefile.mk
       src/mainboard/intel/shadowmountain/variants/baseboard/memory.c
       src/mainboard/intel/tglrvp/smihandler.c
       src/mainboard/inventec/transformers/devicetree.cb
       src/mainboard/inventec/transformers/dsdt.asl
       src/mainboard/inventec/transformers/include/sprsp_ac_iio.h
       src/mainboard/inventec/transformers/ipmi.c
       src/mainboard/inventec/transformers/ipmi.h
       src/mainboard/lenovo/haswell/acpi/ec.asl
       src/mainboard/lenovo/haswell/acpi/platform.asl
       src/mainboard/lenovo/haswell/acpi/superio.asl
       src/mainboard/lenovo/haswell/dsdt.asl
       src/mainboard/lenovo/haswell/variants/t440p/mainboard.c
       src/mainboard/lenovo/l520/acpi/superio.asl
       src/mainboard/lenovo/m900_tiny/acpi/superio.asl
       src/mainboard/lenovo/s230u/acpi/superio.asl
       src/mainboard/lenovo/s230u/ec.h
       src/mainboard/lenovo/t410/acpi/superio.asl
       src/mainboard/lenovo/t410/hda_verb.c
       src/mainboard/lenovo/t420/acpi/superio.asl
       src/mainboard/lenovo/t420s/acpi/superio.asl
       src/mainboard/lenovo/t430/acpi/superio.asl
       src/mainboard/lenovo/t430s/acpi/superio.asl
       src/mainboard/lenovo/t520/acpi/superio.asl
       src/mainboard/lenovo/t530/acpi/superio.asl
       src/mainboard/lenovo/thinkcentre_a58/devicetree.cb
       src/mainboard/lenovo/thinkcentre_a58/early_init.c
       src/mainboard/lenovo/thinkcentre_a58/hda_verb.c
       src/mainboard/lenovo/x131e/acpi/superio.asl
       src/mainboard/lenovo/x1_carbon_gen1/acpi/superio.asl
       src/mainboard/lenovo/x201/acpi/superio.asl
       src/mainboard/lenovo/x201/hda_verb.c
       src/mainboard/lenovo/x220/acpi/superio.asl
       src/mainboard/lenovo/x230/acpi/superio.asl
       src/mainboard/libretrend/lt1000/bootblock.c
       src/mainboard/libretrend/lt1000/dsdt.asl
       src/mainboard/libretrend/lt1000/gpio.h
       src/mainboard/libretrend/lt1000/Makefile.mk
       src/mainboard/libretrend/lt1000/ramstage.c
       src/mainboard/libretrend/lt1000/romstage.c
       src/mainboard/msi/h81m-p33/Kconfig
       src/mainboard/msi/ms7707/acpi/platform.asl
       src/mainboard/msi/ms7707/dsdt.asl
       src/mainboard/msi/ms7d25/acpi/superio.asl
       src/mainboard/msi/ms7e06/acpi/mainboard.asl
       src/mainboard/msi/ms7e06/acpi/superio.asl
       src/mainboard/ocp/deltalake/devicetree.cb
       src/mainboard/ocp/deltalake/dsdt.asl
       src/mainboard/ocp/deltalake/ipmi.c
       src/mainboard/ocp/deltalake/ipmi.h
       src/mainboard/ocp/deltalake/Makefile.mk
       src/mainboard/ocp/deltalake/vpd.h
       src/mainboard/ocp/tiogapass/acpi/platform.asl
       src/mainboard/ocp/tiogapass/devicetree.cb
       src/mainboard/ocp/tiogapass/dsdt.asl
       src/mainboard/ocp/tiogapass/include/skxsp_tp_iio.h
       src/mainboard/ocp/tiogapass/Kconfig
       src/mainboard/ocp/tiogapass/Makefile.mk
       src/mainboard/ocp/tiogapass/ramstage.c
       src/mainboard/ocp/tiogapass/romstage.c
       src/mainboard/ocp/tiogapass/vpd.h
       src/mainboard/packardbell/ms2290/hda_verb.c
       src/mainboard/prodrive/hermes/eeprom.h
       src/mainboard/prodrive/hermes/Makefile.mk
       src/mainboard/protectli/vault_bsw/acpi/mainboard.asl
       src/mainboard/protectli/vault_bsw/acpi/superio.asl
       src/mainboard/protectli/vault_bsw/acpi_tables.c
       src/mainboard/protectli/vault_bsw/com_init.c
       src/mainboard/protectli/vault_bsw/dsdt.asl
       src/mainboard/protectli/vault_bsw/gpio.c
       src/mainboard/protectli/vault_bsw/irqroute.c
       src/mainboard/protectli/vault_bsw/irqroute.h
       src/mainboard/protectli/vault_bsw/mainboard.c
       src/mainboard/protectli/vault_bsw/Makefile.mk
       src/mainboard/protectli/vault_bsw/onboard.h
       src/mainboard/protectli/vault_bsw/ramstage.c
       src/mainboard/protectli/vault_bsw/romstage.c
       src/mainboard/protectli/vault_bsw/spi_vscc.c
       src/mainboard/protectli/vault_cml/mainboard.c
       src/mainboard/protectli/vault_kbl/bootblock.c
       src/mainboard/protectli/vault_kbl/dsdt.asl
       src/mainboard/protectli/vault_kbl/gpio.h
       src/mainboard/protectli/vault_kbl/Makefile.mk
       src/mainboard/protectli/vault_kbl/ramstage.c
       src/mainboard/protectli/vault_kbl/romstage.c
       src/mainboard/purism/librem_jsl/romstage.c
       src/mainboard/sapphire/pureplatinumh61/devicetree.cb
       src/mainboard/sapphire/pureplatinumh61/dsdt.asl
       src/mainboard/sapphire/pureplatinumh61/early_init.c
       src/mainboard/sapphire/pureplatinumh61/gpio.c
       src/mainboard/sapphire/pureplatinumh61/hda_verb.c
       src/mainboard/sapphire/pureplatinumh61/mainboard.c
       src/mainboard/sapphire/pureplatinumh61/Makefile.mk
       src/mainboard/starlabs/lite/smihandler.c
       src/mainboard/starlabs/lite/vboot.c
       src/mainboard/starlabs/starbook/vboot.c
       src/mainboard/starlabs/starlite_adl/vboot.c
       src/mainboard/supermicro/x10slm-f/acpi/platform.asl
       src/mainboard/supermicro/x10slm-f/acpi/superio.asl
       src/mainboard/supermicro/x10slm-f/bootblock.c
       src/mainboard/supermicro/x10slm-f/devicetree.cb
       src/mainboard/supermicro/x10slm-f/dsdt.asl
       src/mainboard/supermicro/x10slm-f/gpio.c
       src/mainboard/supermicro/x10slm-f/hda_verb.c
       src/mainboard/supermicro/x10slm-f/Kconfig
       src/mainboard/supermicro/x10slm-f/mainboard.c
       src/mainboard/supermicro/x10slm-f/Makefile.mk
       src/mainboard/supermicro/x9sae/acpi/superio.asl
       src/mainboard/supermicro/x9scl/acpi/platform.asl
       src/mainboard/supermicro/x9scl/acpi/superio.asl
       src/mainboard/supermicro/x9scl/dsdt.asl
       src/mainboard/ti/beaglebone/leds.c
       src/mainboard/ti/beaglebone/leds.h
Copyright: See Files: *
License: GPL-2+

Files: src/northbridge/intel/e7505/e7505.h
       src/northbridge/intel/haswell/early_dmi.c
       src/northbridge/intel/haswell/early_pcie.c
       src/northbridge/intel/haswell/native_raminit/Makefile.mk
       src/northbridge/intel/haswell/native_raminit/raminit_main.c
       src/northbridge/intel/haswell/native_raminit/raminit_native.c
       src/northbridge/intel/haswell/native_raminit/raminit_native.h
       src/northbridge/intel/haswell/native_raminit/spd_bitmunching.c
       src/northbridge/intel/haswell/vcu_mailbox.c
       src/northbridge/intel/haswell/vcu_mailbox.h
       src/northbridge/intel/i440bx/i440bx.h
       src/northbridge/intel/i440bx/Makefile.mk
       src/northbridge/intel/i440bx/raminit.c
       src/northbridge/intel/i440bx/raminit.h
       src/northbridge/intel/i440bx/romstage.c
       src/northbridge/intel/ironlake/raminit.c
       src/northbridge/intel/ironlake/raminit_tables.c
       src/northbridge/intel/ironlake/raminit_tables.h
       src/northbridge/intel/pineview/early_init.c
       src/northbridge/intel/pineview/hostbridge_regs.h
       src/northbridge/intel/pineview/pineview.h
       src/northbridge/intel/pineview/raminit.c
       src/northbridge/intel/pineview/raminit.h
       src/northbridge/intel/x4x/bootblock.c
       src/northbridge/intel/x4x/chip.h
       src/northbridge/intel/x4x/dq_dqs.c
       src/northbridge/intel/x4x/memmap.h
       src/northbridge/intel/x4x/raminit.c
       src/northbridge/intel/x4x/raminit_ddr23.c
       src/northbridge/intel/x4x/raminit_tables.c
       src/northbridge/intel/x4x/rcven.c
       src/northbridge/intel/x4x/romstage.c
Copyright: See Files: *
License: GPL-2+

Files: src/northbridge/intel/haswell/broadwell_mrc/pei_data.h
       src/northbridge/intel/haswell/haswell_mrc/pei_data.h
       src/northbridge/intel/sandybridge/pei_data.h
Copyright: See Files: *
License: BSD-3-clause

Files: src/security/tpm/tpm1_log_serialized.h
       src/security/tpm/tpm2_log_serialized.h
       src/security/tpm/tss.h
       src/security/tpm/tss/tcg-1.2/tss.c
       src/security/tpm/tss/tcg-1.2/tss_internal.h
       src/security/tpm/tss/tcg-1.2/tss_structures.h
       src/security/tpm/tss/tcg-2.0/tss.c
       src/security/tpm/tss/tcg-2.0/tss_marshaling.c
       src/security/tpm/tss/tcg-2.0/tss_marshaling.h
       src/security/tpm/tss/tcg-2.0/tss_structures.h
       src/security/tpm/tss/tss.c
       src/security/tpm/tss/vendor/cr50/cr50.c
       src/security/tpm/tss1.h
       src/security/tpm/tss2.h
       src/security/tpm/tss_errors.h
       src/security/vboot/antirollback.h
       src/security/vboot/secdata_mock.c
       src/security/vboot/secdata_tpm.c
       src/security/vboot/secdata_tpm1.c
       src/security/vboot/secdata_tpm2.c
       src/security/vboot/secdata_tpm_private.h
Copyright: See Files: *
License: BSD-3-clause

Files: src/security/intel/stm/Makefile
 src/security/intel/stm/SmmStm.c
 src/security/intel/stm/SmmStm.h
 src/security/intel/stm/StmApi.h
 src/security/intel/stm/StmPlatformResource.c
 src/security/intel/stm/StmPlatformResource.h
 src/security/intel/stm/StmPlatformSmm.c
Copyright: See Files: *
License: BSD-2-clause

Files: src/security/lockdown/lockdown.c
       src/security/lockdown/Makefile.mk
Copyright: See Files: *
License: GPL-2+

Files: src/soc/amd/cezanne/Makefile.mk
       src/soc/amd/common/block/include/amdblocks/vbios_cache.h
       src/soc/amd/glinda/Makefile.mk
       src/soc/amd/mendocino/Makefile.mk
       src/soc/amd/phoenix/Makefile.mk
       src/soc/amd/picasso/Makefile.mk
       src/soc/amd/stoneyridge/Makefile.mk
       src/soc/intel/apollolake/pdpt.c
       src/soc/intel/apollolake/pt.c
       src/soc/intel/baytrail/include/soc/efi_wrapper.h
       src/soc/intel/baytrail/include/soc/mrc_wrapper.h
       src/soc/intel/broadwell/include/soc/pei_data.h
       src/soc/nvidia/tegra124/maincpu.S
       src/soc/qualcomm/ipq40xx/blsp.c
       src/soc/qualcomm/ipq40xx/clock.c
       src/soc/qualcomm/ipq40xx/gpio.c
       src/soc/qualcomm/ipq40xx/i2c.c
       src/soc/qualcomm/ipq40xx/include/soc/blsp.h
       src/soc/qualcomm/ipq40xx/include/soc/cdp.h
       src/soc/qualcomm/ipq40xx/include/soc/clock.h
       src/soc/qualcomm/ipq40xx/include/soc/ebi2.h
       src/soc/qualcomm/ipq40xx/include/soc/gpio.h
       src/soc/qualcomm/ipq40xx/include/soc/iomap.h
       src/soc/qualcomm/ipq40xx/include/soc/ipq_timer.h
       src/soc/qualcomm/ipq40xx/include/soc/ipq_uart.h
       src/soc/qualcomm/ipq40xx/include/soc/lcc-reg.h
       src/soc/qualcomm/ipq40xx/include/soc/qup.h
       src/soc/qualcomm/ipq40xx/include/soc/spi.h
       src/soc/qualcomm/ipq40xx/include/soc/usbl_if.h
       src/soc/qualcomm/ipq40xx/lcc.c
       src/soc/qualcomm/ipq40xx/qup.c
       src/soc/qualcomm/ipq40xx/spi.c
       src/soc/qualcomm/ipq40xx/timer.c
       src/soc/qualcomm/ipq40xx/uart.c
       src/soc/qualcomm/ipq806x/gpio.c
       src/soc/qualcomm/ipq806x/gsbi.c
       src/soc/qualcomm/ipq806x/i2c.c
       src/soc/qualcomm/ipq806x/include/soc/clock.h
       src/soc/qualcomm/ipq806x/include/soc/gpio.h
       src/soc/qualcomm/ipq806x/include/soc/iomap.h
       src/soc/qualcomm/ipq806x/include/soc/ipq_timer.h
       src/soc/qualcomm/ipq806x/include/soc/ipq_uart.h
       src/soc/qualcomm/ipq806x/include/soc/lcc-reg.h
       src/soc/qualcomm/ipq806x/include/soc/qup.h
       src/soc/qualcomm/ipq806x/include/soc/usbl_if.h
       src/soc/qualcomm/ipq806x/lcc.c
       src/soc/qualcomm/ipq806x/qup.c
       src/soc/qualcomm/ipq806x/timer.c
       src/soc/qualcomm/ipq806x/uart.c
       src/soc/qualcomm/qcs405/blsp.c
       src/soc/qualcomm/qcs405/i2c.c
       src/soc/qualcomm/qcs405/include/soc/blsp.h
       src/soc/qualcomm/qcs405/include/soc/cdp.h
       src/soc/qualcomm/qcs405/include/soc/iomap.h
       src/soc/qualcomm/qcs405/include/soc/qup.h
       src/soc/qualcomm/qcs405/include/soc/spi.h
       src/soc/qualcomm/qcs405/include/soc/uart.h
       src/soc/qualcomm/qcs405/qup.c
       src/soc/qualcomm/qcs405/spi.c
       src/soc/qualcomm/qcs405/uart.c
Copyright: See Files: *
License: BSD-3-clause

Files: src/soc/sifive/fu540/ddrregs.h
 src/soc/sifive/fu540/regconfig-ctl.h
 src/soc/sifive/fu540/regconfig-phy.h
 src/soc/sifive/fu540/ux00ddr.h
 src/soc/sifive/fu740/sdram.c
Copyright: See Files: *
License: Apache-2.0 or GPL-2+

Files: src/soc/nvidia/tegra210/mipi_dsi.c
Copyright: Andrzej Hajda <a.hajda@samsung.com>
License: Expat

Files: src/soc/sifive/fu740/ddrregs.c
Copyright: 2020, SiFive, Inc
License: GPL-2

Files: src/soc/qualcomm/ipq806x/include/soc/gsbi.h
Copyright: See Files: *
License: ISC

Files: src/southbridge/amd/pi/hudson/Makefile.mk
Copyright: 2012, Advanced Micro Devices, Inc.
           2013-2014 Sage Electronic Engineering, LLC
License: BSD-3-clause

Files: src/southbridge/amd/pi/hudson/acpi/smbus.asl
Copyright: See Files: *
License: CC-PDDC

Files: src/southbridge/amd/pi/hudson/smi.c
       src/southbridge/amd/pi/hudson/smi.h
       src/southbridge/amd/pi/hudson/smihandler.c
       src/southbridge/amd/pi/hudson/smi_util.c
       src/southbridge/intel/bd82x6x/early_thermal.c
       src/southbridge/intel/common/finalize.h
       src/southbridge/intel/common/spi.c
       src/southbridge/intel/i82371eb/bootblock.c
       src/southbridge/intel/i82371eb/chip.h
       src/southbridge/intel/i82371eb/early_pm.c
       src/southbridge/intel/i82371eb/early_smbus.c
       src/southbridge/intel/i82371eb/fadt.c
       src/southbridge/intel/i82371eb/i82371eb.c
       src/southbridge/intel/i82371eb/i82371eb.h
       src/southbridge/intel/i82371eb/ide.c
       src/southbridge/intel/i82371eb/isa.c
       src/southbridge/intel/i82371eb/Makefile.mk
       src/southbridge/intel/i82371eb/smbus.c
       src/southbridge/intel/i82371eb/usb.c
       src/southbridge/intel/i82371eb/wakeup.c
       src/southbridge/intel/i82801gx/sata.h
       src/southbridge/intel/ibexpeak/early_thermal.c
       src/southbridge/intel/lynxpoint/early_pch_native.c
       src/southbridge/intel/lynxpoint/early_usb_native.c
       src/southbridge/intel/lynxpoint/hsio/common.c
       src/southbridge/intel/lynxpoint/hsio/hsio.h
       src/southbridge/intel/lynxpoint/hsio/lpt_h_cx.c
       src/southbridge/intel/lynxpoint/hsio/lpt_lp_bx.c
       src/southbridge/intel/lynxpoint/hsio/Makefile.mk
       src/southbridge/intel/lynxpoint/thermal.c
       src/southbridge/ricoh/rl5c476/rl5c476.c
       src/southbridge/ricoh/rl5c476/rl5c476.h
       src/southbridge/ti/pci1x2x/pci1x2x.c
       src/southbridge/ti/pci7420/cardbus.c
       src/southbridge/ti/pci7420/chip.h
       src/southbridge/ti/pci7420/firewire.c
       src/southbridge/ti/pci7420/pci7420.h
Copyright: See Files: *
License: GPL-2+

Files: src/superio/aspeed/ast2400/ast2400.h
       src/superio/aspeed/ast2400/Makefile.mk
       src/superio/aspeed/ast2400/superio.c
       src/superio/aspeed/common/aspeed.h
       src/superio/aspeed/common/early_config.c
       src/superio/aspeed/common/early_serial.c
       src/superio/common/generic.c
       src/superio/common/ssdt.c
       src/superio/common/ssdt.h
       src/superio/fintek/common/early_serial.c
       src/superio/fintek/common/fintek.h
       src/superio/fintek/f71808a/chip.h
       src/superio/fintek/f71808a/f71808a.h
       src/superio/fintek/f71808a/f71808a_hwm.c
       src/superio/fintek/f71808a/f71808a_multifunc.c
       src/superio/fintek/f71808a/fintek_internal.h
       src/superio/fintek/f71808a/Makefile.mk
       src/superio/fintek/f71808a/superio.c
       src/superio/fintek/f71859/f71859.h
       src/superio/fintek/f71859/Makefile.mk
       src/superio/fintek/f71859/superio.c
       src/superio/fintek/f71863fg/f71863fg.h
       src/superio/fintek/f71863fg/Makefile.mk
       src/superio/fintek/f71863fg/superio.c
       src/superio/fintek/f71869ad/chip.h
       src/superio/fintek/f71869ad/f71869ad.h
       src/superio/fintek/f71869ad/f71869ad_hwm.c
       src/superio/fintek/f71869ad/f71869ad_multifunc.c
       src/superio/fintek/f71869ad/fintek_internal.h
       src/superio/fintek/f71869ad/Makefile.mk
       src/superio/fintek/f71869ad/superio.c
       src/superio/fintek/f81803a/f81803a.h
       src/superio/fintek/f81803a/Makefile.mk
       src/superio/fintek/f81803a/superio.c
       src/superio/fintek/f81865f/f81865f.h
       src/superio/fintek/f81865f/Makefile.mk
       src/superio/fintek/f81865f/superio.c
       src/superio/fintek/f81866d/chip.h
       src/superio/fintek/f81866d/f81866d.h
       src/superio/fintek/f81866d/f81866d_hwm.c
       src/superio/fintek/f81866d/f81866d_uart.c
       src/superio/fintek/f81866d/fintek_internal.h
       src/superio/fintek/f81866d/Makefile.mk
       src/superio/fintek/f81866d/superio.c
       src/superio/ite/common/early_serial.c
       src/superio/ite/common/env_ctrl.c
       src/superio/ite/common/env_ctrl_chip.h
       src/superio/ite/common/env_ctrl.h
       src/superio/ite/common/gpio.c
       src/superio/ite/common/ite_gpio.h
       src/superio/ite/common/ite.h
       src/superio/ite/it8528e/it8528e.h
       src/superio/ite/it8528e/Makefile.mk
       src/superio/ite/it8528e/superio.c
       src/superio/ite/it8613e/chip.h
       src/superio/ite/it8613e/it8613e.h
       src/superio/ite/it8613e/Makefile.mk
       src/superio/ite/it8613e/superio.c
       src/superio/ite/it8623e/chip.h
       src/superio/ite/it8623e/it8623e.h
       src/superio/ite/it8623e/Makefile.mk
       src/superio/ite/it8623e/superio.c
       src/superio/ite/it8629e/chip.h
       src/superio/ite/it8629e/it8629e.h
       src/superio/ite/it8629e/Makefile.mk
       src/superio/ite/it8629e/superio.c
       src/superio/ite/it8659e/chip.h
       src/superio/ite/it8659e/it8659e.h
       src/superio/ite/it8659e/Makefile.mk
       src/superio/ite/it8659e/superio.c
       src/superio/ite/it8712f/it8712f.h
       src/superio/ite/it8712f/Makefile.mk
       src/superio/ite/it8712f/superio.c
       src/superio/ite/it8718f/chip.h
       src/superio/ite/it8718f/early_serial.c
       src/superio/ite/it8718f/it8718f.h
       src/superio/ite/it8718f/Makefile.mk
       src/superio/ite/it8718f/superio.c
       src/superio/ite/it8720f/chip.h
       src/superio/ite/it8720f/it8720f.h
       src/superio/ite/it8720f/Makefile.mk
       src/superio/ite/it8720f/superio.c
       src/superio/ite/it8721f/it8721f.h
       src/superio/ite/it8721f/Makefile.mk
       src/superio/ite/it8721f/superio.c
       src/superio/ite/it8728f/chip.h
       src/superio/ite/it8728f/it8728f.h
       src/superio/ite/it8728f/Makefile.mk
       src/superio/ite/it8728f/superio.c
       src/superio/ite/it8772f/chip.h
       src/superio/ite/it8772f/it8772f.h
       src/superio/ite/it8772f/Makefile.mk
       src/superio/ite/it8772f/superio.c
       src/superio/ite/it8783ef/chip.h
       src/superio/ite/it8783ef/it8783ef.h
       src/superio/ite/it8783ef/Makefile.mk
       src/superio/ite/it8783ef/superio.c
       src/superio/ite/it8784e/chip.h
       src/superio/ite/it8784e/it8784e.h
       src/superio/ite/it8784e/Makefile.mk
       src/superio/ite/it8784e/superio.c
       src/superio/ite/it8786e/chip.h
       src/superio/ite/it8786e/it8786e.h
       src/superio/ite/it8786e/Makefile.mk
       src/superio/ite/it8786e/superio.c
       src/superio/nsc/common/early_serial.c
       src/superio/nsc/common/nsc.h
       src/superio/nsc/pc87382/Makefile.mk
       src/superio/nsc/pc87382/pc87382.h
       src/superio/nsc/pc87382/superio.c
       src/superio/nsc/pc87384/Makefile.mk
       src/superio/nsc/pc87384/pc87384.h
       src/superio/nsc/pc87384/superio.c
       src/superio/nsc/pc87392/Makefile.mk
       src/superio/nsc/pc87392/pc87392.h
       src/superio/nsc/pc87392/superio.c
       src/superio/nsc/pc87417/early_init.c
       src/superio/nsc/pc87417/Makefile.mk
       src/superio/nsc/pc87417/pc87417.h
       src/superio/nsc/pc87417/superio.c
       src/superio/nuvoton/common/early_serial.c
       src/superio/nuvoton/common/hwm.h
       src/superio/nuvoton/common/nuvoton.h
       src/superio/nuvoton/nct5104d/chip.h
       src/superio/nuvoton/nct5104d/early_init.c
       src/superio/nuvoton/nct5104d/Makefile.mk
       src/superio/nuvoton/nct5104d/nct5104d.h
       src/superio/nuvoton/nct5104d/superio.c
       src/superio/nuvoton/nct5539d/nct5539d.h
       src/superio/nuvoton/nct5539d/superio.c
       src/superio/nuvoton/nct5572d/Makefile.mk
       src/superio/nuvoton/nct5572d/nct5572d.h
       src/superio/nuvoton/nct5572d/superio.c
       src/superio/nuvoton/nct6687d/Makefile.mk
       src/superio/nuvoton/nct6687d/nct6687d.h
       src/superio/nuvoton/nct6687d/superio.c
       src/superio/nuvoton/nct6776/Makefile.mk
       src/superio/nuvoton/nct6776/nct6776.h
       src/superio/nuvoton/nct6776/superio.c
       src/superio/nuvoton/nct6779d/Makefile.mk
       src/superio/nuvoton/nct6779d/nct6779d.h
       src/superio/nuvoton/nct6779d/superio.c
       src/superio/nuvoton/nct6791d/nct6791d.h
       src/superio/nuvoton/nct6791d/superio.c
       src/superio/nuvoton/npcd378/Makefile.mk
       src/superio/nuvoton/npcd378/npcd378.h
       src/superio/nuvoton/npcd378/superio.c
       src/superio/nuvoton/wpcm450/early_init.c
       src/superio/nuvoton/wpcm450/Makefile.mk
       src/superio/nuvoton/wpcm450/superio.c
       src/superio/nuvoton/wpcm450/wpcm450.h
       src/superio/smsc/lpc47m10x/early_serial.c
       src/superio/smsc/lpc47m10x/lpc47m10x.h
       src/superio/smsc/lpc47m10x/Makefile.mk
       src/superio/smsc/lpc47m10x/superio.c
       src/superio/smsc/lpc47n207/Makefile.mk
       src/superio/smsc/lpc47n217/early_serial.c
       src/superio/smsc/lpc47n217/lpc47n217.h
       src/superio/smsc/lpc47n217/Makefile.mk
       src/superio/smsc/lpc47n217/superio.c
       src/superio/smsc/smscsuperio/early_serial.c
       src/superio/smsc/smscsuperio/Makefile.mk
       src/superio/smsc/smscsuperio/smscsuperio.h
       src/superio/smsc/smscsuperio/superio.c
       src/superio/winbond/common/early_init.c
       src/superio/winbond/common/winbond.h
       src/superio/winbond/w83627dhg/early_serial.c
       src/superio/winbond/w83627dhg/Makefile.mk
       src/superio/winbond/w83627dhg/w83627dhg.h
       src/superio/winbond/w83627ehg/Makefile.mk
       src/superio/winbond/w83627ehg/w83627ehg.h
       src/superio/winbond/w83627hf/Makefile.mk
       src/superio/winbond/w83627hf/superio.c
       src/superio/winbond/w83627hf/w83627hf.h
       src/superio/winbond/w83627thg/Makefile.mk
       src/superio/winbond/w83627thg/superio.c
       src/superio/winbond/w83627thg/w83627thg.h
       src/superio/winbond/w83627uhg/Makefile.mk
       src/superio/winbond/w83627uhg/superio.c
       src/superio/winbond/w83627uhg/w83627uhg.h
       src/superio/winbond/w83667hg-a/Makefile.mk
       src/superio/winbond/w83667hg-a/superio.c
       src/superio/winbond/w83667hg-a/w83667hg-a.h
       src/superio/winbond/w83977tf/Makefile.mk
       src/superio/winbond/w83977tf/superio.c
       src/superio/winbond/w83977tf/w83977tf.h
       src/superio/winbond/wpcd376i/Makefile.mk
       src/superio/winbond/wpcd376i/superio.c
       src/superio/winbond/wpcd376i/wpcd376i.h
Copyright: See Files: *
License: GPL-2+

Files: src/vendorcode/amd/opensil/*
Copyright: 2008-2023, Advanced Micro Devices, Inc.
License: Expat

Files: src/vendorcode/amd/opensil/genoa_poc/opensil/util/kconfig/lib/*
Copyright: 2018-2019, Ulf Magnusson
           2018-2019, Nordic Semiconductor ASA and Ulf Magnusson
License: ISC

Files: src/vendorcode/amd/pi/*
       src/vendorcode/amd/psp_verstage/*
       src/vendorcode/amd/fsp/common/dmi_info.h
       src/vendorcode/amd/include/gcc-intrin.h
       src/vendorcode/amd/include/Porting.h
Copyright: 2008-2017, Advanced Micro Devices, Inc.
           2013-2014, Sage Electronic Engineering, LLC
           2014, Edward O'Callaghan <eocallaghan@alterapraxis.com>
           See Files: *
License: BSD-3-clause-AMD

Files: src/vendorcode/amd/Kconfig
       src/vendorcode/amd/Makefile.mk
       src/vendorcode/amd/fsp/cezanne/FspGuids.h
       src/vendorcode/amd/fsp/cezanne/ccx_cppc_data.h
       src/vendorcode/amd/fsp/cezanne/platform_descriptors.h
       src/vendorcode/amd/fsp/cezanne/soc_dmi_info.h
       src/vendorcode/amd/fsp/common/FspGuids.h
       src/vendorcode/amd/fsp/common/ccx_cppc_data.h
       src/vendorcode/amd/fsp/glinda/platform_descriptors.h
       src/vendorcode/amd/fsp/glinda/soc_dmi_info.h
       src/vendorcode/amd/fsp/mendocino/FspGuids.h
       src/vendorcode/amd/fsp/mendocino/ccx_cppc_data.h
       src/vendorcode/amd/fsp/mendocino/platform_descriptors.h
       src/vendorcode/amd/fsp/mendocino/soc_dmi_info.h
       src/vendorcode/amd/fsp/phoenix/platform_descriptors.h
       src/vendorcode/amd/fsp/phoenix/soc_dmi_info.h
       src/vendorcode/amd/fsp/picasso/FspGuids.h
       src/vendorcode/amd/fsp/picasso/misc_data.h
       src/vendorcode/amd/fsp/picasso/platform_descriptors.h
       src/vendorcode/amd/fsp/picasso/soc_dmi_info.h
       src/vendorcode/amd/include/cbtypes.h
       src/vendorcode/amd/opensil/Kconfig
       src/vendorcode/amd/opensil/Kconfig.debug
       src/vendorcode/amd/opensil/Makefile.mk
       src/vendorcode/amd/opensil/opensil.h
       src/vendorcode/amd/opensil/genoa_poc/Makefile.mk
       src/vendorcode/amd/opensil/genoa_poc/acpi.c
       src/vendorcode/amd/opensil/genoa_poc/filter.h
       src/vendorcode/amd/opensil/genoa_poc/memmap.c
       src/vendorcode/amd/opensil/genoa_poc/mpio/Makefile.mk
       src/vendorcode/amd/opensil/genoa_poc/mpio/chip.c
       src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h
       src/vendorcode/amd/opensil/genoa_poc/opensil_console.c
       src/vendorcode/amd/opensil/genoa_poc/opensil_console.h
       src/vendorcode/amd/opensil/genoa_poc/ramstage.c
       src/vendorcode/amd/opensil/genoa_poc/romstage.c
       src/vendorcode/amd/opensil/stub/Makefile.mk
       src/vendorcode/amd/opensil/stub/mpio/Makefile.mk
       src/vendorcode/amd/opensil/stub/mpio/chip.c
       src/vendorcode/amd/opensil/stub/mpio/chip.h
       src/vendorcode/amd/opensil/stub/ramstage.c
       src/vendorcode/amd/opensil/stub/romstage.c
       src/vendorcode/amd/pi/00670F00/agesa_headers.h
       src/vendorcode/amd/pi/00670F00/check_for_wrapper.h
Copyright: See Files: *
License: GPL-2

Files: src/vendorcode/amd/pi/00670F00/Include/Filecode.h
Copyright: See Files: *
License: CC-PDDC

Files: src/vendorcode/intel/edk2/*
Copyright: 2006-2024, Intel Corporation.
License: BSD-2-Clause-Patent

Files: src/vendorcode/intel/edk2/uefi_2.4/uefi_types.h
Copyright: 2013, Intel Corporation.
License: BSD-3-clause-Intel

Files: src/vendorcode/intel/edk2/UDK2017/*
Copyright: 2006-2018, Intel Corporation.
           2011-2016, ARM Limited.
           2017, AMD Incorporated.
           2008-2009, Apple Inc.
           2012-2015, Hewlett-Packard Development Company, L.P.
           2015-2016, Hewlett Packard Enterprise Development LP
           2017, Linaro Limited.
           2014-2017, Paulo Alcantara <pcacjr@zytor.com>
           2014, Red Hat, Inc.
License: BSD-2-Clause

Files: src/vendorcode/intel/edk2/UDK2017/MdeModulePkg/Include/Guid/VariableFormat.h
Copyright: 2006-2024, Intel Corporation.
License: BSD-2-Clause-Patent

Files: src/vendorcode/intel/fsp/*
Copyright: 2006-2024, Intel Corporation.
License: BSD-3-clause-Intel

Files: src/vendorcode/intel/fsp/fsp2_0/alderlake/FirmwareVersionInfoHob.h
       src/vendorcode/intel/fsp/fsp2_0/alderlake_n/FirmwareVersionInfoHob.h
       src/vendorcode/intel/fsp/fsp2_0/alderlake_n/FspProducerDataHeader.h
       src/vendorcode/intel/fsp/fsp2_0/cooperlake_sp/FirmwareVersionInfoHob.h
       src/vendorcode/intel/fsp/fsp1_1/IntelFspPkg/Include/FspApi.h
       src/vendorcode/intel/fsp/fsp1_1/IntelFspPkg/Include/FspInfoHeader.h
       src/vendorcode/intel/fsp/fsp2_0/jasperlake/MemInfoHob.h
       src/vendorcode/intel/fsp/fsp2_0/meteorlake/x86_32/FirmwareVersionInfo.h
       src/vendorcode/intel/fsp/fsp2_0/meteorlake/x86_32/FspProducerDataHeader.h
       src/vendorcode/intel/fsp/fsp2_0/meteorlake/x86_32/MemInfoHob.h
       src/vendorcode/intel/fsp/fsp2_0/meteorlake/x86_64/FspProducerDataHeader.h
       src/vendorcode/intel/fsp/fsp2_0/meteorlake/x86_64/MemInfoHob.h
       src/vendorcode/intel/fsp/fsp2_0/raptorlake/FirmwareVersionInfoHob.h
       src/vendorcode/intel/fsp/fsp2_0/raptorlake/MemInfoHob.h
       src/vendorcode/intel/fsp/fsp2_0/pantherlake/FirmwareVersionInfo.h
       src/vendorcode/intel/fsp/fsp2_0/pantherlake/FspProducerDataHeader.h
       src/vendorcode/intel/fsp/fsp2_0/pantherlake/MemInfoHob.h
       src/vendorcode/intel/fsp/fsp2_0/twinlake/FirmwareVersionInfoHob.h
       src/vendorcode/intel/fsp/fsp2_0/twinlake/FspProducerDataHeader.h
       src/vendorcode/intel/fsp/fsp2_0/twinlake/MemInfoHob.h
Copyright: 1999-2024, Intel Corporation.
License: BSD-2-Clause

Files: src/vendorcode/intel/fsp/fsp2_0/meteorlake/x86_64/FirmwareVersionInfo.h
       src/vendorcode/intel/fsp/fsp2_0/sapphirerapids_sp/FirmwareVersionInfoHob.h
       src/vendorcode/intel/fsp/fsp2_0/alderlake/MemInfoHob.h
       src/vendorcode/intel/fsp/fsp2_0/alderlake_n/MemInfoHob.h
Copyright: 2015-2022, Intel Corporation.
License: BSD-2-Clause-Patent

Files: src/vendorcode/intel/fsp/fsp_header.h
       src/vendorcode/intel/fsp/fsp2_0/IntelFspPkg/Include/FspInfoHeader.h
Copyright: See Files: *
License: GPL-2

Files: src/vendorcode/cavium/*
Copyright: 2003-2017  Cavium Inc. (support@cavium.com). All rights reserved.
License: BSD-3-clause-Cavium-US-export

Files: src/vendorcode/cavium/bdk/lame_string.c
       src/vendorcode/cavium/bdk/libbdk-hal/bdk-config.c
       src/vendorcode/cavium/include/bdk/lame_string.h
       src/vendorcode/cavium/include/bdk/bdk-coreboot.h
       src/vendorcode/cavium/include/bdk/bdk-minimal.h
       src/vendorcode/cavium/include/bdk/bdk.h
Copyright: 2003-2017  Cavium Inc. (support@cavium.com). All rights reserved.
           2017-present Facebook, Inc.
License: BSD-3-clause

Files: src/vendorcode/cavium/Kconfig
       src/vendorcode/cavium/Makefile.mk
       src/vendorcode/cavium/include/bdk/bdk-devicetree.h
Copyright: See Files: *
License: GPL-2

Files: src/vendorcode/google/chromeos/cse_board_reset.c
Copyright: See Files: *
License: GPL-2+

Files: src/vendorcode/mediatek/mt8192/*
       src/vendorcode/mediatek/mt8195/*
Copyright: See Files: *
License: BSD-3-clause

Files: src/vendorcode/wuffs/wuffs-v0.4.c
Copyright: 2017 The Wuffs Authors.
License: Apache-2.0 or Expat

Files: util/abuild/abuild
Copyright: See Files: *
License: GPL
 This file is subject to the terms and conditions of the GNU General
 Public License
Comment:
 On Debian systems, the complete text of the GNU General Public License
 version 1 can be found in "/usr/share/common-licenses/GPL-1".

Files: util/nvidia/cbootimage/*
Copyright: 2012-2016, NVIDIA CORPORATION.
License: GPL-2

Files: util/amdfwtool/Makefile
       util/amdfwtool/Makefile.mk
       util/amdtools/update_efs_spi_speed
       util/cbfstool/elogtool.c
       util/cbfstool/eventlog.c
       util/cbfstool/eventlog.h
       util/cbfstool/flashmap/fmap.c
       util/cbfstool/flashmap/fmap.h
       util/cbfstool/flashmap/kv_pair.c
       util/cbfstool/flashmap/kv_pair.h
       util/cbfstool/flashmap/valstr.c
       util/cbfstool/flashmap/valstr.h
       util/cbfstool/tests/conftest.py
       util/cbfstool/tests/elogtool_test.py
       util/exynos/fixed_cksum.py
       util/exynos/variable_cksum.py
       util/ifdtool/Makefile.mk
       util/nvramtool/hexdump.c
       util/nvramtool/hexdump.h
       util/qemu/Makefile.mk
       util/qualcomm/createxbl.py
       util/qualcomm/ipqheader.py
       util/qualcomm/mbn_tools.py
       util/scripts/capture_commands.sh
       util/qualcomm/mbncat.py
       util/qualcomm/qgpt.py
Copyright: See File: *
License: BSD-3-clause

Files: util/kconfig/conf.c
       util/kconfig/confdata.c
       util/kconfig/expr.c
       util/kconfig/expr.h
       util/kconfig/images.c
       util/kconfig/images.h
       util/kconfig/lexer.l
       util/kconfig/lkc.h
       util/kconfig/mconf.c
       util/kconfig/menu.c
       util/kconfig/parser.y
       util/kconfig/patches/0015-fix-incorrect-spdx-strings.patch
       util/kconfig/qconf.h
       util/kconfig/symbol.c
Copyright: 2002, Roman Zippel <zippel@linux-m68k.org>
License: GPL-2

Files: util/bincfg/bincfg.h
       util/bincfg/bincfg.l
       util/bincfg/bincfg.y
       util/bincfg/gbe-82579LM.set
       util/bincfg/gbe-82579LM.spec
       util/bincfg/gbe-ich9m.set
       util/bincfg/ifd-x200.set
       util/cavium/devicetree_convert.py
       util/me_cleaner/me_cleaner.py
       util/spdtool/spdtool.py
       util/bincfg/gbe-ich9m.spec
       util/bincfg/ifd-x200.spec
       util/me_cleaner/setup.py
Copyright: See Files: *
License: GPL-3+

Files: util/cbfstool/lz4/lib/lz4.c
       util/cbfstool/lz4/lib/lz4.h
       util/cbfstool/lz4/lib/lz4frame.c
       util/cbfstool/lz4/lib/lz4frame.h
       util/cbfstool/lz4/lib/lz4frame_static.h
       util/cbfstool/lz4/lib/lz4hc.c
       util/cbfstool/lz4/lib/lz4hc.h
       util/cbfstool/lz4/lib/xxhash.h
       util/cbfstool/lz4/Makefile
       util/cbfstool/lz4/lib/liblz4.pc.in
Copyright: 2011-2015, Yann Collet.
License: BSD-2-clause

Files: util/cbfstool/fmd_parser.c_shipped
       util/cbfstool/fmd_parser.h_shipped
       util/kconfig/parser.tab.c_shipped
       util/kconfig/parser.tab.h_shipped
       util/sconfig/sconfig.tab.c_shipped
       util/sconfig/sconfig.tab.h_shipped
       util/bincfg/bincfg.tab.c_shipped
       util/bincfg/bincfg.tab.h_shipped
Copyright: 1984-2021, Free Software Foundation,
License: GPL-3+ with Bison exception

Files: util/cbfstool/ProcessorBind.h
       util/rockchip/make_idb.py
       util/scripts/ucode_h_to_bin.sh
       util/vgabios/device.c
Copyright: See Files: *
License: BSD-2-clause

Files: util/kconfig/regex.c
       util/kconfig/regex.h
Copyright: 1985-1993, Free Software Foundation, Inc.
License: GPL-2+

Files: util/lint/remccoms3.sed
Copyright: NONE
License: public-domain
 Taken from http://sed.sourceforge.net/grabbag/scripts/remccoms3.sed
 According to http://sed.sourceforge.net/grabbag/ it's in the public domain

Files: util/nvidia/cbootimage/src/aes_ref.c
Copyright: 2012, NVIDIA CORPORATION.
           Karl Malbrain
License: GPL-2 or public-domain
 This work, including the source code, documentation
 and related data, is placed into the public domain.
 The original author is Karl Malbrain.

Files: util/scripts/find-unused-kconfig-symbols.sh
       util/scripts/no-fsf-addresses.sh
Copyright: See Files: *
License: ISC

Files: util/amdtools/k8-compare-pci-space.pl
       util/amdtools/k8-interpret-extended-memory-settings.pl
Copyright: 2009 Ward Vandewege <ward\@jhvc.com>
License: GPL-3

Files: util/abuild/getopt.c
       util/crossgcc/getopt.c
Copyright: 2003-2010, The DragonFly Project.
License: BSD-3-clause-DragonFly

Files: util/gitconfig/commit-msg
Copyright: See Files: *
License: Apache-2.0

Files: util/gitconfig/test/*
Copyright: See Files: *
License: GPL-3+

Files: util/x86/x86_page_tables.go
Copyright: 2018, Generated Code
License: BSD-3-clause or GPL-2

Files: util/lint/checkpatch.pl
Copyright: 2001, Dave Jones. (the file handling bit)
  2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
  2007-2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
  2008-2010, Andy Whitcroft <apw@canonical.com>
  2010-2018, Joe Perches <joe@perches.com>
License: GPL-2

Files: util/cbfstool/elf.h
Copyright: See Files: *
License: LGPL-2.1+
Comment:
 On Debian systems, the complete text of the GNU Lesser General Public License
 version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.

Files: util/marvell/doimage_mv/*
Copyright: Marvell International Ltd. and its affiliates
License: GPL-2

Files: debian/*
Copyright: 2019-2020 Gürkan Myczko <gurkan@phys.ethz.ch>
           2020 Federico Ceratto <federico@debian.org>
           2022 Bastian Germann
           2024-2025 Ahmad Khalifa
License: GPL-2+

License: CC-PDDC
 The person or persons who have associated work with this document (the
 "Dedicator" or "Certifier") hereby either (a) certifies that, to the
 best of his knowledge, the work of authorship identified is in the
 public domain of the country from which the work is published, or (b)
 hereby dedicates whatever copyright the dedicators holds in the work of
 authorship identified below (the "Work") to the public domain. A
 certifier, moreover, dedicates any copyright interest he may have in the
 associated work, and for these purposes, is described as a "dedicator"
 below.
 .
 A certifier has taken reasonable steps to verify the copyright status of
 this work. Certifier recognizes that his good faith efforts may not
 shield him from liability if in fact the work certified is not in the
 public domain.
 .
 Dedicator makes this dedication for the benefit of the public at large
 and to the detriment of the Dedicator's heirs and successors. Dedicator
 intends this dedication to be an overt act of relinquishment in
 perpetuity of all present and future rights under copyright law, whether
 vested or contingent, in the Work. Dedicator understands that such
 relinquishment of all rights includes the relinquishment of all rights
 to enforce (by lawsuit or otherwise) those copyrights in the Work.
 .
 Dedicator recognizes that, once placed in the public domain, the Work
 may be freely reproduced, distributed, transmitted, used, modified,
 built upon, or otherwise exploited by anyone for any purpose, commercial
 or non-commercial, and in any way, including by methods that have not
 yet been invented or conceived.

License: ISC
 Permission to use, copy, modify, and/or distribute this software for
 any purpose with or without fee is hereby granted, provided that the
 above copyright notice and this permission notice appear in all copies.
 .
 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
 WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
 OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

License: BSD-3-clause
 Redistribution and use in source and binary forms, with or without modification,
 are permitted provided that the following conditions are met:
 .
 1. Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
 .
 2. Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.
 .
 3. Neither the name of the copyright holder nor the names of its contributors
    may be used to endorse or promote products derived from this software without
    specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: BSD-3-clause-AMD
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
     * Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
     * Neither the name of Advanced Micro Devices, Inc. nor the names of
       its contributors may be used to endorse or promote products derived
       from this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: BSD-3-clause-author
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 .
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. Neither the name of the author nor the names of other contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: BSD-3-clause-Intel
  Redistribution and use in source and binary forms, with or without modification,
  are permitted provided that the following conditions are met:
 .
  * Redistributions of source code must retain the above copyright notice, this
    list of conditions and the following disclaimer.
  * Redistributions in binary form must reproduce the above copyright notice, this
    list of conditions and the following disclaimer in the documentation and/or
    other materials provided with the distribution.
  * Neither the name of Intel Corporation nor the names of its contributors may
    be used to endorse or promote products derived from this software without
    specific prior written permission.
 .
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  THE POSSIBILITY OF SUCH DAMAGE.

License: BSD-3-clause-project
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. Neither the name of the project nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSD-3-clause-DragonFly
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in
    the documentation and/or other materials provided with the
    distribution.
 3. Neither the name of The DragonFly Project nor the names of its
    contributors may be used to endorse or promote products derived
    from this software without specific, prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
 COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSD-3-clause-Google
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
 met:
 .
    * Redistributions of source code must retain the above copyright
 notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above
 copyright notice, this list of conditions and the following disclaimer
 in the documentation and/or other materials provided with the
 distribution.
    * Neither the name of Google Inc. nor the names of its
 contributors may be used to endorse or promote products derived from
 this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: BSD-3-clause-Linaro
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
     * Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
     * Neither the name of the Linaro nor the
       names of its contributors may be used to endorse or promote products
       derived from this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE,
 DATA, OR PROFITS ; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: BSD-3-clause-Linux-Foundation
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
 met:
     * Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above
       copyright notice, this list of conditions and the following
       disclaimer in the documentation and/or other materials provided
       with the distribution.
     * Neither the name of The Linux Foundation nor the names of its
       contributors may be used to endorse or promote products derived
       from this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
 ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
 IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: BSD-3-clause-UC
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSD-3-clause-Cavium-US-export
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
 met:
 .
   * Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
 .
   * Redistributions in binary form must reproduce the above
     copyright notice, this list of conditions and the following
     disclaimer in the documentation and/or other materials provided
     with the distribution.
 .
   * Neither the name of Cavium Inc. nor the names of
     its contributors may be used to endorse or promote products
     derived from this software without specific prior written
     permission.
 .
 This Software, including technical data, may be subject to U.S. export
 control laws, including the U.S. Export Administration Act and its
 associated regulations, and may be subject to export or import
 regulations in other countries.
 .
 TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
 AND WITH ALL FAULTS AND CAVIUM INC. MAKES NO PROMISES, REPRESENTATIONS OR
 WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT
 TO THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY
 REPRESENTATION OR DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT
 DEFECTS, AND CAVIUM SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES
 OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR
 PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT,
 QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE  RISK
 ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE LIES WITH YOU.

License: Expat
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the
 "Software"), to deal in the Software without restriction, including
 without limitation the rights to use, copy, modify, merge, publish,
 distribute, sub license, and/or sell copies of the Software, and to
 permit persons to whom the Software is furnished to do so, subject to
 the following conditions:
 .
 The above copyright notice and this permission notice (including the
 next paragraph) shall be included in all copies or substantial portions
 of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
 THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
 USE OR OTHER DEALINGS IN THE SOFTWARE.

License: GPL-3+ with Bison exception
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.
 .
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
 .
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 .
   As a special exception, you may create a larger work that contains
   part or all of the Bison parser skeleton and distribute that work
   under terms of your choice, so long as that work isn't itself a
   parser generator using the skeleton or a modified version thereof
   as a parser skeleton.  Alternatively, if you modify or redistribute
   the parser skeleton itself, you may (at your option) remove this
   special exception, which will cause the skeleton and the resulting
   Bison output files to be licensed under the GNU General Public
   License without this special exception.
 .
   This special exception was added by the Free Software Foundation in
   version 2.2 of Bison.

License: GPL-3+ with GCC Runtime Library Exception
 GCC is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 3, or (at your option) any later
 version.
 .
 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
 WARRANTY; without even the implied warranty of MERCHANTABILITY or
 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 for more details.
 .
 On Debian systems, the complete text of the GNU General
 Public License can be found in `/usr/share/common-licenses/GPL-3'.
 .
 Under Section 7 of GPL version 3, you are granted additional
 permissions described in the GCC Runtime Library Exception, version
 3.1, as published by the Free Software Foundation.
 .
 GCC RUNTIME LIBRARY EXCEPTION
 .
 Version 3.1, 31 March 2009
 .
 Copyright (C) 2009 Free Software Foundation, Inc. <http://fsf.org/>
 .
 Everyone is permitted to copy and distribute verbatim copies of this
 license document, but changing it is not allowed.
 .
 This GCC Runtime Library Exception ("Exception") is an additional
 permission under section 7 of the GNU General Public License, version
 3 ("GPLv3"). It applies to a given file (the "Runtime Library") that
 bears a notice placed by the copyright holder of the file stating that
 the file is governed by GPLv3 along with this Exception.
 .
 When you use GCC to compile a program, GCC may combine portions of
 certain GCC header files and runtime libraries with the compiled
 program. The purpose of this Exception is to allow compilation of
 non-GPL (including proprietary) programs to use, in this way, the
 header files and runtime libraries covered by this Exception.
 .
 0. Definitions.
 .
 A file is an "Independent Module" if it either requires the Runtime
 Library for execution after a Compilation Process, or makes use of an
 interface provided by the Runtime Library, but is not otherwise based
 on the Runtime Library.
 .
 "GCC" means a version of the GNU Compiler Collection, with or without
 modifications, governed by version 3 (or a specified later version) of
 the GNU General Public License (GPL) with the option of using any
 subsequent versions published by the FSF.
 .
 "GPL-compatible Software" is software whose conditions of propagation,
 modification and use would permit combination with GCC in accord with
 the license of GCC.
 .
 "Target Code" refers to output from any compiler for a real or virtual
 target processor architecture, in executable form or suitable for
 input to an assembler, loader, linker and/or execution
 phase. Notwithstanding that, Target Code does not include data in any
 format that is used as a compiler intermediate representation, or used
 for producing a compiler intermediate representation.
 .
 The "Compilation Process" transforms code entirely represented in
 non-intermediate languages designed for human-written code, and/or in
 Java Virtual Machine byte code, into Target Code. Thus, for example,
 use of source code generators and preprocessors need not be considered
 part of the Compilation Process, since the Compilation Process can be
 understood as starting with the output of the generators or
 preprocessors.
 .
 A Compilation Process is "Eligible" if it is done using GCC, alone or
 with other GPL-compatible software, or if it is done without using any
 work based on GCC. For example, using non-GPL-compatible Software to
 optimize any GCC intermediate representations would not qualify as an
 Eligible Compilation Process.
 .
 1. Grant of Additional Permission.
 .
 You have permission to propagate a work of Target Code formed by
 combining the Runtime Library with Independent Modules, even if such
 propagation would otherwise violate the terms of GPLv3, provided that
 all Target Code was generated by Eligible Compilation Processes. You
 may then convey such a combination under terms of your choice,
 consistent with the licensing of the Independent Modules.
 .
 2. No Weakening of GCC Copyleft.
 .
 The availability of this Exception does not imply any general
 presumption that third-party software is unaffected by the copyleft
 requirements of the license of GCC.

License: BSD-2-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSD-2-clause-Patent
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 .
 Subject to the terms and conditions of this license, each copyright holder
 and contributor hereby grants to those receiving rights under this license
 a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable
 (except for failure to satisfy the conditions of this license) patent license
 to make, have made, use, offer to sell, sell, import, and otherwise transfer
 this software, where such license applies only to those patent claims,
 already acquired or hereafter acquired, licensable by such copyright holder
 or contributor that are necessarily infringed by:
 .
 (a) their Contribution(s) (the licensed copyrights of copyright holders and
     non-copyrightable additions of contributors, in source or binary form)
     alone; or
 .
 (b) combination of their Contribution(s) with the work of authorship to which
 such Contribution(s) was added by such copyright holder or contributor, if,
 at the time the Contribution is added, such addition causes such combination
 to be necessarily infringed. The patent license shall not apply to any other
 combinations which include the Contribution.
 .
 Except as expressly stated above, no rights or licenses from any copyright
 holder or contributor is granted under this license, whether expressly,
 by implication, estoppel or otherwise.
 .
 DISCLAIMER
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSD-4-Clause-UC
 Copyright [various years] The Regents of the University of California.
 All rights reserved.
 .
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
 met:
 .
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. All advertising materials mentioning features or use of this software
    must display the following acknowledgement: This product includes
    software developed by the University of California, Berkeley and its
    contributors.
 4. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 THE POSSIBILITY OF SUCH DAMAGE.


License: HPND-sell-variant
 Permission to use, copy, modify, distribute, and sell this software and
 its documentation for any purpose is hereby granted without fee,
 provided that the above copyright notice appear in all copies and that
 both that copyright notice and this permission notice appear in
 supporting documentation, and that the name of the authors not be used
 in advertising or publicity pertaining to distribution of the software
 without specific, written prior permission.  The authors makes no
 representations about the suitability of this software for any purpose.
 It is provided "as is" without express or implied warranty.
 .
 THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
 EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
 USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
 OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 PERFORMANCE OF THIS SOFTWARE.

License: CC-BY-4.0
 By exercising the Licensed Rights (defined below), You accept and agree
 to be bound by the terms and conditions of this Creative Commons
 Attribution 4.0 International Public License ("Public
 License"). To the extent this Public License may be interpreted as a
 contract, You are granted the Licensed Rights in consideration of Your
 acceptance of these terms and conditions, and the Licensor grants You
 such rights in consideration of benefits the Licensor receives from
 making the Licensed Material available under these terms and
 conditions.
 .
 Section 1 -- Definitions.
 .
 a. Adapted Material means material subject to Copyright and Similar
 Rights that is derived from or based upon the Licensed Material
 and in which the Licensed Material is translated, altered,
 arranged, transformed, or otherwise modified in a manner requiring
 permission under the Copyright and Similar Rights held by the
 Licensor. For purposes of this Public License, where the Licensed
 Material is a musical work, performance, or sound recording,
 Adapted Material is always produced where the Licensed Material is
 synched in timed relation with a moving image.
 .
 b. Adapter's License means the license You apply to Your Copyright
 and Similar Rights in Your contributions to Adapted Material in
 accordance with the terms and conditions of this Public License.
 .
 c. Copyright and Similar Rights means copyright and/or similar rights
 closely related to copyright including, without limitation,
 performance, broadcast, sound recording, and Sui Generis Database
 Rights, without regard to how the rights are labeled or
 categorized. For purposes of this Public License, the rights
 specified in Section 2(b)(1)-(2) are not Copyright and Similar
 Rights.
 .
 d. Effective Technological Measures means those measures that, in the
 absence of proper authority, may not be circumvented under laws
 fulfilling obligations under Article 11 of the WIPO Copyright
 Treaty adopted on December 20, 1996, and/or similar international
 agreements.
 .
 e. Exceptions and Limitations means fair use, fair dealing, and/or
 any other exception or limitation to Copyright and Similar Rights
 that applies to Your use of the Licensed Material.
 .
 f. Licensed Material means the artistic or literary work, database,
 or other material to which the Licensor applied this Public
 License.
 .
 g. Licensed Rights means the rights granted to You subject to the
 terms and conditions of this Public License, which are limited to
 all Copyright and Similar Rights that apply to Your use of the
 Licensed Material and that the Licensor has authority to license.
 .
 h. Licensor means the individual(s) or entity(ies) granting rights
 under this Public License.
 .
 i. Share means to provide material to the public by any means or
 process that requires permission under the Licensed Rights, such
 as reproduction, public display, public performance, distribution,
 dissemination, communication, or importation, and to make material
 available to the public including in ways that members of the
 public may access the material from a place and at a time
 individually chosen by them.
 .
 j. Sui Generis Database Rights means rights other than copyright
 resulting from Directive 96/9/EC of the European Parliament and of
 the Council of 11 March 1996 on the legal protection of databases,
 as amended and/or succeeded, as well as other essentially
 equivalent rights anywhere in the world.
 .
 k. You means the individual or entity exercising the Licensed Rights
 under this Public License. Your has a corresponding meaning.
 .
 Section 2 -- Scope.
 .
 a. License grant.
 .
 1. Subject to the terms and conditions of this Public License,
 the Licensor hereby grants You a worldwide, royalty-free,
 non-sublicensable, non-exclusive, irrevocable license to
 exercise the Licensed Rights in the Licensed Material to:
 .
 a. reproduce and Share the Licensed Material, in whole or
 in part; and
 .
 b. produce, reproduce, and Share Adapted Material.
 .
 2. Exceptions and Limitations. For the avoidance of doubt, where
 Exceptions and Limitations apply to Your use, this Public
 License does not apply, and You do not need to comply with
 its terms and conditions.
 .
 3. Term. The term of this Public License is specified in Section
 6(a).
 .
 4. Media and formats; technical modifications allowed. The
 Licensor authorizes You to exercise the Licensed Rights in
 all media and formats whether now known or hereafter created,
 and to make technical modifications necessary to do so. The
 Licensor waives and/or agrees not to assert any right or
 authority to forbid You from making technical modifications
 necessary to exercise the Licensed Rights, including
 technical modifications necessary to circumvent Effective
 Technological Measures. For purposes of this Public License,
 simply making modifications authorized by this Section 2(a)
 (4) never produces Adapted Material.
 .
 5. Downstream recipients.
 .
 a. Offer from the Licensor -- Licensed Material. Every
 recipient of the Licensed Material automatically
 receives an offer from the Licensor to exercise the
 Licensed Rights under the terms and conditions of this
 Public License.
 .
 b. No downstream restrictions. You may not offer or impose
 any additional or different terms or conditions on, or
 apply any Effective Technological Measures to, the
 Licensed Material if doing so restricts exercise of the
 Licensed Rights by any recipient of the Licensed
 Material.
 .
 6. No endorsement. Nothing in this Public License constitutes or
 may be construed as permission to assert or imply that You
 are, or that Your use of the Licensed Material is, connected
 with, or sponsored, endorsed, or granted official status by,
 the Licensor or others designated to receive attribution as
 provided in Section 3(a)(1)(A)(i).
 .
 b. Other rights.
 .
 1. Moral rights, such as the right of integrity, are not
 licensed under this Public License, nor are publicity,
 privacy, and/or other similar personality rights; however, to
 the extent possible, the Licensor waives and/or agrees not to
 assert any such rights held by the Licensor to the limited
 extent necessary to allow You to exercise the Licensed
 Rights, but not otherwise.
 .
 2. Patent and trademark rights are not licensed under this
 Public License.
 .
 3. To the extent possible, the Licensor waives any right to
 collect royalties from You for the exercise of the Licensed
 Rights, whether directly or through a collecting society
 under any voluntary or waivable statutory or compulsory
 licensing scheme. In all other cases the Licensor expressly
 reserves any right to collect such royalties.
 .
 Section 3 -- License Conditions.
 .
 Your exercise of the Licensed Rights is expressly made subject to the
 following conditions.
 .
 a. Attribution.
 .
 1. If You Share the Licensed Material (including in modified
 form), You must:
 .
 a. retain the following if it is supplied by the Licensor
 with the Licensed Material:
 .
 i. identification of the creator(s) of the Licensed
 Material and any others designated to receive
 attribution, in any reasonable manner requested by
 the Licensor (including by pseudonym if
 designated);
 .
 ii. a copyright notice;
 .
 iii. a notice that refers to this Public License;
 .
 iv. a notice that refers to the disclaimer of
 warranties;
 .
 v. a URI or hyperlink to the Licensed Material to the
 extent reasonably practicable;
 .
 b. indicate if You modified the Licensed Material and
 retain an indication of any previous modifications; and
 .
 c. indicate the Licensed Material is licensed under this
 Public License, and include the text of, or the URI or
 hyperlink to, this Public License.
 .
 2. You may satisfy the conditions in Section 3(a)(1) in any
 reasonable manner based on the medium, means, and context in
 which You Share the Licensed Material. For example, it may be
 reasonable to satisfy the conditions by providing a URI or
 hyperlink to a resource that includes the required
 information.
 .
 3. If requested by the Licensor, You must remove any of the
 information required by Section 3(a)(1)(A) to the extent
 reasonably practicable.
 .
 4. If You Share Adapted Material You produce, the Adapter's
 License You apply must not prevent recipients of the Adapted
 Material from complying with this Public License.
 .
 Section 4 -- Sui Generis Database Rights.
 .
 Where the Licensed Rights include Sui Generis Database Rights that
 apply to Your use of the Licensed Material:
 .
 a. for the avoidance of doubt, Section 2(a)(1) grants You the right
 to extract, reuse, reproduce, and Share all or a substantial
 portion of the contents of the database;
 .
 b. if You include all or a substantial portion of the database
 contents in a database in which You have Sui Generis Database
 Rights, then the database in which You have Sui Generis Database
 Rights (but not its individual contents) is Adapted Material; and
 .
 c. You must comply with the conditions in Section 3(a) if You Share
 all or a substantial portion of the contents of the database.
 .
 For the avoidance of doubt, this Section 4 supplements and does not
 replace Your obligations under this Public License where the Licensed
 Rights include other Copyright and Similar Rights.
 .
 Section 5 -- Disclaimer of Warranties and Limitation of Liability.
 .
 a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
 EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
 AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
 ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
 IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
 WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
 PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
 ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
 KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
 ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
 .
 b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
 TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
 NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
 INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
 COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
 USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
 ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
 DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
 IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
 .
 c. The disclaimer of warranties and limitation of liability provided
 above shall be interpreted in a manner that, to the extent
 possible, most closely approximates an absolute disclaimer and
 waiver of all liability.
 .
 Section 6 -- Term and Termination.
 .
 a. This Public License applies for the term of the Copyright and
 Similar Rights licensed here. However, if You fail to comply with
 this Public License, then Your rights under this Public License
 terminate automatically.
 .
 b. Where Your right to use the Licensed Material has terminated under
 Section 6(a), it reinstates:
 .
 1. automatically as of the date the violation is cured, provided
 it is cured within 30 days of Your discovery of the
 violation; or
 .
 2. upon express reinstatement by the Licensor.
 .
 For the avoidance of doubt, this Section 6(b) does not affect any
 right the Licensor may have to seek remedies for Your violations
 of this Public License.
 .
 c. For the avoidance of doubt, the Licensor may also offer the
 Licensed Material under separate terms or conditions or stop
 distributing the Licensed Material at any time; however, doing so
 will not terminate this Public License.
 .
 d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
 License.
 .
 Section 7 -- Other Terms and Conditions.
 .
 a. The Licensor shall not be bound by any additional or different
 terms or conditions communicated by You unless expressly agreed.
 .
 b. Any arrangements, understandings, or agreements regarding the
 Licensed Material not stated herein are separate from and
 independent of the terms and conditions of this Public License.
 .
 Section 8 -- Interpretation.
 .
 a. For the avoidance of doubt, this Public License does not, and
 shall not be interpreted to, reduce, limit, restrict, or impose
 conditions on any use of the Licensed Material that could lawfully
 be made without permission under this Public License.
 .
 b. To the extent possible, if any provision of this Public License is
 deemed unenforceable, it shall be automatically reformed to the
 minimum extent necessary to make it enforceable. If the provision
 cannot be reformed, it shall be severed from this Public License
 without affecting the enforceability of the remaining terms and
 conditions.
 .
 c. No term or condition of this Public License will be waived and no
 failure to comply consented to unless expressly agreed to by the
 Licensor.
 .
 d. Nothing in this Public License constitutes or may be interpreted
 as a limitation upon, or waiver of, any privileges and immunities
 that apply to the Licensor or You, including from the legal
 processes of any jurisdiction or authority.

License: CPL-1
                     Common Public License Version 1.0
 .
 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC
 LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
 CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
 .
 1. DEFINITIONS
 .
 "Contribution" means:
 .
 a) in the case of the initial Contributor, the initial code and
 documentation distributed under this Agreement, and
 .
 b) in the case of each subsequent Contributor:
 .
 i) changes to the Program, and
 .
 ii) additions to the Program;
 .
 where such changes and/or additions to the Program originate from and are
 distributed by that particular Contributor. A Contribution 'originates' from a
 Contributor if it was added to the Program by such Contributor itself or anyone
 acting on such Contributor's behalf. Contributions do not include additions to
 the Program which: (i) are separate modules of software distributed in
 conjunction with the Program under their own license agreement, and (ii) are not
 derivative works of the Program.
 .
 "Contributor" means any person or entity that distributes the Program.
 .
 "Licensed Patents " mean patent claims licensable by a Contributor which are
 necessarily infringed by the use or sale of its Contribution alone or when
 combined with the Program.
 .
 "Program" means the Contributions distributed in accordance with this Agreement.
 .
 "Recipient" means anyone who receives the Program under this Agreement,
 including all Contributors.
 .
 2. GRANT OF RIGHTS
 .
 a) Subject to the terms of this Agreement, each Contributor hereby grants
 Recipient a non-exclusive, worldwide, royalty-free copyright license to
 reproduce, prepare derivative works of, publicly display, publicly perform,
 distribute and sublicense the Contribution of such Contributor, if any, and such
 derivative works, in source code and object code form.
 .
 b) Subject to the terms of this Agreement, each Contributor hereby grants
 Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed
 Patents to make, use, sell, offer to sell, import and otherwise transfer the
 Contribution of such Contributor, if any, in source code and object code form.
 This patent license shall apply to the combination of the Contribution and the
 Program if, at the time the Contribution is added by the Contributor, such
 addition of the Contribution causes such combination to be covered by the
 Licensed Patents. The patent license shall not apply to any other combinations
 which include the Contribution. No hardware per se is licensed hereunder.
 .
 c) Recipient understands that although each Contributor grants the licenses
 to its Contributions set forth herein, no assurances are provided by any
 Contributor that the Program does not infringe the patent or other intellectual
 property rights of any other entity. Each Contributor disclaims any liability to
 Recipient for claims brought by any other entity based on infringement of
 intellectual property rights or otherwise. As a condition to exercising the
 rights and licenses granted hereunder, each Recipient hereby assumes sole
 responsibility to secure any other intellectual property rights needed, if any.
 For example, if a third party patent license is required to allow Recipient to
 distribute the Program, it is Recipient's responsibility to acquire that license
 before distributing the Program.
 .
 d) Each Contributor represents that to its knowledge it has sufficient
 copyright rights in its Contribution, if any, to grant the copyright license set
 forth in this Agreement.
 .
 3. REQUIREMENTS
 .
 A Contributor may choose to distribute the Program in object code form under its
 own license agreement, provided that:
 .
 a) it complies with the terms and conditions of this Agreement; and
 .
 b) its license agreement:
 .
 i) effectively disclaims on behalf of all Contributors all warranties and
 conditions, express and implied, including warranties or conditions of title and
 non-infringement, and implied warranties or conditions of merchantability and
 fitness for a particular purpose;
 .
 ii) effectively excludes on behalf of all Contributors all liability for
 damages, including direct, indirect, special, incidental and consequential
 damages, such as lost profits;
 .
 iii) states that any provisions which differ from this Agreement are offered
 by that Contributor alone and not by any other party; and
 .
 iv) states that source code for the Program is available from such
 Contributor, and informs licensees how to obtain it in a reasonable manner on or
 through a medium customarily used for software exchange.
 .
 When the Program is made available in source code form:
 .
 a) it must be made available under this Agreement; and
 .
 b) a copy of this Agreement must be included with each copy of the Program.
 .
 Contributors may not remove or alter any copyright notices contained within the
 Program.
 .
 Each Contributor must identify itself as the originator of its Contribution, if
 any, in a manner that reasonably allows subsequent Recipients to identify the
 originator of the Contribution.
 .
 4. COMMERCIAL DISTRIBUTION
 .
 Commercial distributors of software may accept certain responsibilities with
 respect to end users, business partners and the like. While this license is
 intended to facilitate the commercial use of the Program, the Contributor who
 includes the Program in a commercial product offering should do so in a manner
 which does not create potential liability for other Contributors. Therefore, if
 a Contributor includes the Program in a commercial product offering, such
 Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
 every other Contributor ("Indemnified Contributor") against any losses, damages
 and costs (collectively "Losses") arising from claims, lawsuits and other legal
 actions brought by a third party against the Indemnified Contributor to the
 extent caused by the acts or omissions of such Commercial Contributor in
 connection with its distribution of the Program in a commercial product
 offering. The obligations in this section do not apply to any claims or Losses
 relating to any actual or alleged intellectual property infringement. In order
 to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
 Contributor in writing of such claim, and b) allow the Commercial Contributor to
 control, and cooperate with the Commercial Contributor in, the defense and any
 related settlement negotiations. The Indemnified Contributor may participate in
 any such claim at its own expense.
 .
 For example, a Contributor might include the Program in a commercial product
 offering, Product X. That Contributor is then a Commercial Contributor. If that
 Commercial Contributor then makes performance claims, or offers warranties
 related to Product X, those performance claims and warranties are such
 Commercial Contributor's responsibility alone. Under this section, the
 Commercial Contributor would have to defend claims against the other
 Contributors related to those performance claims and warranties, and if a court
 requires any other Contributor to pay any damages as a result, the Commercial
 Contributor must pay those damages.
 .
 5. NO WARRANTY
 .
 EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
 IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
 NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
 Recipient is solely responsible for determining the appropriateness of using and
 distributing the Program and assumes all risks associated with its exercise of
 rights under this Agreement, including but not limited to the risks and costs of
 program errors, compliance with applicable laws, damage to or loss of data,
 programs or equipment, and unavailability or interruption of operations.
 .
 6. DISCLAIMER OF LIABILITY
 .
 EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
 CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
 PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
 GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 .
 7. GENERAL
 .
 If any provision of this Agreement is invalid or unenforceable under applicable
 law, it shall not affect the validity or enforceability of the remainder of the
 terms of this Agreement, and without further action by the parties hereto, such
 provision shall be reformed to the minimum extent necessary to make such
 provision valid and enforceable.
 .
 If Recipient institutes patent litigation against a Contributor with respect to
 a patent applicable to software (including a cross-claim or counterclaim in a
 lawsuit), then any patent licenses granted by that Contributor to such Recipient
 under this Agreement shall terminate as of the date such litigation is filed. In
 addition, if Recipient institutes patent litigation against any entity
 (including a cross-claim or counterclaim in a lawsuit) alleging that the Program
 itself (excluding combinations of the Program with other software or hardware)
 infringes such Recipient's patent(s), then such Recipient's rights granted under
 Section 2(b) shall terminate as of the date such litigation is filed.
 .
 All Recipient's rights under this Agreement shall terminate if it fails to
 comply with any of the material terms or conditions of this Agreement and does
 not cure such failure in a reasonable period of time after becoming aware of
 such noncompliance. If all Recipient's rights under this Agreement terminate,
 Recipient agrees to cease use and distribution of the Program as soon as
 reasonably practicable. However, Recipient's obligations under this Agreement
 and any licenses granted by Recipient relating to the Program shall continue and
 survive.
 .
 Everyone is permitted to copy and distribute copies of this Agreement, but in
 order to avoid inconsistency the Agreement is copyrighted and may only be
 modified in the following manner. The Agreement Steward reserves the right to
 publish new versions (including revisions) of this Agreement from time to time.
 No one other than the Agreement Steward has the right to modify this Agreement.
 IBM is the initial Agreement Steward. IBM may assign the responsibility to serve
 as the Agreement Steward to a suitable separate entity. Each new version of the
 Agreement will be given a distinguishing version number. The Program (including
 Contributions) may always be distributed subject to the version of the Agreement
 under which it was received. In addition, after a new version of the Agreement
 is published, Contributor may elect to distribute the Program (including its
 Contributions) under the new version. Except as expressly stated in Sections
 2(a) and 2(b) above, Recipient receives no rights or licenses to the
 intellectual property of any Contributor under this Agreement, whether
 expressly, by implication, estoppel or otherwise. All rights in the Program not
 expressly granted under this Agreement are reserved.
 .
 This Agreement is governed by the laws of the State of New York and the
 intellectual property laws of the United States of America. No party to this
 Agreement will bring a legal action under this Agreement more than one year
 after the cause of action arose. Each party waives its rights to a jury trial in
 any resulting litigation.

License: Apache-2.0
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
 .
 http://www.apache.org/licenses/LICENSE-2.0
 .
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
Comment:
 On Debian systems, the complete text of the Apache License, Version 2.0
 can be found in "/usr/share/common-licenses/Apache-2.0".

License: LGPL-2.1+
 This library is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published
 by the Free Software Foundation; either version 2.1 of the License, or
 (at your option) any later version.
 .
 This library is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
 License for more details.
Comment:
 On Debian systems, the complete text of the GNU Lesser General Public
 License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1".

License: GPL-2+
 This package is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 This package is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program. If not, see <https://www.gnu.org/licenses/>
Comment:
 On Debian systems, the complete text of the GNU General
 Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".

License: GPL-2
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, version 2.
 .
 This program is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 more details.
 .
 You should have received a copy of the GNU General Public License along
 with this program. If not, see <https://www.gnu.org/licenses/>.
Comment:
 On Debian systems, the complete text of the GNU General
 Public License can be found in `/usr/share/common-licenses/GPL-2'.

License: GPL-3
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, version 3.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 GNU General Public License for more details.
Comment:
 On Debian systems, the complete text of the GNU General
 Public License can be found in `/usr/share/common-licenses/GPL-3'.

License: GPL-3+
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
Comment:
 On Debian systems, the complete text of the GNU General
 Public License can be found in `/usr/share/common-licenses/GPL-3'.

License: X11
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the
 "Software"), to deal in the Software without restriction, including
 without limitation the rights to use, copy, modify, merge, publish,
 distribute, distribute with modifications, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included
 in all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
 THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 .
 Except as contained in this notice, the name(s) of the above copyright
 holders shall not be used in advertising or otherwise to promote the
 sale, use or other dealings in this Software without prior written
 authorization.