hc
2024-03-22 ac5f19e89dcbd5c7428fcc78a0d407c887564466
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
#
# Config.in.legacy - support for backward compatibility
#
# When an existing Config.in symbol is removed, it should be added again in
# this file, and take appropriate action to approximate backward compatibility.
# This will make the transition for the user more convenient.
#
# When adding legacy symbols to this file, add them to the front. The oldest
# symbols will be removed again after about two years.
#
# The symbol should be copied as-is from the place where it was previously
# defined, but the help text should be removed or replaced with something that
# explains how to fix it.
#
# For bool options, the old symbol should select BR2_LEGACY, so that the user
# is informed at build-time about selected legacy options.
# If there is an equivalent (set of) new symbols, these should be select'ed by
# the old symbol for backwards compatibility.
# It is not possible to select an option that is part of a choice. In that
# case, the new option should use the old symbol as default. This requires a
# change outside of Config.in.legacy, and this should be clearly marked as such
# in a comment, so that removal of legacy options also include the removal of
# these external references.
#
# [Example: renaming a bool option that is part of a choice from FOO to BAR]
# original choice:
#     choice
#         prompt "Choose foobar"
#     config BR2_FOO_1
#        bool "foobar 1"
#     config BR2_FOO_2
#         bool "foobar 2"
#     endchoice
#
# becomes:
#   choice
#       prompt "Choose foobar"
#       default BR2_BAR_1 if BR2_FOO_1 # legacy
#       default BR2_BAR_2 if BR2_FOO_2 # legacy
#   config BR2_BAR_1
#        bool "foobar 1"
#   config BR2_BAR_2
#       bool "foobar 2"
#   endchoice
#
# and in Config.in.legacy:
#   config BR2_FOO_1
#       bool "foobar 1 has been renamed"
#       help
#         <suitable help text>
#   # Note: BR2_FOO_1 is still referenced from package/foo/Config.in
#   config BR2_FOO_2
#       bool "foobar 2 has been renamed"
#       help
#         <suitable help text>
#   # Note: BR2_FOO_2 is still referenced from package/foo/Config.in
#
# [End of example]
#
# For string options, it is not possible to directly select another symbol. In
# this case, a hidden wrap bool option has to be added, that defaults to y if
# the old string is not set at its default value. The wrap symbol should select
# BR2_LEGACY.
# If the original symbol has been renamed, the new symbol should use the value
# of the old symbol as default. Like for choice options, a comment should be
# added to flag that the symbol is still used in another file.
#
# [Example: renaming a string option from FOO to BAR]
# original symbol:
#   config BR2_FOO_STRING
#       string "Some foo string"
#
# becomes:
#   config BR2_BAR_STRING
#       string "Some bar string"
#       default BR2_FOO_STRING if BR2_FOO_STRING != ""  # legacy
#
# and in Config.in.legacy:
#   config BR2_FOO_STRING
#       string "The foo string has been renamed"
#       help
#         <suitable help text>
#
#   config BR2_FOO_STRING_WRAP
#       bool
#       default y if BR2_FOO_STRING != ""
#       select BR2_LEGACY
#
#   # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
#
# [End of example]
 
config BR2_SKIP_LEGACY
   bool
   option env="SKIP_LEGACY"
 
if !BR2_SKIP_LEGACY
 
config BR2_LEGACY
   bool
   help
     This option is selected automatically when your old .config
     uses an option that no longer exists in current buildroot. In
     that case, the build will fail. Look for config options which
     are selected in the menu below: they no longer exist and
     should be replaced by something else.
 
# This comment fits exactly in a 80-column display
comment "Legacy detected: check the content of the menu below"
   depends on BR2_LEGACY
 
menu "Legacy config options"
 
if BR2_LEGACY
comment "----------------------------------------------------"
comment "Your old configuration uses legacy options that no  "
comment "longer exist in buildroot, as indicated in the menu "
comment "below. As long as these options stay selected, or in"
comment "case of string options are non-empty, the build     "
comment "will fail.                                          "
comment "*                                                   "
comment "Where possible, an automatic conversion from old to "
comment "new symbols has been performed. Before making any   "
comment "change in this legacy menu, make sure to exit the   "
comment "configuration editor a first time and save the      "
comment "configuration. Otherwise, the automatic conversion  "
comment "of symbols will be lost.                            "
comment "*                                                   "
comment "After this initial save, reopen the configuration   "
comment "editor, inspect the options selected below, read    "
comment "their help texts, and verify/update the new         "
comment "configuration in the corresponding configuration    "
comment "menus. When everything is ok, you can disable the   "
comment "legacy options in the menu below. Once you have     "
comment "disabled all legacy options, this text will         "
comment "disappear and you will be able to start the build.  "
comment "*                                                   "
comment "Note: legacy options older than 5 years have been   "
comment "removed, and configuration files that still have    "
comment "those options set, will fail to build, or run in    "
comment "unpredictable ways.                                 "
comment "----------------------------------------------------"
endif
 
###############################################################################
 
comment "Legacy options removed in 2021.11"
 
config BR2_OPENJDK_VERSION_LTS
   bool "OpenJDK LTS version was renamed to OpenJDK 11"
   select BR2_LEGACY
   select BR2_PACKAGE_OPENJDK_VERSION_11
   help
     The LTS version option was renamed to OpenJDK 11 to make it
     clear what LTS version is.
 
config BR2_OPENJDK_VERSION_LATEST
   bool "OpenJDK latest version (16.x) was removed"
   select BR2_LEGACY
   select BR2_PACKAGE_OPENJDK_VERSION_17
   help
     OpenJDK 16.x is no longer mainted, so the option has been
     removed. Use OpenJDK 17.x instead.
 
config BR2_PACKAGE_MPD_TIDAL
   bool "mpd tidal option removed"
   select BR2_LEGACY
   help
     tidal has been removed from mpd since version 0.22.10.
 
config BR2_PACKAGE_MROUTED_RSRR
   bool "RSRR for RSVP removed in mrouted v4.4"
   select BR2_LEGACY
   help
     The RSRR configure option and feature was dropped in upstream
     mrouted as of v4.4.  This feature was marked as experimental
     since its inception well before v4.0 and was never deployed
     in the field outside of academia.
 
config BR2_BINUTILS_VERSION_CSKY
   bool "binutils csky version removed"
   select BR2_LEGACY
   help
     Support for binutils csky version has been removed.
 
config BR2_GCC_VERSION_CSKY
   bool "gcc csky version removed"
   select BR2_LEGACY
   help
     Support for gcc csky version has been removed.
 
config BR2_PACKAGE_CANFESTIVAL
   bool "canfestival package removed"
   select BR2_LEGACY
   help
     This package has been removed as it is unmaintained since
     November 2017.
 
config BR2_PACKAGE_NMAP_NDIFF
   bool "The ndiff utility has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_PYTHON_PYNDIFF
   help
     The ndiff utility provided by nmap requires python2 which is
     deprecated. The same functionality is provided by the python
     package pyndiff.
 
config BR2_GDB_VERSION_8_3
   bool "gdb version 8.3.x removed"
   select BR2_LEGACY
   help
     gdb 8.3.x has been removed, use a newer version instead.
 
config BR2_PACKAGE_PYTHON_MELD3
   bool "python-meld3 package removed"
   select BR2_LEGACY
   help
     This package has been removed as it is unmaintained since
     April 2020.
 
config BR2_PACKAGE_STRONGSWAN_EAP
   bool "strongswan EAP plugins now individually selectable"
   select BR2_LEGACY
   help
     The various EAP plugins are now individually selectable.
 
config BR2_PACKAGE_GNURADIO_PAGER
   bool "gnuradio gr-flex support removed"
   select BR2_LEGACY
   help
     gr-flex has been removed from gnuradio since version 3.8.0.0.
 
config BR2_KERNEL_HEADERS_5_11
   bool "kernel headers version 5.11.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.11.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_5_12
   bool "kernel headers version 5.12.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.12.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_5_13
   bool "kernel headers version 5.13.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.13.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
comment "Legacy options removed in 2021.08"
 
config BR2_TARGET_GRUB2_BUILTIN_MODULES
   string "the grub2 builtin modules has been renamed"
   help
     This option has been split to separate the builtin modules
     between BR2_TARGET_GRUB2_BUILTIN_MODULES_PC and
     BR2_TARGET_GRUB2_BUILTIN_MODULES_EFI.
 
config BR2_TARGET_GRUB2_BUILTIN_MODULES_WRAP
   bool
   default y if BR2_TARGET_GRUB2_BUILTIN_MODULES != ""
   select BR2_LEGACY
 
config BR2_TARGET_GRUB2_BUILTIN_CONFIG
   string "the grub2 builtin configuration has been renamed"
   help
     This option has been split to separate the builtin
     configuration between BR2_TARGET_GRUB2_BUILTIN_CONFIG_PC and
     BR2_TARGET_GRUB2_BUILTIN_CONFIG_EFI.
 
config BR2_TARGET_GRUB2_BUILTIN_CONFIG_WRAP
   bool
   default y if BR2_TARGET_GRUB2_BUILTIN_CONFIG != ""
   select BR2_LEGACY
 
config BR2_PACKAGE_LIBMCRYPT
   bool "libmcrypt package was removed"
   select BR2_LEGACY
   help
     This package has been removed as "the last update to libmcrypt
     was in 2007, despite years of unmerged patches. These facts
     have led security experts to declare mcrypt abandonware and
     discourage its use in new development" (extract from
     https://en.wikipedia.org/wiki/Mcrypt).
 
config BR2_PACKAGE_MCRYPT
   bool "mcrypt package was removed"
   select BR2_LEGACY
   help
     This package has been removed as "the last update to libmcrypt
     was in 2007, despite years of unmerged patches. These facts
     have led security experts to declare mcrypt abandonware and
     discourage its use in new development" (extract from
     https://en.wikipedia.org/wiki/Mcrypt).
 
config BR2_PACKAGE_PHP_EXT_MCRYPT
   bool "PHP mcrypt extension removed"
   select BR2_LEGACY
   help
     mcrypt has been removed from php since version 7.2.0.
 
config BR2_BINUTILS_VERSION_2_34_X
   bool "binutils 2.34 has been removed"
   select BR2_LEGACY
   help
     binutils 2.34 has been removed, use a newer version.
 
config BR2_PACKAGE_LIBSOIL
   bool "libsoil package removed"
   select BR2_LEGACY
   help
     The libsoil package was removed. All packages needing
     libsoil removed the dependency.
 
config BR2_PACKAGE_CLAPACK
   bool "cblas/clapack package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_LAPACK if BR2_PACKAGE_LAPACK_ARCH_SUPPORTS && BR2_TOOLCHAIN_HAS_FORTRAN
   help
     The clapack package was removed. LAPACK no longer generates a
     C version. Use lapack instead. This does require a Fortran
     compiler however.
 
config BR2_PACKAGE_SPIDERMONKEY
   bool "spidermonkey package removed"
   select BR2_LEGACY
   help
     The spidermonkey package was removed. The only package that
     depended on spidermonkey was polkit. The spidermonkey
     dependency is replaced with duktape.
 
config BR2_PACKAGE_KODI_LIBVA
   bool "kodi option to add libva support removed"
   select BR2_LEGACY
   help
     Kodi still has support for libva if the package is enabled but
     the kodi-specific dependencies limiting libva support to non-
     OPENGLES platforms were removed including this option.
 
config BR2_PACKAGE_PYTHON_COHERENCE
   bool "python-coherence package removed"
   select BR2_LEGACY
   help
     This package has been removed as it can't be built anymore due
     to python-twisted being now incompatible with python 2.
 
config BR2_PACKAGE_PHP_EXT_XMLRPC
   bool "PHP XMLRPC extension removed"
   select BR2_LEGACY
   help
     The XMLRPC php extension was removed.
     See: https://wiki.php.net/rfc/unbundle_xmlprc
 
config BR2_GCC_VERSION_8_X
   bool "gcc 8.x support removed"
   select BR2_LEGACY
   help
     Support for gcc version 8.x has been removed. The current
     default version (10.x or later) has been selected instead.
 
comment "Legacy options removed in 2021.05"
 
config BR2_PACKAGE_UDISKS_LVM2
   bool "udisks lvm2 support removed"
   select BR2_LEGACY
   help
     The lvm2 support was removed because udisks < 2.7.0 still
     depends on lvm2 application library, which was removed
     in lvm2.
 
config BR2_PACKAGE_LVM2_APP_LIBRARY
   bool "lvm2 application library removed"
   select BR2_LEGACY
   help
     The lvm2 application library was removed upstream.
 
config BR2_PACKAGE_LVM2_LVMETAD
   bool "lvm2 lvmetad removed"
   select BR2_LEGACY
   help
     The lvm2 lvmetad was removed upstream.
 
config BR2_PACKAGE_MONKEY
   bool "monkey package removed"
   select BR2_LEGACY
   help
     This package has been removed as it has not seen any release
     since 2016 and because TLS is broken on master.
 
config BR2_PACKAGE_DOCKER_CONTAINERD
   bool "docker-containerd package was renamed to containerd"
   select BR2_LEGACY
   select BR2_PACKAGE_CONTAINERD
   help
     The containerd project is now independent from Docker.
     The package was renamed to containerd accordingly.
 
config BR2_PACKAGE_IOSTAT
   bool "iostat package removed"
   select BR2_LEGACY
   help
     This package has been removed, use sysstat instead.
 
config BR2_PACKAGE_SCONESERVER_HTTP_SCONESITE_IMAGE
   bool "sconeserver http::sconesite::image removed"
   select BR2_LEGACY
   help
     Sconeserver cannot be built with ImageMagick - it uses the
     "transofrm" function which is removed from public API.
 
config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_EVDEV
   bool "KDrive/TinyX evdev input driver removed"
   select BR2_LEGACY
   help
     The evdev input driver in KDrive was removed.
 
config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_KBD
   bool "KDrive/TinyX kbd input driver removed"
   select BR2_LEGACY
   help
     The kbd input driver in KDrive was removed.
 
config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_MOUSE
   bool "KDrive/TinyX mouse input driver removed"
   select BR2_LEGACY
   help
     The mouse input driver in KDrive was removed.
 
config BR2_PACKAGE_MESA3D_OSMESA_CLASSIC
   bool "mesa OSMesa (classic) option removed"
   select BR2_LEGACY
   select BR2_PACKAGE_MESA3D_OSMESA_GALLIUM
   help
     The OSMesa "classic" library option was removed upstream.
     Only the Gallium-based implementation remains.
 
config BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST
   bool "mesa DRI swrast driver removed"
   select BR2_LEGACY
   select BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_SWRAST
   help
     The DRI swrast driver was removed upstream.
     Only the Gallium-based implementation remains.
 
config BR2_PACKAGE_KODI_SCREENSAVER_CRYSTALMORPH
   bool "kodi-screensaver-crystalmorph removed"
   select BR2_LEGACY
   help
     The package received its last updates in 2017, is not part
     of the official Kodi github repo and its build is broken
     with Kodi 19.x, so it was removed.
 
comment "Legacy options removed in 2021.02"
 
config BR2_PACKAGE_MPD_AUDIOFILE
   bool "mpd audiofile support removed"
   select BR2_LEGACY
   help
     The audiofile support was removed from mpd as audiofile is
     affected by multiple CVEs and is not maintained anymore (no
     release since 2013).
 
config BR2_PACKAGE_AUDIOFILE
   bool "audiofile package removed"
   select BR2_LEGACY
   help
     The audiofile package was removed as it is affected by
     multiple CVEs and is not maintained anymore (no release since
     2013).
 
config BR2_BINUTILS_VERSION_2_33_X
   bool "binutils 2.33.x has been removed"
   select BR2_LEGACY
   help
     binutils 2.33.x has been removed, use a newer version.
 
config BR2_PACKAGE_LIBUPNP18
   bool "libupnp18 package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_LIBUPNP
   help
     Version 1.8.x of libupnp (i.e. libupnp18) has been removed
     because it will never be fixed against CallStranger a.k.a.
     CVE-2020-12695. The libupnp package (which has been updated to
     version 1.14.x) has been selected instead.
 
config BR2_PACKAGE_BOA
   bool "boa package removed"
   select BR2_LEGACY
   help
     The boa package was removed as it is affected by multiple
     CVEs and is not maintained anymore (no release since 2005).
 
config BR2_PACKAGE_LINUX_FIRMWARE_IMX_SDMA
   bool "imx sdma firmware is provided by firmware-imx"
   select BR2_LEGACY
   select BR2_PACKAGE_FREESCALE_IMX
   select BR2_PACKAGE_FIRMWARE_IMX
   help
     linux-firmware provide the same firmware as firmware-imx.
     We prefer using firmware-imx as the only provider.
 
config BR2_GDB_VERSION_8_2
   bool "gdb 8.2.x has been removed"
   select BR2_LEGACY
   help
     gdb 8.2 support has been removed, you can use a newer
     version such as 8.3 or more recent.
 
config BR2_PACKAGE_HOST_RCW
   bool "rcw package was renamed to qoriq-rcw"
   select BR2_PACKAGE_HOST_QORIQ_RCW
   select BR2_LEGACY
   help
     The rcw package was specific to the QorIQ platform, so it has
     been renamed to qoriq-rcw, to leave room for other *-rcw
     packages for other platforms.
 
config BR2_KERNEL_HEADERS_5_9
   bool "kernel headers version 5.9.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.9.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_5_8
   bool "kernel headers version 5.8.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.8.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_powerpc_601
   bool "PowerPC 601 support removed"
   select BR2_LEGACY
   help
     The support for the PowerPC 601 processors has been removed.
 
config BR2_PACKAGE_TI_SGX_LIBGBM
   bool "ti-sgx-libgbm support removed"
   select BR2_LEGACY
   help
     TI has merged the ti-sgx-libgbm package with the ti-sgx-um
     package
 
config BR2_PACKAGE_IPSEC_TOOLS
   bool "ipsec-tools package was removed"
   select BR2_LEGACY
   help
     This package has been removed as it has security issues and
     has been abandoned since 2014.
 
comment "Legacy options removed in 2020.11"
 
config BR2_PACKAGE_GPSD_FIXED_PORT_SPEED
   bool "compile with fixed serial port speed"
   select BR2_LEGACY
   help
     Since gpsd 3.20, GPSD_FIXED_PORT_SPEED is replaced
     by runtime option --speed.
 
config BR2_PACKAGE_GPSD_RECONFIGURE
   bool "allow gpsd to change device settings"
   select BR2_LEGACY
   help
     Since gpsd 3.21, GPSD_RECONFIGURE is replaced
     by runtime option --passive.
 
config BR2_PACKAGE_GPSD_CONTROLSEND
   bool "allow gpsctl/gpsmon to change device settings"
   select BR2_LEGACY
   help
     Option removed in gpsd 3.21
 
config BR2_PACKAGE_OPENCV
   bool "opencv package was removed"
   select BR2_LEGACY
   help
     This package has been removed, use opencv3 instead.
 
config BR2_PACKAGE_LIBCROCO
   bool "libcroco package was removed"
   select BR2_LEGACY
   help
     This package has been removed as it is affected by several
     security issues such as CVE-2020-12825 which will never be
     fixed as libcroco has been archived.
 
config BR2_PACKAGE_BELLAGIO
   bool "bellagio package was removed"
   select BR2_LEGACY
   help
     This package has been removed as it is not maintained anymore
     (no release since 2011).
 
config BR2_PACKAGE_SYSTEMD_JOURNAL_GATEWAY
   bool "systemd-journal-gatewayd now in systemd-journal-remote"
   select BR2_LEGACY
   select BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE
   help
     All system journal remote programs are now enabled using
     BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE.
 
config BR2_TARGET_UBOOT_BOOT_SCRIPT
   bool "u-boot script generation was moved"
   select BR2_LEGACY
   select BR2_PACKAGE_HOST_UBOOT_TOOLS
   select BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT
   help
     Migrated U-Boot script generation to uboot-tools
 
# Note: BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE is still referenced from
# package/uboot-tools/Config.in
config BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE
   string "The uboot script source string has been renamed"
   depends on BR2_TARGET_UBOOT_BOOT_SCRIPT
   help
     Migrated U-Boot script generation to uboot-tools.
     New option is named
     BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT_SOURCE
 
config BR2_TARGET_UBOOT_ENVIMAGE
   bool "u-boot env generation was moved"
   select BR2_LEGACY
   select BR2_PACKAGE_HOST_UBOOT_TOOLS
   select BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE
   help
     Migrated U-Boot env generation to uboot-tools
 
# Note: BR2_TARGET_UBOOT_ENVIMAGE_SOURCE is still referenced from
# package/uboot-tools/Config.in
config BR2_TARGET_UBOOT_ENVIMAGE_SOURCE
   string "The uboot env image source string has been renamed"
   depends on BR2_TARGET_UBOOT_ENVIMAGE
   help
     Migrated U-Boot env generation to uboot-tools.
     New option is named
     BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SOURCE
 
# Note: BR2_TARGET_UBOOT_ENVIMAGE_SIZE is still referenced from
# package/uboot-tools/Config.in
config BR2_TARGET_UBOOT_ENVIMAGE_SIZE
   string "The uboot env image size string has been renamed"
   depends on BR2_TARGET_UBOOT_ENVIMAGE
   help
     Migrated U-Boot env generation to uboot-tools.
     New option is named BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SIZE
 
config BR2_TARGET_UBOOT_ENVIMAGE_REDUNDANT
   bool "u-boot env generation was moved"
   depends on BR2_TARGET_UBOOT_ENVIMAGE
   select BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_REDUNDANT
   help
     Migrated U-Boot env generation to uboot-tools
 
config BR2_PACKAGE_KISMET_CLIENT
   bool "kismet client support was removed"
   select BR2_LEGACY
   help
     Kismet client support was removed since version 2019-04-R1.
 
config BR2_PACKAGE_KISMET_DRONE
   bool "kismet drone support was removed"
   select BR2_LEGACY
   help
     Kismet drone support was removed since version 2019-04-R1.
 
config BR2_GCC_VERSION_7_X
   bool "gcc 7.x support removed"
   select BR2_LEGACY
   help
     Support for gcc version 7.x has been removed. The current
     default version (9.x or later) has been selected instead.
 
config BR2_PACKAGE_GST1_VALIDATE
   bool "gst1-validate was moved to gst1-devtools"
   select BR2_PACKAGE_GST1_DEVTOOLS
   select BR2_LEGACY
   help
     This package has been removed, use gst1-devtools instead.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_YADIF
   bool "gst1-plugins-bad yadif plugin was removed"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_DEINTERLACE
   help
     This plugin was removed with gst1-plugins-bad-1.18.0, the
     same functionality has moved to gst1-plugins-good
     deinterlace plugin (method=yadif).
 
config BR2_PACKAGE_GQVIEW
   bool "gqview package was removed"
   select BR2_LEGACY
   help
     This package has been removed as it is not maintained anymore
     (no release since 2006).
 
config BR2_PACKAGE_WESTON_IMX
   bool "weston-imx package was removed"
   select BR2_LEGACY
   help
     This package has been removed, use weston instead.
 
config BR2_KERNEL_HEADERS_5_7
   bool "kernel headers version 5.7.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.7.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_PACKAGE_TINYHTTPD
   bool "tinyhttpd package removed"
   select BR2_LEGACY
   help
     The tinyhttpd package was removed as it is affected by
     CVE-2002-1819 and is not maintained anymore (no release since
     2001).
 
config BR2_PACKAGE_XSERVER_XORG_SERVER_AIGLX
   bool "X.org Enable AIGLX Extension"
   select BR2_LEGACY
   help
     AIGLX Extension was removed in X.org X server version 1.19.0
 
config BR2_PACKAGE_AMD_CATALYST
   bool "amd-catalyst"
   select BR2_LEGACY
   help
     Current X.org server is incompatible with this driver.
 
config BR2_PACKAGE_NVIDIA_TEGRA23
   bool "nvidia-tegra23 package removed"
   select BR2_LEGACY
   help
     Current X.org server is incompatible with this driver.
 
config BR2_GDB_VERSION_8_1
   bool "gdb 8.1.x has been removed"
   select BR2_LEGACY
   help
     The 8.1.x version of gdb has been removed. Use a newer
     version instead.
 
comment "Legacy options removed in 2020.08"
 
config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AMD64
   bool "toolchain-external-codesourcery-amd64 removed"
   select BR2_LEGACY
   help
     The CodeSourcery toolchain for AMD64, in version 2016.11 was
     dropped, due to it using a too old gcc 6.2.0 compiler which
     caused issues compiling a number of recent packages
     (e.g. Boost). CodeSourcery has stopped making newer versions
     of this toolchain publicly available, so it was not possible
     to update it.
 
config BR2_KERNEL_HEADERS_5_6
   bool "kernel headers version 5.6.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.6.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_5_5
   bool "kernel headers version 5.5.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.5.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_BINUTILS_VERSION_2_31_X
   bool "binutils version 2.31.1 support removed"
   select BR2_LEGACY
   help
     Support for binutils version 2.31.1 has been removed. The
     current default version (2.33.1 or later) has been selected
     instead.
 
config BR2_PACKAGE_KODI_PERIPHERAL_STEAMCONTROLLER
   bool "kodi-peripheral-steamcontroller package was removed"
   select BR2_LEGACY
   help
     This package is broken.
 
comment "Legacy options removed in 2020.05"
 
config BR2_PACKAGE_WIRINGPI
   bool "wiringpi package removed"
   select BR2_LEGACY
   help
     The author of wiringpi has deprecated the package, and
     completely removed the git tree that was serving the
     sources, with this message:
     Please look for alternatives for wiringPi
 
config BR2_PACKAGE_PYTHON_PYCRYPTO
   bool "python-pycrypto package removed"
   select BR2_LEGACY
   help
     This package has been removed, use python-pycryptodomex
     instead.
 
config BR2_PACKAGE_MTDEV2TUIO
   bool "mtdev2tuio package removed"
   select BR2_LEGACY
   help
     The mtdev2tuio package was removed as it breaks the builds
     every now and then and is not maintained upstream.
 
config BR2_PACKAGE_EZXML
   bool "ezxml package removed"
   select BR2_LEGACY
   help
     The ezXML package was removed as it is affected by several
     CVEs and is not maintained anymore (no release since 2006).
 
config BR2_PACKAGE_COLLECTD_LVM
   bool "lvm support in collectd was removed"
   select BR2_LEGACY
   help
     collectd removed LVM plugin, liblvm2app has been deprecated
 
config BR2_PACKAGE_PYTHON_PYASN
   bool "duplicate python-pyasn1 package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_PYTHON_PYASN1
   help
     This package was a duplicate of python-pyasn1.
 
config BR2_PACKAGE_PYTHON_PYASN_MODULES
   bool "duplicate python-pyasn1-modules package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_PYTHON_PYASN1_MODULES
   help
     This package was a duplicate of python-pyasn1-modules.
 
config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_10K_QCA6174
   bool "duplicate QCA6174 firmware symbol removed"
   select BR2_LEGACY
   select BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_6174
   help
     This config symbol duplicates existing symbol for QCA6174
     firmware.
 
config BR2_PACKAGE_QT5CANVAS3D
   bool "qt5canvas3d was removed"
   select BR2_LEGACY
   help
     This Qt5 module was removed by the upstream Qt project since
     Qt 5.13, so the corresponding Buildroot package was removed
     as well.
 
config BR2_PACKAGE_KODI_LIBTHEORA
   bool "libtheora support in Kodi was removed"
   select BR2_LEGACY
   help
     Kodi does not need libtheora
 
config BR2_PACKAGE_CEGUI06
   bool "BR2_PACKAGE_CEGUI06 was renamed"
   select BR2_PACKAGE_CEGUI
   select BR2_LEGACY
   help
     The BR2_PACKAGE_CEGUI06 config symbol was renamed to
     BR2_PACKAGE_CEGUI.
 
config BR2_GCC_VERSION_5_X
   bool "gcc 5.x support removed"
   select BR2_LEGACY
   help
     Support for gcc version 5.x has been removed. The current
     default version (8.x or later) has been selected instead.
 
comment "Legacy options removed in 2020.02"
 
config BR2_PACKAGE_JAMVM
   bool "jamvm removed"
   select BR2_LEGACY
   help
     JamVM has not had a release since 2014 and is unmaintained.
 
config BR2_PACKAGE_CLASSPATH
   bool "classpath removed"
   select BR2_LEGACY
   help
     GNU Classpath package was removed. The last upstream
     release was in 2012 and there hasn't been a commit
     since 2016.
 
config BR2_PACKAGE_QT5_VERSION_5_6
   bool "qt 5.6 support removed"
   select BR2_LEGACY
   help
     Support for Qt 5.6 is EOL and has been removed. The current
     version (5.12 or later) has been selected instead.
 
config BR2_PACKAGE_CURL
   bool "BR2_PACKAGE_CURL was renamed"
   select BR2_PACKAGE_LIBCURL_CURL
   select BR2_LEGACY
   help
     The BR2_PACKAGE_CURL config symbol was renamed to
     BR2_PACKAGE_LIBCURL_CURL.
 
config BR2_PACKAGE_GSTREAMER
   bool "gstreamer-0.10 removed"
   select BR2_LEGACY
   help
     Gstreamer-0.10 package was removed. It has been deprecated
     upstream since 2012, and is missing a lot of features and
     fixes compared to gstreamer-1.x.
 
config BR2_PACKAGE_NVIDIA_TEGRA23_BINARIES_GSTREAMER_PLUGINS
   bool "nvidia-tegra23 binaries gstreamer 0.10.x support removed"
   select BR2_LEGACY
   help
     Gstreamer 0.10.x is no longer available in Buildroot, so
     neither is the support in nvidia-tegra23 binaries.
 
config BR2_PACKAGE_NVIDIA_TEGRA23_BINARIES_NV_SAMPLE_APPS
   bool "nvidia-tegra23 binaries sample apps removed"
   select BR2_LEGACY
   help
     Gstreamer 0.10.x is no longer available in Buildroot, so
     neither is the support in nvidia-tegra23 binaries.
 
config BR2_PACKAGE_FREERDP_GSTREAMER
   bool "freerdp gstreamer 0.10.x support removed"
   select BR2_LEGACY
   help
     Gstreamer 0.10.x is no longer available in Buildroot, so
     neither is the support in freerdp.
 
config BR2_PACKAGE_OPENCV3_WITH_GSTREAMER
   bool "opencv3 gstreamer 0.10.x support removed"
   select BR2_LEGACY
   help
     Gstreamer 0.10.x is no longer available in Buildroot, so
     neither is the support in opencv3.
 
config BR2_PACKAGE_OPENCV_WITH_GSTREAMER
   bool "opencv gstreamer 0.10.x support removed"
   select BR2_LEGACY
   help
     Gstreamer 0.10.x is no longer available in Buildroot, so
     neither is the support in opencv.
 
config BR2_PACKAGE_LIBPLAYER
   bool "libplayer package was removed"
   select BR2_LEGACY
   help
     The libplayer package was removed. The latest release is
     from 2010 and none of the backends are available in
     Buildroot any more.
 
config BR2_GCC_VERSION_OR1K
   bool "gcc 5.x fork for or1k has been removed"
   select BR2_LEGACY
   help
     Support for gcc 5.x for or1k has been removed. The current
     default version (9.x or later) has been selected instead.
 
config BR2_PACKAGE_BLUEZ_UTILS
   bool "bluez-utils was removed"
   select BR2_LEGACY
   select BR2_PACKAGE_BLUEZ5_UTILS if BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 \
       && BR2_TOOLCHAIN_HAS_SYNC_4
   help
     The bluez-utils (BlueZ 4.x) package was removed as it is
     deprecated since a long time. As an alternative, the
     bluez5-utils (BlueZ 5.x) has been automatically selected in
     your configuration.
 
config BR2_PACKAGE_GADGETFS_TEST
   bool "gadgetfs-test was removed"
   select BR2_LEGACY
   help
     The gadgetfs-test package was removed. Gadgetfs has been
     deprecated in favour of functionfs. Consider using
     gadget-tool (gt) instead.
 
config BR2_PACKAGE_FIS
   bool "fis was removed"
   select BR2_LEGACY
   help
     The fis package was removed.
 
config BR2_PACKAGE_REFPOLICY_POLICY_VERSION
   string "refpolicy policy version"
   help
     The refpolicy policy version option has been moved to the
     libsepol package.
 
config BR2_PACKAGE_REFPOLICY_POLICY_VERSION_WRAP
   bool
   default y if BR2_PACKAGE_REFPOLICY_POLICY_VERSION != ""
   select BR2_LEGACY
 
config BR2_PACKAGE_CELT051
   bool "celt051 package was removed"
   select BR2_LEGACY
   select BR2_PACKAGE_OPUS
   help
     The celt051 package was removed as it is now obsolete since
     the CELT codec has been merged into the IETF Opus codec. As
     a result, the opus package has been automatically selected
     in your configuration.
 
config BR2_PACKAGE_WIREGUARD
   bool "wireguard package renamed"
   depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
   select BR2_LEGACY
   select BR2_PACKAGE_WIREGUARD_LINUX_COMPAT if BR2_LINUX_KERNEL
   select BR2_PACKAGE_WIREGUARD_TOOLS
   help
     The wireguard package has been renamed to wireguard-tools
     for the userspace tooling and wireguard-linux-compat for the
     kernel side for legacy (<5.6) kernels to match upstream.
 
config BR2_PACKAGE_PERL_NET_PING
   bool "perl-net-ping was removed"
   select BR2_LEGACY
   help
     Net::Ping is a Perl core module (ie. bundled with perl).
 
config BR2_PACKAGE_PERL_MIME_BASE64
   bool "perl-mime-base64 was removed"
   select BR2_LEGACY
   help
     MIME::Base64 is a Perl core module (ie. bundled with perl).
 
config BR2_PACKAGE_PERL_DIGEST_MD5
   bool "perl-digest-md5 was removed"
   select BR2_LEGACY
   help
     Digest::MD5 is a Perl core module (ie. bundled with perl).
 
config BR2_PACKAGE_ERLANG_P1_ICONV
   bool "erlang-p1-iconv has been removed"
   select BR2_LEGACY
   help
     The erlang-p1-iconv package was no longer used by ejabberd,
     and was no longer maintained upstream, so it was removed.
 
config BR2_KERNEL_HEADERS_5_3
   bool "kernel headers version 5.3.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.3.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_PACKAGE_PYTHON_SCAPY3K
   bool "python-scapy3k is replaced by python-scapy"
   select BR2_LEGACY
   select BR2_PACKAGE_PYTHON_SCAPY
   help
     python-scapy3k has been deprecated, since python-scapy has
     gained Python 3 support. Use BR2_PACKAGE_PYTHON_SCAPY
     instead.
 
config BR2_BINUTILS_VERSION_2_30_X
   bool "binutils version 2.30 support removed"
   select BR2_LEGACY
   help
     Support for binutils version 2.30 has been removed. The
     current default version (2.31 or later) has been selected
     instead.
 
config BR2_PACKAGE_RPI_USERLAND_START_VCFILED
   bool "rpi-userland start vcfiled was removed"
   select BR2_LEGACY
   help
     The vcfiled support was removed upstream.
 
comment "Legacy options removed in 2019.11"
 
config BR2_PACKAGE_OPENVMTOOLS_PROCPS
   bool "openvmtools' procps support was removed"
   select BR2_LEGACY
   help
     Upstream stopped supporting this option a while ago.
 
config BR2_PACKAGE_ALLJOYN
   bool "alljoyn was removed"
   select BR2_LEGACY
   help
     The alljoyn framework is dead
 
config BR2_PACKAGE_ALLJOYN_BASE
   bool "alljoyn-base was removed"
   select BR2_LEGACY
   help
     The alljoyn framework is dead
 
config BR2_PACKAGE_ALLJOYN_BASE_CONTROLPANEL
   bool "alljoyn-base control panel was removed"
   select BR2_LEGACY
   help
     The alljoyn framework is dead
 
config BR2_PACKAGE_ALLJOYN_BASE_NOTIFICATION
   bool "alljoyn-base notification was removed"
   select BR2_LEGACY
   help
     The alljoyn framework is dead
 
config BR2_PACKAGE_ALLJOYN_BASE_ONBOARDING
   bool "alljoyn-base onboarding was removed"
   select BR2_LEGACY
   help
     The alljoyn framework is dead
 
config BR2_PACKAGE_ALLJOYN_TCL_BASE
   bool "alljoyn-tcl-base was removed"
   select BR2_LEGACY
   help
     The alljoyn framework is dead
 
config BR2_PACKAGE_ALLJOYN_TCL
   bool "alljoyn-tcl was removed"
   select BR2_LEGACY
   help
     The alljoyn framework is dead
 
config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS
   string "toolchain-external extra libs option has been renamed"
   help
     The option BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS has
     been renamed to BR2_TOOLCHAIN_EXTRA_LIBS.
 
config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS_WRAP
   bool
   default y if BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS != ""
   select BR2_LEGACY
 
config BR2_PACKAGE_PYTHON_PYSNMP_APPS
   bool "python-pysnmp-apps was removed"
   select BR2_LEGACY
   select BR2_PACKAGE_SNMPCLITOOLS
   help
     Following upstream changes, the python-pysnmp-apps package
     has been removed, and snmpclitools should be used as a
     replacement.
 
config BR2_KERNEL_HEADERS_5_2
   bool "kernel headers version 5.2.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.2.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_TARGET_RISCV_PK
   bool "riscv-pk was removed"
   select BR2_LEGACY
   help
     The RISC-V Proxy Kernel (pk) and Berkley Boot Loader (BBL)
     have been replaced with OpenSBI.
 
config BR2_PACKAGE_SQLITE_STAT3
   bool "sqlite stat3 support was removed"
   select BR2_LEGACY
   help
     Upstream removed the support for stat3.
 
config BR2_KERNEL_HEADERS_5_1
   bool "kernel headers version 5.1.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.1.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_PACKAGE_DEVMEM2
   bool "devmem2 package was removed"
   select BR2_LEGACY
   help
     Use the the Busybox devmem utility, instead, which provides
     the same functionality.
 
config BR2_PACKAGE_USTR
   bool "ustr package removed"
   select BR2_LEGACY
   help
     The 'ustr' package was only used by SELinux libsemanage, but
     since SELinux 2.7, ustr is no longer used. Therefore, we
     removed this package from Buildroot.
 
config BR2_PACKAGE_KODI_SCREENSAVER_PLANESTATE
   bool "kodi-screensaver-planestate package was removed"
   select BR2_LEGACY
   help
     This package is incompatible with Kodi 18.x.
 
config BR2_PACKAGE_KODI_VISUALISATION_WAVEFORHUE
   bool "kodi-visualisation-waveforhue package was removed"
   select BR2_LEGACY
   help
     This package is incompatible with Kodi 18.x.
 
config BR2_PACKAGE_KODI_AUDIODECODER_OPUS
   bool "kodi-audiodecoder-opus package was removed"
   select BR2_LEGACY
   help
     This package is incompatible with Kodi 18.x.
 
config BR2_PACKAGE_MESA3D_OSMESA
   bool "mesa OSMesa option renamed"
   select BR2_PACKAGE_MESA3D_OSMESA_CLASSIC if BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST
   select BR2_LEGACY
   help
     The option was renamed in order to match the naming used
     by the meson buildsystem.
 
config BR2_PACKAGE_HOSTAPD_DRIVER_RTW
   bool "hostapd rtl871xdrv driver removed"
   select BR2_LEGACY
   help
     Since the update of hostapd to 2.9, the patch provided for
     the rtl871xdrv no longer works, although it
     applies. Moreover, AP support for Realtek chips is broken
     anyway in kernels > 4.9. Therefore, this option has been
     removed.
 
config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW
   bool "new dbus support option in wpa_supplicant was renamed"
   select BR2_PACKAGE_WPA_SUPPLICANT_DBUS if BR2_TOOLCHAIN_HAS_THREADS
   select BR2_LEGACY
   help
     The new dbus support option was renamed.
 
config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_OLD
   bool "old dbus support in wpa_supplicant was removed"
   select BR2_LEGACY
   help
     The old dbus support was removed.
 
comment "Legacy options removed in 2019.08"
 
config BR2_TARGET_TS4800_MBRBOOT
   bool "ts4800-mbrboot package was removed"
   select BR2_LEGACY
   help
     The defconfig for the TS4800 platform has been removed, so
     the ts4800-mbrboot package, containing the boot code for
     this specific platform has been removed as welL.
 
config BR2_PACKAGE_LIBAMCODEC
   bool "liamcodec package was removed"
   select BR2_LEGACY
   help
     Support for odroidc2 based systems was removed, making the
     libamcodec package useless.
 
config BR2_PACKAGE_ODROID_SCRIPTS
   bool "odroid-scripts package was removed"
   select BR2_LEGACY
   help
     Support for odroidc2 based systems was removed, making the
     odroid-scripts package useless.
 
config BR2_PACKAGE_ODROID_MALI
   bool "odroid-mali package was removed"
   select BR2_LEGACY
   help
     Support for odroidc2 based systems was removed, making the
     odroid-mali package useless.
 
config BR2_PACKAGE_KODI_PLATFORM_AML
   bool "Kodi AMLogic support was removed"
   select BR2_LEGACY
   help
     Support for AMLogic was removed due to the removal of the
     odroidc2 defconfig.
 
config BR2_GCC_VERSION_6_X
   bool "gcc 6.x support removed"
   select BR2_LEGACY
   help
     Support for gcc version 6.x has been removed. The current
     default version (8.x or later) has been selected instead.
 
config BR2_GCC_VERSION_4_9_X
   bool "gcc 4.9.x support removed"
   select BR2_LEGACY
   help
     Support for gcc version 4.9.x has been removed. The current
     default version (8.x or later) has been selected instead.
 
config BR2_GDB_VERSION_7_12
   bool "gdb 7.12.x has been removed"
   select BR2_LEGACY
   help
     The 7.12.x version of gdb has been removed. Use a newer
     version instead.
 
config BR2_PACKAGE_XAPP_MKFONTDIR
   bool "mkfontdir is now included in xapp_mkfontscale"
   select BR2_PACKAGE_XAPP_MKFONTSCALE
   select BR2_LEGACY
   help
     xapp_mkfontscale now includes the mkfontdir script previously
     distributed separately for compatibility with older X11
     versions.
 
config BR2_GDB_VERSION_8_0
   bool "gdb 8.0.x has been removed"
   select BR2_LEGACY
   help
     The 8.0.x version of gdb has been removed. Use a newer
     version instead.
 
config BR2_KERNEL_HEADERS_4_20
   bool "kernel headers version 4.20.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.20.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_5_0
   bool "kernel headers version 5.0.x are no longer supported"
   select BR2_LEGACY
   help
     Version 5.0.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
comment "Legacy options removed in 2019.05"
 
config BR2_CSKY_DSP
   bool "C-SKY DSP support removed"
   select BR2_LEGACY
   help
     C-SKY DSP instruction support for ck810 / ck807 was removed,
     as it was no longer supported in C-SKY gcc. Perhaps the VDSP
     instructions should be used instead, using the BR2_CSKY_VDSP
     option.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_COMPOSITOR
   bool "compositor moved to gst1-plugins-base"
   select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_COMPOSITOR
   select BR2_LEGACY
   help
     The gst1-plugins-bad compositor plugin has moved
     to gst1-plugins-base.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
   bool "gst-plugins-bad IQA option was removed"
   select BR2_LEGACY
   help
     The gst1-plugins-bad IQA option was removed.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPENCV
   bool "gst-plugins-bad opencv option was removed"
   select BR2_LEGACY
   help
     The gst1-plugins-bad opencv option was removed because
     buildroot does not have the opencv_contrib package which
     is required for the bgsegm module which gst1-plugins-bad
     now requires along with opencv3.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_STEREO
   bool "stereo was merged into audiofx in gst1-plugins-good"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_AUDIOFX
   help
     The gst1-plugins-bad stereo plugin has merged with the
     gst1-plugins-base audiofx plugin.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VCD
   bool "gst-plugins-bad vcd plugin was removed."
   select BR2_LEGACY
   help
     The gst1-plugins-bad vcd plugin was removed.
 
config BR2_PACKAGE_LUNIT
   bool "lunit package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_LUA_LUNITX
   help
     The lunit package was removed in favor of its fork lunitx,
     which supports all versions of Lua.
 
config BR2_PACKAGE_FFMPEG_FFSERVER
   bool "ffmpeg ffserver removed"
   select BR2_LEGACY
   help
     On July 10th, 2016, ffserver program has been dropped.
 
config BR2_PACKAGE_LIBUMP
   bool "libump package removed"
   select BR2_LEGACY
   help
     The libump package was removed, it was only used as a
     dependency of sunxi-mali, which itself was removed.
 
config BR2_PACKAGE_SUNXI_MALI
   bool "sunxi-mali package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_SUNXI_MALI_MAINLINE
   help
     The sunxi-mali package was removed, as the
     sunxi-mali-mainline package replaces it for mainline
     kernels on Allwinner platforms.
 
config BR2_BINUTILS_VERSION_2_29_X
   bool "binutils version 2.29 support removed"
   select BR2_LEGACY
   help
     Support for binutils version 2.29 has been removed. The
     current default version (2.31 or later) has been selected
     instead.
 
config BR2_BINUTILS_VERSION_2_28_X
   bool "binutils version 2.28 support removed"
   select BR2_LEGACY
   help
     Support for binutils version 2.28 has been removed. The
     current default version (2.31 or later) has been selected
     instead.
 
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK
   bool "gst-plugins-bad apexsink option removed"
   select BR2_LEGACY
   help
     The gst-plugins-bad apexsink option was removed.
 
comment "Legacy options removed in 2019.02"
 
config BR2_PACKAGE_QT
   bool "qt package removed"
   select BR2_LEGACY
   help
     The qt package was removed.
 
config BR2_PACKAGE_QTUIO
   bool "qtuio package removed"
   select BR2_LEGACY
   help
     The qtuio package was removed.
 
config BR2_PACKAGE_PINENTRY_QT4
   bool "pinentry-qt4 option removed"
   select BR2_LEGACY
   help
     The pinentry-qt4 option was removed.
 
config BR2_PACKAGE_POPPLER_QT
   bool "poppler qt option removed"
   select BR2_LEGACY
   help
     The poppler qt option was removed.
 
config BR2_PACKAGE_OPENCV3_WITH_QT
   bool "opencv3 qt backend option removed"
   select BR2_LEGACY
   help
     The opencv3 qt backend option was removed.
 
config BR2_PACKAGE_OPENCV_WITH_QT
   bool "opencv qt backend option removed"
   select BR2_LEGACY
   help
     The opencv qt backend option was removed.
 
config BR2_PACKAGE_AMD_CATALYST_CCCLE
   bool "catalyst control center option removed"
   select BR2_LEGACY
   help
     The AMD Catalyst Control Center option was removed.
 
config BR2_PACKAGE_SDL_QTOPIA
   bool "sdl qtopia video driver option removed"
   select BR2_LEGACY
   help
     The SDL QTopia video driver option was removed.
 
config BR2_PACKAGE_PYTHON_PYQT
   bool "python-pyqt package removed"
   select BR2_LEGACY
   help
     The python-pyqt package was removed. Consider python-pyqt5
     instead.
 
config BR2_PACKAGE_LUACRYPTO
   bool "luacrypto package removed"
   select BR2_LEGACY
   help
     The luacrypto package was removed. Consider luaossl instead.
 
config BR2_PACKAGE_TN5250
   bool "tn5250 package removed"
   select BR2_LEGACY
   help
     The tn5250 package was removed.
 
config BR2_PACKAGE_BOOST_SIGNALS
   bool "Boost signals removed"
   select BR2_LEGACY
   help
     Its removal was announced in boost 1.68 and its deprecation
     was announced in 1.54. Users are encouraged to use Signals2
     instead.
 
config BR2_PACKAGE_FFTW_PRECISION_SINGLE
   bool "single"
   select BR2_LEGACY
   select BR2_PACKAGE_FFTW_SINGLE
   help
     This option has been removed in favor of
     BR2_PACKAGE_FFTW_SINGLE.
 
config BR2_PACKAGE_FFTW_PRECISION_DOUBLE
   bool "double"
   select BR2_LEGACY
   select BR2_PACKAGE_FFTW_DOUBLE
   help
     This option has been removed in favor of
     BR2_PACKAGE_FFTW_DOUBLE.
 
config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE
   bool "long double"
   depends on !(BR2_TOOLCHAIN_BUILDROOT_UCLIBC && \
       (BR2_arm || BR2_mips || BR2_mipsel))
   select BR2_LEGACY
   select BR2_PACKAGE_FFTW_LONG_DOUBLE
   help
     This option has been removed in favor of
     BR2_PACKAGE_FFTW_LONG_DOUBLE.
 
config BR2_PACKAGE_FFTW_PRECISION_QUAD
   bool "quad"
   depends on (BR2_i386 || BR2_x86_64) && BR2_USE_WCHAR
   select BR2_LEGACY
   select BR2_PACKAGE_FFTW_QUAD
   help
     This option has been removed in favor of
     BR2_PACKAGE_FFTW_QUAD.
 
config BR2_PACKAGE_LUA_5_2
   bool "Lua 5.2.x version removed"
   select BR2_LEGACY
   select BR2_PACKAGE_LUA_5_3
   help
     The Lua 5.2.x version was removed.
 
config BR2_TARGET_GENERIC_PASSWD_MD5
   bool "target passwd md5 format support has been removed"
   select BR2_LEGACY
   help
     The default has been moved to SHA256 and all C libraries
     now support that method by default
 
comment "Legacy options removed in 2018.11"
 
config BR2_TARGET_XLOADER
   bool "xloader has been removed"
   select BR2_LEGACY
   help
     The package has been removed as u-boot SPL provides
     similar functionality
 
config BR2_PACKAGE_TIDSP_BINARIES
   bool "tidsp-binaries package removed"
   select BR2_LEGACY
   help
     The tidsp-binaries package was removed.
 
config BR2_PACKAGE_DSP_TOOLS
   bool "dsp-tools package removed"
   select BR2_LEGACY
   help
     The dsp-tools package was removed.
 
config BR2_PACKAGE_GST_DSP
   bool "gst-dsp package removed"
   select BR2_LEGACY
   help
     The gst-dsp package was removed.
 
config BR2_PACKAGE_BOOTUTILS
   bool "bootutils package removed"
   select BR2_LEGACY
   help
     The bootutils package was removed.
 
config BR2_PACKAGE_EXPEDITE
   bool "expedite package has been removed"
   select BR2_LEGACY
   help
     expedite is not actively maintained anymore.
     https://sourceforge.net/p/enlightenment/mailman/message/36428571
 
config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT
   bool "mesa3d opengl texture float option removed"
   select BR2_LEGACY
   help
     mesa3d now unconditionally enables floating-point textures,
     as the corresponding patent has expired.
 
config BR2_KERNEL_HEADERS_4_10
   bool "kernel headers version 4.10.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.10.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_4_11
   bool "kernel headers version 4.11.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.11.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_4_12
   bool "kernel headers version 4.12.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.12.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_4_13
   bool "kernel headers version 4.13.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.13.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_4_15
   bool "kernel headers version 4.15.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.15.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_4_17
   bool "kernel headers version 4.17.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.17.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_PACKAGE_LIBNFTNL_XML
   bool "libnftl no longer supports XML output"
   select BR2_LEGACY
   help
     libnftnl removed integration with libmxml.
 
config BR2_KERNEL_HEADERS_3_2
   bool "kernel headers version 3.2.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.2.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_4_1
   bool "kernel headers version 4.1.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.1.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_4_16
   bool "kernel headers version 4.16.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.16.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_4_18
   bool "kernel headers version 4.18.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.18.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
###############################################################################
comment "Legacy options removed in 2018.08"
 
config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT
   bool "docker-engine static client option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_DOCKER_CLI_STATIC
   help
     BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to
     BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of
     docker-engine and docker-cli.
 
config BR2_PACKAGE_XPROTO_APPLEWMPROTO
   bool "xproto-applewmproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-applewmproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_BIGREQSPROTO
   bool "xproto-bigreqsproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-bigreqsproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
   bool "xproto-compositeproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-compositeproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_DAMAGEPROTO
   bool "xproto-dameproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-dameproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_DMXPROTO
   bool "xproto-dmxproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-dmxproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_DRI2PROTO
   bool "xproto-dri2proto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-dri2proto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_DRI3PROTO
   bool "xproto-dri3proto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-dri3proto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_FIXESPROTO
   bool "xproto-fixesproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-fixesproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
   bool "xproto-fontcacheproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-fontcacheproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_FONTSPROTO
   bool "xproto-fontsproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-fontsproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_GLPROTO
   bool "xproto-glproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-glproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_INPUTPROTO
   bool "xproto-inputproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-inputproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_KBPROTO
   bool "xproto-kbproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-kbproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_PRESENTPROTO
   bool "xproto-presentproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-presentproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_RANDRPROTO
   bool "xproto-randrproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-randrproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_RECORDPROTO
   bool "xproto-recordproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-recordproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_RENDERPROTO
   bool "xproto-renderproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-renderproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_RESOURCEPROTO
   bool "xproto-resourceproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-resourceproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
   bool "xproto-scrnsaverprot package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-scrnsaverprot package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_VIDEOPROTO
   bool "xproto-videoproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-videoproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
   bool "xproto-windowswmproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-windowswmproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_XCMISCPROTO
   bool "xproto-xcmiscproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-xcmiscproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_XEXTPROTO
   bool "xproto-xextproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-xextproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
   bool "xproto-xf86bigfontproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-xf86bigfontproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_XF86DGAPROTO
   bool "xproto-xf86dgaproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-xf86dgaproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_XF86DRIPROTO
   bool "xproto-xf86driproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-xf86driproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
   bool "xproto-xf86vidmodeproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-xf86vidmodeproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_XINERAMAPROTO
   bool "xproto-xineramaproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-xineramaproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_XPROTO
   bool "xproto-xproto package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-xproto package has been replaced by the
     xorgproto package, which combines all xproto_* packages.
 
config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
   bool "xproto-xproxymanagementprotocol package replaced by xorgproto"
   select BR2_LEGACY
   select BR2_PACKAGE_XORGPROTO
   help
     The xproto-xproxymanagementprotocol package has been
     replaced by the xorgproto package, which combines all
     xproto_* packages.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
   bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
   help
     The opengl option has been moved from gst1-plugins-bad to
     gst1-plugins-base.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
   bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
   help
     The gles2 option has been moved from gst1-plugins-bad to
     gst1-plugins-base.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
   bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
   help
     The glx option has been moved from gst1-plugins-bad to
     gst1-plugins-base.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
   bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
   help
     The egl option has been moved from gst1-plugins-bad to
     gst1-plugins-base.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
   bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
   help
     The x11 option has been moved from gst1-plugins-bad to
     gst1-plugins-base.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
   bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
   help
     The wayland option has been moved from gst1-plugins-bad to
     gst1-plugins-base.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
   bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
   help
     The dispmanx option has been moved from gst1-plugins-mad to
     gst1-plugins-base.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
   bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
   help
     The audiomixer option has been moved from gst1-plugins-bad to
     gst1-plugins-base.
 
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
   bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
   help
     The lame option has been moved from gst1-plugins-ugly to
     gst1-plugins-good.
 
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
   bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
   help
     The mpg123 option has been moved from gst1-plugins-ugly to
     gst1-plugins-good.
 
config BR2_GDB_VERSION_7_11
   bool "gdb 7.11 has been removed"
   select BR2_LEGACY
   help
     The 7.11 version of gdb has been removed. Use a newer version
     instead.
 
config BR2_GDB_VERSION_7_10
   bool "gdb 7.10 has been removed"
   select BR2_LEGACY
   help
     The 7.10 version of gdb has been removed. Use a newer version
     instead.
 
###############################################################################
comment "Legacy options removed in 2018.05"
 
config BR2_PACKAGE_MEDIAART_BACKEND_NONE
   bool "libmediaart none backend option renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the option
     BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
     BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
 
config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
   bool "libmediaart gdk-pixbuf backend option renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the option
     BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
     BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
 
config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
   bool "libmediaart qt backend option renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the option
     BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
     BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
 
# Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
# package/ti-sgx-km/Config.in
config BR2_PACKAGE_TI_SGX_AM335X
   bool "ti-sgx-km AM335X option renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the option
     BR2_PACKAGE_TI_SGX_AM335X has been renamed to
     BR2_PACKAGE_TI_SGX_KM_AM335X.
 
# Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
# package/ti-sgx-km/Config.in
config BR2_PACKAGE_TI_SGX_AM437X
   bool "ti-sgx-km AM437X option renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the option
     BR2_PACKAGE_TI_SGX_AM437X has been renamed to
     BR2_PACKAGE_TI_SGX_KM_AM437X.
 
# Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
# package/ti-sgx-km/Config.in
config BR2_PACKAGE_TI_SGX_AM4430
   bool "ti-sgx-km AM4430 option renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the option
     BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
     BR2_PACKAGE_TI_SGX_KM_AM4430.
 
# Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
# package/ti-sgx-km/Config.in
config BR2_PACKAGE_TI_SGX_AM5430
   bool "ti-sgx-km AM5430 option renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the option
     BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
     BR2_PACKAGE_TI_SGX_KM_AM5430.
 
config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
   bool "janus-gateway audio-bridge option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
 
config BR2_PACKAGE_JANUS_ECHO_TEST
   bool "janus-gateway echo-test option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
 
config BR2_PACKAGE_JANUS_RECORDPLAY
   bool "janus-gateway recordplay option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
 
config BR2_PACKAGE_JANUS_SIP_GATEWAY
   bool "janus-gateway sip-gateway option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
 
config BR2_PACKAGE_JANUS_STREAMING
   bool "janus-gateway streaming option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_STREAMING has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
 
config BR2_PACKAGE_JANUS_TEXT_ROOM
   bool "janus-gateway text-room option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
 
config BR2_PACKAGE_JANUS_VIDEO_CALL
   bool "janus-gateway video-call option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
 
config BR2_PACKAGE_JANUS_VIDEO_ROOM
   bool "janus-gateway video-room option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
 
config BR2_PACKAGE_JANUS_MQTT
   bool "janus-gateway mqtt option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_MQTT
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_MQTT has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_MQTT.
 
config BR2_PACKAGE_JANUS_RABBITMQ
   bool "janus-gateway rabbitmq option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
 
config BR2_PACKAGE_JANUS_REST
   bool "janus-gateway rest option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_REST
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_REST has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_REST.
 
config BR2_PACKAGE_JANUS_UNIX_SOCKETS
   bool "janus-gateway unix-sockets option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
 
config BR2_PACKAGE_JANUS_WEBSOCKETS
   bool "janus-gateway websockets option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
   help
     For consistency reasons, the janus-gateway option
     BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
     BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
 
config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
   bool "ipsec-tools security context disable option renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the option
     BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
     BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
 
config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
   bool "ipsec-tools SELinux security context enable option renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the option
     BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
     BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
 
config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
   bool "ipsec-tools kernel security context enable option renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the option
     BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
     BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
 
config BR2_PACKAGE_LIBTFDI_CPP
   bool "libftdi C++ bindings option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_LIBFTDI_CPP
   help
     The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
     BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
     name.
 
config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
   bool "jquery-ui-themes option black-tie renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     black-tie theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
     BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
 
config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
   bool "jquery-ui-themes option blitzer renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     blitzer theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
     BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
 
config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
   bool "jquery-ui-themes option cupertino renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     cupertino theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
     BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
 
config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
   bool "jquery-ui-themes option dark-hive renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     dark-hive theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
     BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
 
config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
   bool "jquery-ui-themes option dot-luv renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     dot-luv theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
     BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
 
config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
   bool "jquery-ui-themes option eggplant renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     eggplant theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
     BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
 
config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
   bool "jquery-ui-themes option excite-bike renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     excite-bike theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
     BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
 
config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
   bool "jquery-ui-themes option flick renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     flick theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
     BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
 
config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
   bool "jquery-ui-themes option hot-sneaks renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     hot-sneaks theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
     BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
 
config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
   bool "jquery-ui-themes option humanity renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     humanity theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
     BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
 
config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
   bool "jquery-ui-themes option le-frog renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     le-frog theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
     BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
 
config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
   bool "jquery-ui-themes option mint-choc renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     mint-choc theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
     BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
 
config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
   bool "jquery-ui-themes option overcast renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     overcast theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
     BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
 
config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
   bool "jquery-ui-themes option pepper-grinder renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     pepper-grinder theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
     BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
 
config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
   bool "jquery-ui-themes option redmond renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     redmond theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
     BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
 
config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
   bool "jquery-ui-themes option smoothness renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     smoothness theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
     BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
 
config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
   bool "jquery-ui-themes option south-street renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     south-street theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
     BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
 
config BR2_PACKAGE_JQUERY_UI_THEME_START
   bool "jquery-ui-themes option start renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     start theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_START to
     BR2_PACKAGE_JQUERY_UI_THEMES_START.
 
config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
   bool "jquery-ui-themes option sunny renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     sunny theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
     BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
 
config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
   bool "jquery-ui-themes option swanky-purse renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     swanky-purse theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
     BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
 
config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
   bool "jquery-ui-themes option trontastic renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     trontastic theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
     BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
 
config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
   bool "jquery-ui-themes option ui-darkness renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     ui-darkness theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
     BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
 
config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
   bool "jquery-ui-themes option ui-lightness renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     ui-lightness theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
     BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
 
config BR2_PACKAGE_JQUERY_UI_THEME_VADER
   bool "jquery-ui-themes option vader renamed"
   select BR2_LEGACY
   help
     For consistency reasons, the jquery-ui-themes option for the
     vader theme has been renamed from
     BR2_PACKAGE_JQUERY_UI_THEME_VADER to
     BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
 
config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
   bool "bluez5-utils health plugin option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
   help
     For consistency reasons, the option
     BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
     BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
 
config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
   bool "bluez5-utils midi plugin option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
   help
     For consistency reasons, the option
     BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
     BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
 
config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
   bool "bluez5-utils nfc plugin option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
   help
     For consistency reasons, the option
     BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
     BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
 
config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
   bool "bluez5-utils sap plugin option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
   help
     For consistency reasons, the option
     BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
     BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
 
config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
   bool "bluez5-utils sixaxis plugin option renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
   help
     For consistency reasons, the option
     BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
     BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
 
config BR2_PACKAGE_TRANSMISSION_REMOTE
   bool "transmission remote tool option removed"
   select BR2_LEGACY
   select BR2_PACKAGE_TRANSMISSION_DAEMON
   help
     Upstream does not provide a separate configure option for
     the tool transmission-remote, it is built when the
     transmission daemon has been enabled. Therefore, Buildroot
     has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
     for you.
 
config BR2_PACKAGE_LIBKCAPI_APPS
   bool "libkcapi test applications removed"
   select BR2_LEGACY
   select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
   select BR2_PACKAGE_LIBKCAPI_RNGAPP
   select BR2_PACKAGE_LIBKCAPI_SPEED
   select BR2_PACKAGE_LIBKCAPI_TEST
   help
     Test applications (hasher, rng read, speed-test, test) now
     have their own configuration options in the libkcapi menu.
 
config BR2_PACKAGE_MPLAYER
   bool "mplayer package removed"
   select BR2_LEGACY
   help
     The mplayer package was removed.
 
config BR2_PACKAGE_MPLAYER_MPLAYER
   bool "mplayer package removed"
   select BR2_LEGACY
   help
     The mplayer package was removed.
 
config BR2_PACKAGE_MPLAYER_MENCODER
   bool "mplayer package removed"
   select BR2_LEGACY
   help
     The mplayer package was removed.
 
config BR2_PACKAGE_LIBPLAYER_MPLAYER
   bool "mplayer support in libplayer removed"
   select BR2_LEGACY
   help
     The mplayer package was removed.
 
config BR2_PACKAGE_IQVLINUX
   bool "iqvlinux package removed"
   select BR2_LEGACY
   help
     This package contained a kernel module from Intel, which
     could only be used together with Intel userspace tools
     provided under NDA, which also come with the same kernel
     module. The copy of the kernel module available on
     SourceForge is provided only to comply with the GPLv2
     requirement. Intel engineers were even surprised it even
     built and were not willing to make any effort to fix their
     tarball naming to contain a version number. Therefore, it
     does not make sense for Buildroot to provide such a package.
 
     See https://sourceforge.net/p/e1000/bugs/589/ for the
     discussion.
 
config BR2_BINFMT_FLAT_SEP_DATA
   bool "binfmt FLAT with separate code and data removed"
   select BR2_LEGACY
   help
     This FLAT binary format was only used on Blackfin, which has
     been removed.
 
config BR2_bfin
   bool "Blackfin architecture support removed"
   select BR2_LEGACY
   help
     Following the removal of Blackfin support for the upstream
     Linux kernel, Buildroot has removed support for this CPU
     architecture.
 
config BR2_PACKAGE_KODI_ADSP_BASIC
   bool "kodi-adsp-basic package removed"
   select BR2_LEGACY
   help
     kodi-adsp-basic is unmaintained
 
config BR2_PACKAGE_KODI_ADSP_FREESURROUND
   bool "kodi-adsp-freesurround package removed"
   select BR2_LEGACY
   help
     kodi-adsp-freesurround is unmaintained
 
###############################################################################
comment "Legacy options removed in 2018.02"
 
config BR2_KERNEL_HEADERS_3_4
   bool "kernel headers version 3.4.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.4.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_3_10
   bool "kernel headers version 3.10.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.10.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_3_12
   bool "kernel headers version 3.12.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.12.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_BINUTILS_VERSION_2_27_X
   bool "binutils version 2.27 support removed"
   select BR2_LEGACY
   help
     Support for binutils version 2.27 has been removed. The
     current default version (2.29 or later) has been selected
     instead.
 
config BR2_PACKAGE_EEPROG
   bool "eeprog package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_I2C_TOOLS
   select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
   help
     The eeprog program is now provided by the i2c-tools package.
 
config BR2_PACKAGE_GNUPG2_GPGV2
   bool "gnupg2 gpgv2 option removed"
   select BR2_LEGACY
   select BR2_PACKAGE_GNUPG2_GPGV
   help
     The gpgv2 executable is now named gpgv. The config option
     has been renamed accordingly.
 
config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
   bool "Vivante apitrace tool option removed"
   select BR2_LEGACY
   help
     The apitrace tool for Vivante is not provided by the
     imx-gpu-viv package any longer.
 
config BR2_PACKAGE_IMX_GPU_VIV_G2D
   bool "Vivante G2D libraries from imx-gpu-viv removed"
   select BR2_LEGACY
   select BR2_PACKAGE_IMX_GPU_G2D
   help
     The G2D libraries are now provided by the imx-gpu-g2d package.
 
###############################################################################
comment "Legacy options removed in 2017.11"
 
config BR2_PACKAGE_RFKILL
   bool "rfkill package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_UTIL_LINUX
   select BR2_PACKAGE_UTIL_LINUX_RFKILL
   help
     The rfkill program is now provided by the util-linux package.
 
config BR2_PACKAGE_UTIL_LINUX_RESET
   bool "util-linux reset option removed"
   select BR2_LEGACY
   help
     The util-linux package no longer offers a "reset" command. Use
     either the reset command provided by BusyBox or select ncurses
     programs, which will install a symlink from "tset" to reset.
 
config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
   bool "policycoreutils audit2allow option removed"
   select BR2_LEGACY
   select BR2_PACKAGE_SELINUX_PYTHON
   select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
   help
     The policycoreutils package no longer offers audit2allow
     as a option. This package has been moved into the
     selinux-python package by the SELinux maintainers.
 
config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
   bool "policycoreutils restorecond option removed"
   select BR2_LEGACY
   select BR2_PACKAGE_RESTORECOND
   help
     The policycoreutils package no longer offers restorecond
     as a option.  This package has been moved into a seperate
     package maintained by the SELinux maintainers.
 
config BR2_PACKAGE_SEPOLGEN
   bool "sepolgen package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_SELINUX_PYTHON
   select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
   help
     Sepolgen is no longer a individual package, but instead has
     been moved into the selinux-python package by the SELinux
     maintainers.
 
config BR2_PACKAGE_OPENOBEX_BLUEZ
   bool "openobex bluez option removed"
   select BR2_LEGACY
   select BR2_PACKAGE_BLUEZ_UTILS
   help
     The OpenOBEX package no longer offers an option to enable or
     disable BlueZ support. Instead, BlueZ support is always
     included when the bluez5_utils or bluez_utils package is
     selected.
 
config BR2_PACKAGE_OPENOBEX_LIBUSB
   bool "openobex libusb option removed"
   select BR2_LEGACY
   select BR2_PACKAGE_LIBUSB
   help
     The OpenOBEX package no longer offers an option to enable or
     disable libusb support. Instead, USB support is always
     included when the libusb package is selected.
 
config BR2_PACKAGE_OPENOBEX_APPS
   bool "openobex apps option removed"
   select BR2_LEGACY
   help
     The OpenOBEX package no longer offers an option to enable or
     disable apps support.
 
config BR2_PACKAGE_OPENOBEX_SYSLOG
   bool "openobex syslog option removed"
   select BR2_LEGACY
   help
     The OpenOBEX package no longer offers an option to enable or
     disable syslog support.
 
config BR2_PACKAGE_OPENOBEX_DUMP
   bool "openobex dump option removed"
   select BR2_LEGACY
   help
     The OpenOBEX package no longer offers an option to enable or
     disable dump support.
 
config BR2_PACKAGE_AICCU
   bool "aiccu utility removed"
   select BR2_LEGACY
   help
     As the SixXS project has ceased its operation on 2017-06-06,
     the AICCU utility has no use anymore and has been removed.
 
     https://www.sixxs.net/sunset/
 
config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
   bool "util-linux login utilities option removed"
   select BR2_LEGACY
   select BR2_PACKAGE_UTIL_LINUX_LAST
   select BR2_PACKAGE_UTIL_LINUX_LOGIN
   select BR2_PACKAGE_UTIL_LINUX_RUNUSER
   select BR2_PACKAGE_UTIL_LINUX_SU
   select BR2_PACKAGE_UTIL_LINUX_SULOGIN
   help
     Login utilities (last, login, runuser, su, sulogin) now have
     their own configuration options in the util-linux menu.
 
###############################################################################
comment "Legacy options removed in 2017.08"
 
config BR2_TARGET_GRUB
   bool "grub (aka grub-legacy) has been removed"
   select BR2_LEGACY
   help
     grub-legacy is no longer maintained, and no longer builds with
     recent binutils versions.
 
     Use grub2 or syslinux instead.
 
config BR2_PACKAGE_SIMICSFS
   bool "simicsfs support removed"
   select BR2_LEGACY
   help
     Support for simicsfs kernel driver that provides access to a
     host computer's local filesystem when the target is
     executing within a SIMICS simulation has been removed.
 
     Simics is now moving away from the simicsfs kernel module,
     as the kernel module has required too much maintenance
     work. Users should move to the user mode Simics agent
     instead.
 
config BR2_BINUTILS_VERSION_2_26_X
   bool "binutils version 2.26 support removed"
   select BR2_LEGACY
   help
     Support for binutils version 2.26 has been removed. The
     current default version (2.28 or later) has been selected
     instead.
 
config BR2_XTENSA_OVERLAY_DIR
   string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
   help
     The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
     BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
     path to the overlay file, not to the directory containing
     it.
 
config BR2_XTENSA_OVERLAY_DIR_WRAP
   bool
   default y if BR2_XTENSA_OVERLAY_DIR != ""
   select BR2_LEGACY
 
config BR2_XTENSA_CUSTOM_NAME
   string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
   help
     The BR2_XTENSA_CUSTOM_NAME option has been removed.
 
config BR2_XTENSA_CUSTOM_NAME_WRAP
   bool
   default y if BR2_XTENSA_CUSTOM_NAME != ""
   select BR2_LEGACY
 
config BR2_PACKAGE_HOST_MKE2IMG
   bool "host mke2img has been removed"
   select BR2_LEGACY
   help
     We now call mkfs directly to generate ext2/3/4 filesystem
     image, so mke2img is no longer necessary.
 
config BR2_TARGET_ROOTFS_EXT2_BLOCKS
   int "exact size in blocks has been removed"
   default 0
   help
     This option has been removed in favor of
     BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
     to the value you had before. Set to 0 here to remove the
     warning.
 
config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
   bool
   default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
       BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
   select BR2_LEGACY
 
# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
 
config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
   int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
   default 0
   help
     Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
     images. It now automatically selects the number of inodes
     based on the image size. The extra number of inodes can no
     longer be provided; instead, provide the total number of
     inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
 
config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
   bool
   default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
   select BR2_LEGACY
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
   bool "cdxaparse removed"
   select BR2_LEGACY
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
   bool "dataurisrc moved to gstreamer1"
   select BR2_LEGACY
   help
     Dataurisrc has moved to gstreamer core and is always built.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
   bool "dccp removed"
   select BR2_LEGACY
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
   bool "hdvparse removed"
   select BR2_LEGACY
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
   bool "mve removed"
   select BR2_LEGACY
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
   bool "nuvdemux removed"
   select BR2_LEGACY
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
   bool "patchdetect removed"
   select BR2_LEGACY
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
   bool "sdi removed"
   select BR2_LEGACY
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
   bool "tta removed"
   select BR2_LEGACY
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
   bool "videomeasure removed"
   select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
   select BR2_LEGACY
   help
     videomeasure plugin has been removed and has been replaced by
     iqa, which has automatically been enabled.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
   bool "apexsink removed"
   select BR2_LEGACY
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
   bool "sdl removed"
   select BR2_LEGACY
 
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
   bool "mad (*.mp3 audio) removed"
   select BR2_LEGACY
 
config BR2_STRIP_none
   bool "Strip command 'none' has been removed"
   select BR2_LEGACY
   help
     The strip command choice has been changed into a single
     boolean option. Please check that the new setting is
     correct (in the "Build options" sub-menu)
 
config BR2_PACKAGE_BEECRYPT_CPP
   bool "C++ support removed in beecrypt"
   select BR2_LEGACY
   help
     Support for C++ depends on icu. The beecrypt package is
     incompatible with icu 59+.
 
config BR2_PACKAGE_SPICE_CLIENT
   bool "spice client support removed"
   select BR2_LEGACY
   help
     Spice client support has been removed upstream. The
     functionality now lives in the spice-gtk widget and
     virt-viewer.
 
config BR2_PACKAGE_SPICE_GUI
   bool "spice gui support removed"
   select BR2_LEGACY
   help
     Spice gui support has been removed upstream. The
     functionality now lives in the spice-gtk widget and
     virt-viewer.
 
config BR2_PACKAGE_SPICE_TUNNEL
   bool "spice network redirection removed"
   select BR2_LEGACY
   help
     Spice network redirection, aka tunnelling has been removed
     upstream.
 
config BR2_PACKAGE_INPUT_TOOLS
   bool "input-tools removed"
   select BR2_LEGACY
   select BR2_PACKAGE_LINUXCONSOLETOOLS
   help
     input-tools has been removed, it is replaced by
     linuxconsoletools, which has automatically been enabled.
 
config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
   bool "inputattach moved to linuxconsoletools"
   select BR2_LEGACY
   select BR2_PACKAGE_LINUXCONSOLETOOLS
   select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
   help
     input-tools has been removed, inputattach is now part
     of linuxconsoletools, which has automatically been
     enabled.
 
config BR2_PACKAGE_INPUT_TOOLS_JSCAL
   bool "jscal moved to linuxconsoletools"
   select BR2_LEGACY
   select BR2_PACKAGE_LINUXCONSOLETOOLS
   select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
   help
     input-tools has been removed, jscal is now part
     of linuxconsoletools, which has automatically been
     enabled.
 
config BR2_PACKAGE_INPUT_TOOLS_JSTEST
   bool "jstest moved to linuxconsoletools"
   select BR2_LEGACY
   select BR2_PACKAGE_LINUXCONSOLETOOLS
   select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
   help
     input-tools has been removed, jstest is now part
     of linuxconsoletools, which has automatically been
     enabled.
 
config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
   bool "SH Sourcery toolchain has been removed"
   select BR2_LEGACY
   help
     The Sourcery CodeBench toolchain for the sh architecture has
     been removed, since it uses glibc older than 2.17 that
     requires -lrt to link executables using clock_* system calls.
     This makes this toolchain difficult to maintain over time.
 
config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
   bool "x86 Sourcery toolchain has been removed"
   select BR2_LEGACY
   help
     The Sourcery CodeBench toolchain for the x86 architecture has
     been removed, since it uses glibc older than 2.17 that
     requires -lrt to link executables using clock_* system calls.
     This makes this toolchain difficult to maintain over time.
 
config BR2_GCC_VERSION_4_8_X
   bool "gcc 4.8.x support removed"
   select BR2_LEGACY
   help
     Support for gcc version 4.8.x has been removed. The current
     default version (5.x or later) has been selected instead.
 
###############################################################################
comment "Legacy options removed in 2017.05"
 
config BR2_PACKAGE_SUNXI_MALI_R2P4
   bool "sunxi-mali r2p4 removed"
   select BR2_LEGACY
   help
     sunxi-mali libMali for r2p4 Mali kernel module has been
     removed since the libump package only provides libUMP.so.3.
     libMali for r2p4 Mali kernel module requires libUMP.so.2.
 
config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
   bool "CoffeeScript option has been removed"
   select BR2_LEGACY
   help
     The option to enable NodeJS CoffeeScript has been removed.
     To continue using it, add "coffee-script" to
     BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
 
config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
   bool "Express web application framework option has been removed"
   select BR2_LEGACY
   help
     The option to enable the NodeJS Express web application
     framework has been removed. To continue using it, add
     "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
 
config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
   bool "bluez5_utils gatttool install option removed"
   select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
   help
     The option to install gatttool specifically has been removed.
     Since version 5.44 gatttool is in the list of deprecated
     tools. The option to build and install deprecated tools has
     been automatically enabled.
 
config BR2_PACKAGE_OPENOCD_FT2XXX
   bool "openocd ft2232 support has been removed"
   select BR2_PACKAGE_OPENOCD_FTDI
   select BR2_LEGACY
   help
     FT2232 support in OpenOCD has been removed, it's replaced by
     FDTI support, which has automatically been enabled.
 
config BR2_PACKAGE_KODI_RTMPDUMP
   bool "kodi rtmp has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
   help
     Internal rtmp support was removed from Kodi.
 
config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
   bool "kodi-visualisation-fountain has been removed"
   select BR2_LEGACY
   help
     According to upstream 'the visualization is not currently
     in a working shape.'
 
config BR2_PACKAGE_PORTMAP
   bool "portmap has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_RPCBIND
   help
     The portmap upstream tarball is removed, no releases since
     ten years and latest change in upstream git in 2014.
     You should better use rpcbind as a RPC portmapper.
 
config BR2_BINUTILS_VERSION_2_25_X
   bool "binutils version 2.25 support removed"
   select BR2_LEGACY
   help
     Support for binutils version 2.25 has been removed. The
     current default version (2.27 or later) has been selected
     instead.
 
config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
   bool "uclibc RPC support has been removed"
   select BR2_LEGACY
   help
     uClibc-ng removed internal RPC implementation in 1.0.23. You
     should use libtirpc instead.
 
config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
   int "extra size in blocks has been removed"
   default 0
   help
     Since the support for auto calculation of the filesystem size
     has been removed, this option is now useless and must be 0.
     You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
     matchs your needs.
 
config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
   bool
   default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
   select BR2_LEGACY
 
config BR2_PACKAGE_SYSTEMD_KDBUS
   bool "systemd-kdbus has been removed"
   select BR2_LEGACY
   help
     --enable/disable-kdbus configure option has been removed since
     systemd-231.
 
config BR2_PACKAGE_POLARSSL
   bool "polarssl has been removed"
   select BR2_LEGACY
   help
     The polarssl crypto library has been removed since the 1.2.x
     release branch is no longer maintained. Newer upstream
     branches/releases (mbedtls) have API changes so they're not
     drop-in replacements.
 
config BR2_NBD_CLIENT
   bool "nbd client option was renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_NBD_CLIENT
   help
     The nbd client option has been renamed to
     BR2_PACKAGE_NBD_CLIENT.
 
config BR2_NBD_SERVER
   bool "nbd server option was renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_NBD_SERVER
   help
     The nbd server option has been renamed to
     BR2_PACKAGE_NBD_SERVER.
 
config BR2_PACKAGE_GMOCK
   bool "gmock merged into gtest package"
   select BR2_LEGACY
   select BR2_PACKAGE_GTEST
   select BR2_PACKAGE_GTEST_GMOCK
   help
     GMock is now a suboption of the GTest package.
 
config BR2_KERNEL_HEADERS_4_8
   bool "kernel headers version 4.8.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.8.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_3_18
   bool "kernel headers version 3.18.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.18.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_GLIBC_VERSION_2_22
   bool "glibc 2.22 removed"
   select BR2_LEGACY
   help
     Support for glibc version 2.22 has been removed. The current
     default version has been selected instead.
 
###############################################################################
comment "Legacy options removed in 2017.02"
 
config BR2_PACKAGE_PERL_DB_FILE
   bool "perl-db-file removed"
   select BR2_LEGACY
   select BR2_PACKAGE_BERKELEYDB
   select BR2_PACKAGE_PERL
   help
     DB_File can be built as a core Perl module, so the separate
     perl-db-file package has been removed.
 
config BR2_KERNEL_HEADERS_4_7
   bool "kernel headers version 4.7.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.7.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_4_6
   bool "kernel headers version 4.6.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.6.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_4_5
   bool "kernel headers version 4.5.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.5.x of the Linux kernel headers are no longer
      maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_3_14
   bool "kernel headers version 3.14.x are no longer supported"
   select BR2_LEGACY
     help
     Version 3.14.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
   bool "musl-cross 1.1.12 toolchain removed"
   select BR2_LEGACY
   help
     The support for the prebuilt toolchain based on the Musl C
     library provided by the musl-cross project has been removed.
     Upstream doesn't provide any prebuilt toolchain anymore, use
     the Buildroot toolchain instead.
 
config BR2_UCLIBC_INSTALL_TEST_SUITE
   bool "uClibc tests now in uclibc-ng-test"
   select BR2_LEGACY
   select BR2_PACKAGE_UCLIBC_NG_TEST
   help
     The test suite of the uClibc C library has been moved into a
     separate package, uclibc-ng-test.
 
config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
   bool "Blackfin.uclinux.org 2014R1 toolchain removed"
   select BR2_LEGACY
   help
     The ADI Blackfin toolchain has many bugs which are fixed in
     more recent gcc and uClibc-ng releases. Use the Buildroot
     toolchain instead.
 
config BR2_PACKAGE_MAKEDEVS
   bool "makedevs removed"
   select BR2_LEGACY
   help
     The makedevs tool is part of busybox. The Buildroot fork
     should not be used outside of the Buildroot infrastructure.
 
config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
   bool "Arago ARMv7 2011.09 removed"
   select BR2_LEGACY
   help
     The Arago toolchains are every old and not updated anymore.
 
config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
   bool "Arago ARMv5 2011.09 removed"
   select BR2_LEGACY
   help
     The Arago toolchains are every old and not updated anymore.
 
config BR2_PACKAGE_SNOWBALL_HDMISERVICE
   bool "snowball-hdmiservice removed"
   select BR2_LEGACY
   help
     We no longer have support for the Snowball platform in
     Buildroot, so this package was no longer useful.
 
config BR2_PACKAGE_SNOWBALL_INIT
   bool "snowball-init removed"
   select BR2_LEGACY
   help
     We no longer have support for the Snowball platform in
     Buildroot, so this package was no longer useful.
 
config BR2_GDB_VERSION_7_9
   bool "gdb 7.9 has been removed"
   select BR2_LEGACY
   help
     The 7.9 version of gdb has been removed. Use a newer version
     instead.
 
###############################################################################
comment "Legacy options removed in 2016.11"
 
config BR2_PACKAGE_PHP_SAPI_CLI_CGI
   bool "PHP CGI and CLI options are now seperate"
   select BR2_PACKAGE_PHP_SAPI_CLI
   select BR2_PACKAGE_PHP_SAPI_CGI
   select BR2_LEGACY
   help
     The PHP Interface options have been split up into a
     separate option for each interface.
 
config BR2_PACKAGE_PHP_SAPI_CLI_FPM
   bool "PHP CLI and FPM options are now separate"
   select BR2_PACKAGE_PHP_SAPI_CLI
   select BR2_PACKAGE_PHP_SAPI_FPM
   select BR2_LEGACY
   help
     The PHP Interface options have been split up into a
     separate option for each interface.
 
config BR2_PACKAGE_WVSTREAMS
   bool "wvstreams removed"
   select BR2_LEGACY
   help
     wvstreams is not maintained anymore since about 2009. It also
     doesn't build anymore with recent compilers (GCC 5+).
 
config BR2_PACKAGE_WVDIAL
   bool "wvdial removed"
   select BR2_LEGACY
   help
     wvdial is not maintained anymore since about 2009. It also
     doesn't build anymore with recent compilers (GCC 5+).
 
config BR2_PACKAGE_WEBKITGTK24
   bool "webkitgtk 2.4.x removed"
   select BR2_LEGACY
   help
     This legacy package only existed because some other packages
     depended on that specific version of webkitgtk. However, the
     other packages have been fixed. webkitgtk 2.4 is full of
     security issues so it needs to be removed.
 
config BR2_PACKAGE_TORSMO
   bool "torsmo removed"
   select BR2_LEGACY
   help
     torsmo has been unmaintained for a long time, and nobody
     seems to be interested in it.
 
config BR2_PACKAGE_SSTRIP
   bool "sstrip removed"
   select BR2_LEGACY
   help
     sstrip is unmaintained and potentially harmful. It doesn't
     save so much compared to normal binutils strip, and there is
     a big risk of binaries that don't work. Use normal strip
     instead.
 
config BR2_KERNEL_HEADERS_4_3
   bool "kernel headers version 4.3.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.3.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_KERNEL_HEADERS_4_2
   bool "kernel headers version 4.2.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.2.x of the Linux kernel headers are no longer
     maintained upstream and are now removed.
 
config BR2_PACKAGE_KODI_ADDON_XVDR
   bool "kodi-addon-xvdr removed"
   select BR2_LEGACY
   help
     According to the github project page:
     https://github.com/pipelka/xbmc-addon-xvdr
     this package is discontinued.
 
config BR2_PACKAGE_IPKG
   bool "ipkg removed"
   select BR2_LEGACY
   help
     ipkg dates back to the early 2000s when Compaq started the
     handhelds.org project and it hasn't seen development since
     2006. Use opkg as a replacement.
 
config BR2_GCC_VERSION_4_7_X
   bool "gcc 4.7.x support removed"
   select BR2_LEGACY
   help
     Support for gcc version 4.7.x has been removed. The current
     default version (4.9.x or later) has been selected instead.
 
config BR2_BINUTILS_VERSION_2_24_X
   bool "binutils version 2.24 support removed"
   select BR2_LEGACY
   help
     Support for binutils version 2.24 has been removed. The
     current default version (2.26 or later) has been selected
     instead.
 
config BR2_PACKAGE_WESTON_RPI
   bool "Weston propietary RPI support is gone"
   select BR2_LEGACY
   help
     Upstream decided the propietary (rpi-userland) weston composer
     support wasn't worth the effort so it was removed. Switch to
     the open VC4 support.
 
config BR2_LINUX_KERNEL_TOOL_CPUPOWER
   bool "linux-tool cpupower"
   depends on BR2_LINUX_KERNEL
   select BR2_LEGACY
   select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
   help
     Linux tool cpupower option was renamed.
 
config BR2_LINUX_KERNEL_TOOL_PERF
   bool "linux-tool perf"
   depends on BR2_LINUX_KERNEL
   select BR2_LEGACY
   select BR2_PACKAGE_LINUX_TOOLS_PERF
   help
     Linux tool perf option was renamed.
 
config BR2_LINUX_KERNEL_TOOL_SELFTESTS
   bool "linux-tool selftests"
   depends on BR2_LINUX_KERNEL
   select BR2_LEGACY
   select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
   help
     Linux tool selftests option was renamed.
 
config BR2_GCC_VERSION_4_8_ARC
   bool "gcc arc option renamed"
   select BR2_LEGACY
   select BR2_GCC_VERSION_ARC
   help
     The option that selects the gcc version for the ARC
     architecture has been renamed to BR2_GCC_VERSION_ARC.
 
config BR2_KERNEL_HEADERS_4_0
   bool "kernel headers version 4.0.x are no longer supported"
   select BR2_LEGACY
   help
     Version 4.0.x of the Linux kernel headers have been deprecated
     for more than four buildroot releases and are now removed.
 
config BR2_KERNEL_HEADERS_3_19
   bool "kernel headers version 3.19.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.19.x of the Linux kernel headers have been
     deprecated for more than four buildroot releases and are now
     removed.
 
config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
   bool "libevas-generic-loaders package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.18, libevas-generic-loaders is now provided by the
     efl package.
 
config BR2_PACKAGE_ELEMENTARY
   bool "elementary package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.18, elementary is now provided by the efl package.
 
###############################################################################
comment "Legacy options removed in 2016.08"
 
config BR2_PACKAGE_EFL_JP2K
   bool "libevas jp2k loader has been removed"
   select BR2_LEGACY
   help
     JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
     while Buildroot only packages openjpeg 2.x. Therefore, the
     JP2K loader has been removed from EFL.
 
config BR2_PACKAGE_SYSTEMD_COMPAT
   bool "systemd compatibility libraries have been removed"
   select BR2_LEGACY
   help
     The systemd option to enable the compatibility libraries has
     been removed. Theses libraries have been useless since a few
     version, and have been fully dropped from the source since
     v230.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
   bool "gst1-plugins-bad liveadder plugin removed"
   select BR2_LEGACY
   select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
   help
     The functionality of the liveadder plugin of the
     gst1-plugins-bad package has been merged into audiomixer.
 
config BR2_PACKAGE_LIBFSLVPUWRAP
   bool "libfslvpuwrap has been renamed to imx-vpuwrap"
   select BR2_LEGACY
   select BR2_PACKAGE_IMX_VPUWRAP
   help
     The libfslvpuwrap has been renamed to match the renamed
     package.
 
config BR2_PACKAGE_LIBFSLPARSER
   bool "libfslparser has been renamed to imx-parser"
   select BR2_LEGACY
   select BR2_PACKAGE_IMX_PARSER
   help
     The libfslparser has been renamed to match the renamed
     package.
 
config BR2_PACKAGE_LIBFSLCODEC
   bool "libfslcodec has been renamed to imx-codec"
   select BR2_LEGACY
   select BR2_PACKAGE_IMX_CODEC
   help
     The libfslcodec has been renamed to match the renamed package.
 
config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
   bool "FIT support in uboot-tools has been refactored"
   select BR2_LEGACY
   select BR2_PACKAGE_DTC
   select BR2_PACKAGE_DTC_PROGRAMS
   select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
   select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
   select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
   help
     This option has been removed in favor of a more fine-grained
     configuration, which is recommended. Selecting this option
     enables FIT and FIT signature support for the target packages.
     It will also select the dtc and openssl packages.
 
config BR2_PTHREADS_OLD
   bool "linuxthreads (stable/old)"
   select BR2_LEGACY
   help
     Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
     BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
 
config BR2_BINUTILS_VERSION_2_23_X
   bool "binutils 2.23 removed"
   select BR2_LEGACY
   help
     Binutils 2.23 has been removed, using a newer version is
     recommended.
 
config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
   bool "eglibc support has been removed"
   select BR2_LEGACY
   help
     The eglibc project no longer exists, as it has been merged
     back into the glibc project. Therefore, support for eglibc
     has been removed, and glibc should be used instead.
 
config BR2_GDB_VERSION_7_8
   bool "gdb 7.8 has been removed"
   select BR2_LEGACY
   help
     The 7.8 version of gdb has been removed. Use a newer version
     instead.
 
###############################################################################
comment "Legacy options removed in 2016.05"
 
config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
   bool "openvpn polarssl crypto backend removed"
   select BR2_LEGACY
   help
     The OpenVPN polarssl crypto backend option has been removed.
     Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
     compatible with mbedtls (polarssl) series 2.x which is the
     version provided in buildroot. And both can't coexist.
     It now uses OpenSSL as the only option.
 
config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
   bool "nginx http spdy module removed"
   select BR2_LEGACY
   select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
   help
     The ngx_http_spdy_module has been superseded by the
     ngx_http_v2_module since nginx v1.9.5.  The
     ngx_http_v2_module modules has been automatically selected
     in your configuration.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
   bool "gst1-plugins-bad rtp plugin moved to good"
   select BR2_LEGACY
   help
     The rtp plugin has been moved from gst1-plugins-base to
     gst1-plugins-good.
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
   bool "gst1-plugins-bad mpg123 plugin moved to ugly"
   select BR2_LEGACY
   help
     The mpg123 plugin has been moved from gst1-plugins-bad to
     gst1-plugins-ugly.
 
config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
   bool "PowerPC Sourcery toolchain has been removed"
   select BR2_LEGACY
   help
     The Sourcery CodeBench toolchain for the PowerPC
     architecture has been removed, as it was very old, not
     maintained, and causing numerous build failures with modern
     userspace packages.
 
config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
   bool "PowerPC Sourcery E500v2 toolchain has been removed"
   select BR2_LEGACY
   help
     The Sourcery CodeBench toolchain for the PowerPC E500v2
     architecture has been removed, as it was very old, not
     maintained, and causing numerous build failures with modern
     userspace packages.
 
config BR2_x86_i386
   bool "x86 i386 support removed"
   select BR2_LEGACY
   help
     The support for the i386 processors of the x86 architecture
     has been removed.
 
config BR2_PACKAGE_QT5QUICK1
   bool "qt5quick1 package removed"
   select BR2_LEGACY
   help
     The qt5quick1 package has been removed, since it was removed
     from upstream starting from Qt 5.6.
 
config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
   string "uboot custom patch dir has been removed"
   help
     The uboot custom patch directory option has been removed. Use
     the improved BR2_TARGET_UBOOT_PATCH option instead.
 
config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
   bool
   default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
   select BR2_LEGACY
 
# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
# boot/uboot/Config.in
 
config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
   bool "xf86-input-void removed"
   select BR2_LEGACY
   help
     The xf86-input-void package has been removed, there's no need
     for it in any modern (post-2007) xorg server.
 
config BR2_KERNEL_HEADERS_3_17
   bool "kernel headers version 3.17.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.17.x of the Linux kernel headers have been
     deprecated for more than four buildroot releases and are now
     removed.
 
config BR2_GDB_VERSION_7_7
   bool "gdb 7.7 has been removed"
   select BR2_LEGACY
   help
     The 7.7 version of gdb has been removed. Use a newer version
     instead.
 
config BR2_PACKAGE_FOOMATIC_FILTERS
   bool "foomatic-filters"
   select BR2_LEGACY
   help
     The foomatic-filters package was removed.
 
config BR2_PACKAGE_SAMBA
   bool "samba"
   select BR2_LEGACY
   help
     The samba package was removed in favour of samba4 since the
     3.x series isn't supported by upstream any longer.
 
config BR2_PACKAGE_KODI_WAVPACK
   bool "wavpack"
   select BR2_LEGACY
   help
     wavpack support was removed in favour of ffmpeg:
     https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
 
config BR2_PACKAGE_KODI_RSXS
   bool "rsxs support in Kodi was moved to an addon"
   select BR2_LEGACY
   select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
   help
     rsxs support in Kodi was moved to an addon
 
config BR2_PACKAGE_KODI_GOOM
   bool "Goom support in Kodi was moved to an addon"
   select BR2_LEGACY
   select BR2_PACKAGE_KODI_VISUALISATION_GOOM
   help
     Goom support in Kodi was moved to an addon
 
config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
   bool "systemd all extras option has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_XZ
   select BR2_PACKAGE_LIBGCRYPT
   help
     The systemd option to enable "all extras" has been
     removed. To get the same features, the libgcrypt and xz
     package should now be enabled.
 
config BR2_GCC_VERSION_4_5_X
   bool "gcc 4.5.x has been removed"
   select BR2_LEGACY
   help
     The 4.5.x version of gcc has been removed. Use a newer
     version instead.
 
config BR2_PACKAGE_SQLITE_READLINE
   bool "sqlite command-line editing support was updated"
   select BR2_PACKAGE_NCURSES
   select BR2_PACKAGE_READLINE
   select BR2_LEGACY
   help
     This option was removed in favour of the sqlite package
     deciding itself depending on the enabled packages whether
     command-line editing should be enabled, it also also takes
     libedit into account.
 
###############################################################################
comment "Legacy options removed in 2016.02"
 
config BR2_PACKAGE_DOVECOT_BZIP2
   bool "bzip2 support option has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_BZIP2
   help
     Bzip2 support is built if the bzip2 package is selected.
 
config BR2_PACKAGE_DOVECOT_ZLIB
   bool "zlib support option has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_ZLIB
   help
     Zlib support is built if the zlib package is selected.
 
config BR2_PACKAGE_E2FSPROGS_FINDFS
   bool "e2fsprogs findfs option has been removed"
   select BR2_LEGACY
   help
     This option attempted to enable findfs capabilities from
     e2fsprogs but has not worked since July 2015 (due to
     packaging changes). One can use BusyBox's findfs support or
     enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
 
config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
   bool "openpowerlink debug option has been removed"
   select BR2_LEGACY
   help
     This option depends on BR2_ENABLE_DEBUG which should not be
     used by packages anymore.
 
config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
   bool "openpowerlink package has been updated"
   select BR2_LEGACY
   select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
   help
     openpowerlink kernel modules are built if the
     kernel stack library is selected.
 
config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
   bool "openpowerlink package has been updated"
   select BR2_LEGACY
   select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
   help
     The user space support has been split in two part:
     - a monolitic user space library
     - a user spae deamon driver
 
config BR2_LINUX_KERNEL_SAME_AS_HEADERS
   bool "using the linux headers version for the kernel has been removed"
   select BR2_LEGACY
   help
     The option to use the version of the kernel headers for the
     kernel to build has been removed.
 
     There is now the converse, better-suited and more versatile
     option to use the kernel version for the linux headers.
 
config BR2_PACKAGE_CUPS_PDFTOPS
   bool "Pdftops support has been removed from Cups"
   select BR2_PACKAGE_CUPS_FILTERS
   select BR2_LEGACY
   help
     Pdftops support has been removed from the cups package
     It is now part of the cups-filters package.
 
config BR2_KERNEL_HEADERS_3_16
   bool "kernel headers version 3.16.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.16.x of the Linux kernel headers have been
     deprecated for more than four buildroot releases and are now
     removed.
 
config BR2_PACKAGE_PYTHON_PYXML
   bool "python-pyxml package has been removed"
   select BR2_LEGACY
   help
     PyXML is obsolete and its functionality is covered either via
     native Python XML support or python-lxml package.
 
# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
config BR2_ENABLE_SSP
   bool "Stack Smashing protection now has different levels"
   help
     The protection offered by SSP can now be selected from
     different protection levels. Be sure to review the SSP level
     in the build options menu.
 
config BR2_PACKAGE_DIRECTFB_CLE266
   bool "cle266 driver for directfb removed"
   select BR2_LEGACY
   help
     The cle266 directfb driver support has been removed.
     It doesn't build in the latest version and it's unlikely
     anyone has any use for it.
 
config BR2_PACKAGE_DIRECTFB_UNICHROME
   bool "unichrome driver for directfb removed"
   select BR2_LEGACY
   help
     The unichrome directfb driver support has been removed.
     It doesn't build in the latest version and it's unlikely
     anyone has any use for it.
 
config BR2_PACKAGE_LIBELEMENTARY
   bool "libelementary has been renamed to elementary"
   select BR2_LEGACY
   select BR2_PACKAGE_ELEMENTARY
   help
     The libelementary package has been renamed to match the
     upstream name.
 
config BR2_PACKAGE_LIBEINA
   bool "libeina package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.15, libeina is now provided by the efl package.
 
config BR2_PACKAGE_LIBEET
   bool "libeet package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.15, libeet is now provided by the efl package.
 
config BR2_PACKAGE_LIBEVAS
   bool "libevas package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.15, libevas is now provided by the efl package.
 
config BR2_PACKAGE_LIBECORE
   bool "libecore package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.15, libecore is now provided by the efl package.
 
config BR2_PACKAGE_LIBEDBUS
   bool "libedbus package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.15, libedbus is now provided by the efl package.
 
config BR2_PACKAGE_LIBEFREET
   bool "libefreet package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.15, libefreet is now provided by the efl package.
 
config BR2_PACKAGE_LIBEIO
   bool "libeio package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.15, libeio is now provided by the efl package.
 
config BR2_PACKAGE_LIBEMBRYO
   bool "libembryo package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.15, libembryo is now provided by the efl package.
 
config BR2_PACKAGE_LIBEDJE
   bool "libedje package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.15, libedje is now provided by the efl package.
 
config BR2_PACKAGE_LIBETHUMB
   bool "libethumb package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_EFL
   help
     With EFL 1.15, libethumb is now provided by the efl package.
 
config BR2_PACKAGE_INFOZIP
   bool "infozip option has been renamed to zip"
   select BR2_LEGACY
   select BR2_PACKAGE_ZIP
   help
     Info-Zip's Zip package has been renamed from infozip to zip,
     to avoid ambiguities with Info-Zip's UnZip which has been
     added in the unzip package.
 
config BR2_BR2_PACKAGE_NODEJS_0_10_X
   bool "nodejs 0.10.x option removed"
   select BR2_LEGACY
   select BR2_PACKAGE_NODEJS
   help
     nodejs 0.10.x option has been removed.  0.10.x is now
     automatically chosen for ARMv5 architectures only and the
     latest nodejs for all other supported architectures. The
     correct nodejs version has been automatically selected in your
     configuration.
 
config BR2_BR2_PACKAGE_NODEJS_0_12_X
   bool "nodejs version 0.12.x has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_NODEJS
   help
     nodejs version 0.12.x has been removed.  As an alternative,
     the latest nodejs version has been automatically selected in
     your configuration.
 
config BR2_BR2_PACKAGE_NODEJS_4_X
   bool "nodejs version 4.x has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_NODEJS
   help
     nodejs version 4.x has been removed.  As an alternative,
     the latest nodejs version has been automatically selected in
     your configuration.
 
###############################################################################
comment "Legacy options removed in 2015.11"
 
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
   bool "gst1-plugins-bad real plugin has been removed"
   select BR2_LEGACY
   help
     The real plugin from GStreamer 1 bad plugins has been
     removed.
 
config BR2_PACKAGE_MEDIA_CTL
   bool "media-ctl package has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_LIBV4L
   select BR2_PACKAGE_LIBV4L_UTILS
   help
     media-ctl source and developement have been moved to v4l-utils
     since June 2014. For an up-to-date media-ctl version select
     BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
 
config BR2_PACKAGE_SCHIFRA
   bool "schifra package has been removed"
   select BR2_LEGACY
   help
     Schifra package has been maked broken since 2014.11 release
     and haven't been fixed since then.
 
config BR2_PACKAGE_ZXING
   bool "zxing option has been renamed"
   select BR2_LEGACY
   select BR2_PACKAGE_ZXING_CPP
   help
     ZXing no longer provides the cpp bindings, it has been renamed
     to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
 
# Since FreeRDP has new dependencies, protect this legacy to avoid the
# infamous "unmet direct dependencies" kconfig error.
config BR2_PACKAGE_FREERDP_CLIENT
   bool "freerdp client option renamed"
   depends on BR2_PACKAGE_FREERDP
   select BR2_LEGACY
   select BR2_PACKAGE_FREERDP_CLIENT_X11
 
config BR2_PACKAGE_BLACKBOX
   bool "blackbox package has been removed"
   select BR2_LEGACY
   help
     Upstream is dead and the package has been deprecated for
     some time. There are other alternative maintained WMs.
 
config BR2_KERNEL_HEADERS_3_0
   bool "kernel headers version 3.0.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.0.x of the Linux kernel headers have been deprecated
     for more than four buildroot releases and are now removed.
 
config BR2_KERNEL_HEADERS_3_11
   bool "kernel headers version 3.11.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.11.x of the Linux kernel headers have been
     deprecated for more than four buildroot releases and are now
     removed.
 
config BR2_KERNEL_HEADERS_3_13
   bool "kernel headers version 3.13.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.13.x of the Linux kernel headers have been
     deprecated for more than four buildroot releases and are now
     removed.
 
config BR2_KERNEL_HEADERS_3_15
   bool "kernel headers version 3.15.x are no longer supported"
   select BR2_LEGACY
   help
     Version 3.15.x of the Linux kernel headers have been
     deprecated for more than four buildroot releases and are now
     removed.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
   bool "DirectFB example df_andi has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
   bool "DirectFB example df_bltload has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
   bool "DirectFB example df_cpuload has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
   bool "DirectFB example df_databuffer has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
   bool "DirectFB example df_dioload has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
   bool "DirectFB example df_dok has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
   bool "DirectFB example df_drivertest has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
   bool "DirectFB example df_fire has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
   bool "DirectFB example df_flip has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
   bool "DirectFB example df_fonts has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
   bool "DirectFB example df_input has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
   bool "DirectFB example df_joystick has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
   bool "DirectFB example df_knuckles has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
   bool "DirectFB example df_layer has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
   bool "DirectFB example df_matrix has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
   bool "DirectFB example df_matrix_water has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
   bool "DirectFB example df_neo has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
   bool "DirectFB example df_netload has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
   bool "DirectFB example df_palette has been removed"
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
   bool "DirectFB example df_particle has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
   bool "DirectFB example df_porter has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
   bool "DirectFB example df_stress has been removed"
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
   bool "DirectFB example df_texture has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
   bool "DirectFB example df_video has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
   bool "DirectFB example df_video_particle has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
   bool "DirectFB example df_window has been removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_EXAMPLES
   help
     The per-DirectFB example options have been removed. The
     BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
     examples.
 
config BR2_PACKAGE_KOBS_NG
   bool "kobs-ng was replaced by imx-kobs"
   select BR2_LEGACY
   select BR2_PACKAGE_IMX_KOBS
   help
     The outdated kobs-ng has been replaced by the Freescale-
     maintained imx-kobs package.
 
config BR2_PACKAGE_SAWMAN
   bool "sawman package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_SAWMAN
   help
     This option has been removed because the sawman package no
     longer exists: it was merged inside DirectFB itself. This
     feature can now be enabled using the
     BR2_PACKAGE_DIRECTFB_SAWMAN option.
 
config BR2_PACKAGE_DIVINE
   bool "divine package removed"
   select BR2_LEGACY
   select BR2_PACKAGE_DIRECTFB_DIVINE
   help
     This option has been removed because the divine package no
     longer exists: it was merged inside DirectFB itself. This
     feature can now be enabled using the
     BR2_PACKAGE_DIRECTFB_DIVINE option.
 
###############################################################################
comment "Legacy options removed in 2015.08"
 
config BR2_PACKAGE_KODI_PVR_ADDONS
   bool "Kodi PVR addon was split"
   select BR2_LEGACY
   select BR2_PACKAGE_KODI_PVR_ARGUSTV
   select BR2_PACKAGE_KODI_PVR_DVBLINK
   select BR2_PACKAGE_KODI_PVR_DVBVIEWER
   select BR2_PACKAGE_KODI_PVR_FILMON
   select BR2_PACKAGE_KODI_PVR_HTS
   select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
   select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
   select BR2_PACKAGE_KODI_PVR_MYTHTV
   select BR2_PACKAGE_KODI_PVR_NEXTPVR
   select BR2_PACKAGE_KODI_PVR_NJOY
   select BR2_PACKAGE_KODI_PVR_PCTV
   select BR2_PACKAGE_KODI_PVR_STALKER
   select BR2_PACKAGE_KODI_PVR_VBOX
   select BR2_PACKAGE_KODI_PVR_VDR_VNSI
   select BR2_PACKAGE_KODI_PVR_VUPLUS
   select BR2_PACKAGE_KODI_PVR_WMC
   help
     Kodi PVR addon was split into seperate modules
 
config BR2_BINUTILS_VERSION_2_23_2
   bool "binutils 2.23 option renamed"
   select BR2_LEGACY
   help
     Binutils 2.23.2 has been removed, using a newer version is
     recommended.
 
config BR2_BINUTILS_VERSION_2_24
   bool "binutils 2.24 option renamed"
   select BR2_LEGACY
   select BR2_BINUTILS_VERSION_2_24_X
   help
     The binutils version option has been renamed to match the
     same patchlevel logic used by gcc. The new option is now
     BR2_BINUTILS_VERSION_2_24_X.
 
config BR2_BINUTILS_VERSION_2_25
   bool "binutils 2.25 option renamed"
   select BR2_LEGACY
   select BR2_BINUTILS_VERSION_2_25_X
   help
     The binutils version option has been renamed to match the
     same patchlevel logic used by gcc. The new option is now
     BR2_BINUTILS_VERSION_2_25_X.
 
config BR2_PACKAGE_PERF
   bool "perf option has been renamed"
   select BR2_LEGACY
   select BR2_LINUX_KERNEL_TOOL_PERF
   help
     The perf package has been moved as a Linux tools package,
     and the option to enable it is now
     BR2_LINUX_KERNEL_TOOL_PERF.
 
config BR2_BINUTILS_VERSION_2_22
   bool "binutils 2.22 removed"
   select BR2_LEGACY
   help
     Binutils 2.22 has been removed, using a newer version is
     recommended.
 
config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
   bool "gpu-viv-bin-mx6q"
   select BR2_LEGACY
   select BR2_PACKAGE_IMX_GPU_VIV
   help
     Vivante graphics libraries have been renamed to
     BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
     name.
 
config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
   bool "libsemanage python bindings removed"
   depends on BR2_PACKAGE_PYTHON
   select BR2_LEGACY
   help
     This option has been removed, since the libsemanage Python
     bindings on the target were not useful.
 
config BR2_TARGET_UBOOT_NETWORK
   bool "U-Boot custom network settings removed"
   select BR2_LEGACY
   help
     U-Boot's custom network settings options have been removed.
 
endmenu
 
endif # !SKIP_LEGACY