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

#
# Target Images
#
# CONFIG_TARGET_ROOTFS_INITRAMFS is not set
CONFIG_EXTERNAL_CPIO=""

#
# Root filesystem archives
#
# CONFIG_TARGET_ROOTFS_CPIOGZ is not set
CONFIG_TARGET_ROOTFS_TARGZ=y

#
# Root filesystem images
#
CONFIG_TARGET_ROOTFS_EXT4FS=y
# CONFIG_TARGET_ROOTFS_JFFS2 is not set
CONFIG_TARGET_ROOTFS_SQUASHFS=y

#
# Image Options
#
CONFIG_X86_GRUB_IMAGES=y
# CONFIG_X86_USE_GRUB2 is not set
# CONFIG_X86_GRUB_CONSOLE is not set
CONFIG_X86_GRUB_SERIAL="ttyS0"
CONFIG_X86_GRUB_BAUDRATE=38400
CONFIG_X86_GRUB_BOOTOPTS=""
CONFIG_X86_GRUB_TIMEOUT="5"
# CONFIG_X86_VDI_IMAGES is not set
# CONFIG_X86_VMDK_IMAGES is not set
# CONFIG_TARGET_IMAGES_PAD is not set
# CONFIG_TARGET_IMAGES_GZIP is not set
CONFIG_TARGET_KERNEL_PARTSIZE=16
CONFIG_TARGET_ROOTFS_PARTNAME="/dev/sda2"
CONFIG_TARGET_ROOTFS_PARTSIZE=196
CONFIG_TARGET_ROOTFS_MAXINODE=6000

#
# Global build settings
#
# CONFIG_ALL is not set

#
# General build options
#
# CONFIG_DISPLAY_SUPPORT is not set
CONFIG_BUILD_PATENTED=y
# CONFIG_BUILD_NLS is not set
# CONFIG_BUILD_STATIC_TOOLS is not set
CONFIG_SHADOW_PASSWORDS=y
# CONFIG_CLEAN_IPKG is not set
# CONFIG_COLLECT_KERNEL_DEBUG is not set

#
# Kernel build options
#
CONFIG_KERNEL_DEBUG_FS=y
# CONFIG_KERNEL_PERF_EVENTS is not set
# CONFIG_KERNEL_PROFILING is not set
# CONFIG_KERNEL_KALLSYMS is not set
# CONFIG_KERNEL_FTRACE is not set
# CONFIG_KERNEL_DEBUG_KERNEL is not set
# CONFIG_KERNEL_DEBUG_INFO is not set
# CONFIG_KERNEL_AIO is not set
CONFIG_KERNEL_MAGIC_SYSRQ=y
CONFIG_KERNEL_ELF_CORE=y
# CONFIG_KERNEL_PROVE_LOCKING is not set
CONFIG_KERNEL_PRINTK_TIME=y

#
# Package build options
#
# CONFIG_DEBUG is not set
CONFIG_IPV6=y
CONFIG_PKG_BUILD_PARALLEL=y
CONFIG_PKG_BUILD_USE_JOBSERVER=y

#
# Stripping options
#
CONFIG_NO_STRIP=y
# CONFIG_USE_STRIP is not set
# CONFIG_USE_SSTRIP is not set
# CONFIG_STRIP_KERNEL_EXPORTS is not set
# CONFIG_USE_MKLIBS is not set
CONFIG_USE_UCLIBCXX=y
# CONFIG_USE_LIBSTDCXX is not set
CONFIG_DEVEL=y
# CONFIG_BROKEN is not set
CONFIG_DOWNLOAD_FOLDER=""
CONFIG_LOCALMIRROR=""
CONFIG_AUTOREBUILD=y
CONFIG_BUILD_SUFFIX=""
CONFIG_TARGET_ROOTFS_DIR=""
# CONFIG_CCACHE is not set
CONFIG_EXTERNAL_KERNEL_TREE=""
CONFIG_KERNEL_GIT_CLONE_URI=""
CONFIG_KERNEL_GIT_LOCAL_REPOSITORY=""
# CONFIG_BUILD_LOG is not set
# CONFIG_SRC_TREE_OVERRIDE is not set
# CONFIG_TARGET_OPTIONS is not set
CONFIG_TARGET_OPTIMIZATION="-O2 -pipe -march=i486 -fno-caller-saves"
# CONFIG_EXTERNAL_TOOLCHAIN is not set
CONFIG_NEED_TOOLCHAIN=y
CONFIG_TOOLCHAINOPTS=y
# CONFIG_EXTRA_TARGET_ARCH is not set

#
# Binary tools
#
# CONFIG_BINUTILS_VERSION_2_19_1 is not set
# CONFIG_BINUTILS_VERSION_2_20_1 is not set
# CONFIG_BINUTILS_VERSION_2_21 is not set
# CONFIG_BINUTILS_VERSION_2_21_1 is not set
CONFIG_BINUTILS_VERSION_2_22=y
CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS=""
CONFIG_BINUTILS_VERSION="2.22"

#
# Compiler
#
# CONFIG_GCC_VERSION_4_4_7 is not set
# CONFIG_GCC_VERSION_4_6_2 is not set
CONFIG_GCC_VERSION_4_7_0=y
# CONFIG_GCC_VERSION_4_5_LINARO is not set
# CONFIG_GCC_VERSION_4_6_LINARO is not set
# CONFIG_GCC_VERSION_4_7_LINARO is not set
# CONFIG_GCC_VERSION_LLVM is not set
# CONFIG_GCC_USE_GRAPHITE is not set
CONFIG_EXTRA_GCC_CONFIG_OPTIONS=""
# CONFIG_SSP_SUPPORT is not set
# CONFIG_TLS_SUPPORT is not set
# CONFIG_SJLJ_EXCEPTIONS is not set
CONFIG_INSTALL_LIBSTDCPP=y
# CONFIG_INSTALL_LIBGCJ is not set
# CONFIG_INSTALL_GFORTRAN is not set

#
# C Library
#
CONFIG_USE_EGLIBC=y
# CONFIG_USE_UCLIBC is not set
# CONFIG_EGLIBC_VERSION_2_13 is not set
# CONFIG_EGLIBC_VERSION_2_14 is not set
CONFIG_EGLIBC_VERSION_2_15=y
CONFIG_EGLIBC_REVISION="18909"

#
# eglibc configuration
#
CONFIG_EGLIBC_OPTION_EGLIBC_ADVANCED_INET6=y
CONFIG_EGLIBC_OPTION_EGLIBC_BACKTRACE=y
CONFIG_EGLIBC_OPTION_EGLIBC_BIG_MACROS=y
CONFIG_EGLIBC_OPTION_EGLIBC_BSD=y
CONFIG_EGLIBC_OPTION_EGLIBC_CXX_TESTS=y
CONFIG_EGLIBC_OPTION_EGLIBC_CATGETS=y
CONFIG_EGLIBC_OPTION_EGLIBC_CHARSETS=y
CONFIG_EGLIBC_OPTION_EGLIBC_CRYPT=y
CONFIG_EGLIBC_OPTION_EGLIBC_CRYPT_UFC=y
CONFIG_EGLIBC_OPTION_EGLIBC_DB_ALIASES=y
CONFIG_EGLIBC_OPTION_EGLIBC_ENVZ=y
CONFIG_EGLIBC_OPTION_EGLIBC_FCVT=y
CONFIG_EGLIBC_OPTION_EGLIBC_FMTMSG=y
CONFIG_EGLIBC_OPTION_EGLIBC_FSTAB=y
CONFIG_EGLIBC_OPTION_EGLIBC_FTRAVERSE=y
CONFIG_EGLIBC_OPTION_EGLIBC_GETLOGIN=y
CONFIG_EGLIBC_OPTION_EGLIBC_IDN=y
CONFIG_EGLIBC_OPTION_EGLIBC_INET=y
CONFIG_EGLIBC_OPTION_EGLIBC_INET_ANL=y
CONFIG_EGLIBC_OPTION_EGLIBC_LIBM=y
CONFIG_EGLIBC_OPTION_EGLIBC_LIBM_BIG=y
CONFIG_EGLIBC_OPTION_EGLIBC_LOCALES=y
CONFIG_EGLIBC_OPTION_EGLIBC_LOCALE_CODE=y
CONFIG_EGLIBC_OPTION_EGLIBC_MEMUSAGE=y
CONFIG_EGLIBC_OPTION_EGLIBC_NIS=y
CONFIG_EGLIBC_OPTION_EGLIBC_NSSWITCH=y
CONFIG_EGLIBC_OPTION_EGLIBC_RCMD=y
CONFIG_EGLIBC_OPTION_EGLIBC_RTLD_DEBUG=y
CONFIG_EGLIBC_OPTION_EGLIBC_SPAWN=y
CONFIG_EGLIBC_OPTION_EGLIBC_STREAMS=y
CONFIG_EGLIBC_OPTION_EGLIBC_SUNRPC=y
CONFIG_EGLIBC_OPTION_EGLIBC_UTMP=y
CONFIG_EGLIBC_OPTION_EGLIBC_UTMPX=y
CONFIG_EGLIBC_OPTION_EGLIBC_WORDEXP=y
CONFIG_EGLIBC_OPTION_POSIX_C_LANG_WIDE_CHAR=y
CONFIG_EGLIBC_OPTION_POSIX_REGEXP=y
CONFIG_EGLIBC_OPTION_POSIX_REGEXP_GLIBC=y
CONFIG_EGLIBC_OPTION_POSIX_WIDE_CHAR_DEVICE_IO=y

#
# Debuggers
#
CONFIG_GDB=y
# CONFIG_INSIGHT is not set
CONFIG_GCC_DEFAULT_VERSION_4_6_LINARO=y
CONFIG_GCC_VERSION="4.7.0"
CONFIG_GCC_VERSION_4_7=y
CONFIG_EGLIBC_VERSION="2.15"
CONFIG_LIBC="eglibc"
CONFIG_LIBC_VERSION="2.15"
CONFIG_TARGET_SUFFIX="gnu"
# CONFIG_IB is not set
# CONFIG_SDK is not set
# CONFIG_MAKE_TOOLCHAIN is not set
# CONFIG_IMAGEOPT is not set
# CONFIG_PREINITOPT is not set
CONFIG_TARGET_PREINIT_SUPPRESS_STDERR=y
CONFIG_TARGET_PREINIT_TIMEOUT=2
# CONFIG_TARGET_PREINIT_SHOW_NETMSG is not set
# CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG is not set
CONFIG_TARGET_PREINIT_IFNAME=""
CONFIG_TARGET_PREINIT_IP="192.168.1.1"
CONFIG_TARGET_PREINIT_NETMASK="255.255.255.0"
CONFIG_TARGET_PREINIT_BROADCAST="192.168.1.255"
# CONFIG_INITOPT is not set
CONFIG_TARGET_INIT_PATH="/bin:/sbin:/usr/bin:/usr/sbin"
CONFIG_TARGET_INIT_ENV=""
CONFIG_TARGET_INIT_CMD="/sbin/init"
CONFIG_TARGET_INIT_SUPPRESS_STDERR=y
# CONFIG_VERSIONOPT is not set

#
# Package features
#
CONFIG_FEATURE_drawing-backend_DirectFB=y

#
# Base system
#
CONFIG_PACKAGE_base-files=y
CONFIG_PACKAGE_block-mount=y
CONFIG_EXTROOT_SETTLETIME=20
CONFIG_PACKAGE_bridge=y
CONFIG_PACKAGE_busybox=y
# CONFIG_BUSYBOX_CONFIG_NOMMU is not set
# CONFIG_CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_HUSH is not set
# CONFIG_BUSYBOX_CONFIG_HUSH is not set
CONFIG_BUSYBOX_CONFIG_HAVE_DOT_CONFIG=y

#
# Busybox Settings
#

#
# General Configuration
#
# CONFIG_BUSYBOX_CONFIG_DESKTOP is not set
# CONFIG_BUSYBOX_CONFIG_EXTRA_COMPAT is not set
CONFIG_BUSYBOX_CONFIG_INCLUDE_SUSv2=y
# CONFIG_BUSYBOX_CONFIG_USE_PORTABLE_CODE is not set
CONFIG_BUSYBOX_CONFIG_PLATFORM_LINUX=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_USE_MALLOC is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set
CONFIG_BUSYBOX_CONFIG_SHOW_USAGE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_USAGE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_COMPRESS_USAGE=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_INSTALLER is not set
# CONFIG_BUSYBOX_CONFIG_INSTALL_NO_USR is not set
# CONFIG_BUSYBOX_CONFIG_LOCALE_SUPPORT is not set
# CONFIG_BUSYBOX_CONFIG_UNICODE_SUPPORT is not set
CONFIG_BUSYBOX_CONFIG_LONG_OPTS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_DEVPTS=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_CLEAN_UP is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_UTMP is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_PIDFILE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_SUID=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_SUID_CONFIG is not set
# CONFIG_BUSYBOX_CONFIG_SELINUX is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_APPLETS=y
CONFIG_BUSYBOX_CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe"
CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOG=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_HAVE_RPC is not set

#
# Build Options
#
# CONFIG_BUSYBOX_CONFIG_STATIC is not set
# CONFIG_BUSYBOX_CONFIG_PIE is not set
CONFIG_BUSYBOX_CONFIG_LFS=y
CONFIG_BUSYBOX_CONFIG_CROSS_COMPILER_PREFIX=""
CONFIG_BUSYBOX_CONFIG_EXTRA_CFLAGS=""

#
# Debugging Options
#
# CONFIG_BUSYBOX_CONFIG_DEBUG is not set
# CONFIG_BUSYBOX_CONFIG_WERROR is not set
CONFIG_BUSYBOX_CONFIG_NO_DEBUG_LIB=y
# CONFIG_BUSYBOX_CONFIG_DMALLOC is not set
# CONFIG_BUSYBOX_CONFIG_EFENCE is not set

#
# Installation Options ("make install" behavior)
#
CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SYMLINKS=y
# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_HARDLINKS is not set
# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set
# CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_DONT is not set
CONFIG_BUSYBOX_CONFIG_PREFIX="./_install"

#
# Busybox Library Tuning
#
# CONFIG_BUSYBOX_CONFIG_FEATURE_SYSTEMD is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_RTMINMAX is not set
CONFIG_BUSYBOX_CONFIG_PASSWORD_MINLEN=6
CONFIG_BUSYBOX_CONFIG_MD5_SIZE_VS_SPEED=2
CONFIG_BUSYBOX_CONFIG_FEATURE_FAST_TOP=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_ETC_NETWORKS is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_USE_TERMIOS is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING=y
CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_MAX_LEN=512
# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_VI is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_HISTORY=256
# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_SAVEHISTORY is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_TAB_COMPLETION=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_USERNAME_COMPLETION is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_FANCY_PROMPT=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_NON_POSIX_CP=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_COPYBUF_KB=4
# CONFIG_BUSYBOX_CONFIG_FEATURE_SKIP_ROOTFS is not set
# CONFIG_BUSYBOX_CONFIG_MONOTONIC_SYSCALL is not set
CONFIG_BUSYBOX_CONFIG_IOCTL_HEX2STR_ERROR=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_HWIB is not set

#
# Applets
#

#
# Archival Utilities
#
# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_XZ is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_BZ2 is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_Z is not set
# CONFIG_BUSYBOX_CONFIG_AR is not set
CONFIG_BUSYBOX_CONFIG_BUNZIP2=y
# CONFIG_BUSYBOX_CONFIG_BZIP2 is not set
# CONFIG_BUSYBOX_CONFIG_CPIO is not set
# CONFIG_BUSYBOX_CONFIG_DPKG is not set
# CONFIG_BUSYBOX_CONFIG_DPKG_DEB is not set
CONFIG_BUSYBOX_CONFIG_GUNZIP=y
CONFIG_BUSYBOX_CONFIG_GZIP=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_GZIP_LONG_OPTIONS is not set
# CONFIG_BUSYBOX_CONFIG_LZOP is not set
# CONFIG_BUSYBOX_CONFIG_RPM2CPIO is not set
# CONFIG_BUSYBOX_CONFIG_RPM is not set
CONFIG_BUSYBOX_CONFIG_TAR=y
CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_CREATE=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_AUTODETECT is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_FROM=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_UNAME_GNAME is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_NOPRESERVE_TIME is not set
# CONFIG_BUSYBOX_CONFIG_UNCOMPRESS is not set
# CONFIG_BUSYBOX_CONFIG_UNLZMA is not set
# CONFIG_BUSYBOX_CONFIG_UNXZ is not set
# CONFIG_BUSYBOX_CONFIG_UNZIP is not set

#
# Coreutils
#
CONFIG_BUSYBOX_CONFIG_BASENAME=y
CONFIG_BUSYBOX_CONFIG_CAT=y
CONFIG_BUSYBOX_CONFIG_DATE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_DATE_ISOFMT=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_DATE_NANO is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_DATE_COMPAT is not set
CONFIG_BUSYBOX_CONFIG_ID=y
# CONFIG_BUSYBOX_CONFIG_GROUPS is not set
CONFIG_BUSYBOX_CONFIG_TEST=y
CONFIG_BUSYBOX_CONFIG_FEATURE_TEST_64=y
CONFIG_BUSYBOX_CONFIG_TOUCH=y
CONFIG_BUSYBOX_CONFIG_TR=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_TR_CLASSES is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_TR_EQUIV is not set
# CONFIG_BUSYBOX_CONFIG_BASE64 is not set
# CONFIG_BUSYBOX_CONFIG_CAL is not set
# CONFIG_BUSYBOX_CONFIG_CATV is not set
CONFIG_BUSYBOX_CONFIG_CHGRP=y
CONFIG_BUSYBOX_CONFIG_CHMOD=y
CONFIG_BUSYBOX_CONFIG_CHOWN=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_CHOWN_LONG_OPTIONS is not set
CONFIG_BUSYBOX_CONFIG_CHROOT=y
# CONFIG_BUSYBOX_CONFIG_CKSUM is not set
# CONFIG_BUSYBOX_CONFIG_COMM is not set
CONFIG_BUSYBOX_CONFIG_CP=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_CP_LONG_OPTIONS is not set
CONFIG_BUSYBOX_CONFIG_CUT=y
CONFIG_BUSYBOX_CONFIG_DD=y
CONFIG_BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_DD_THIRD_STATUS_LINE is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_DD_IBS_OBS=y
CONFIG_BUSYBOX_CONFIG_DF=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_DF_FANCY is not set
CONFIG_BUSYBOX_CONFIG_DIRNAME=y
# CONFIG_BUSYBOX_CONFIG_DOS2UNIX is not set
CONFIG_BUSYBOX_CONFIG_DU=y
CONFIG_BUSYBOX_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y
CONFIG_BUSYBOX_CONFIG_ECHO=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_ECHO=y
CONFIG_BUSYBOX_CONFIG_ENV=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_ENV_LONG_OPTIONS is not set
# CONFIG_BUSYBOX_CONFIG_EXPAND is not set
CONFIG_BUSYBOX_CONFIG_EXPR=y
CONFIG_BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64=y
CONFIG_BUSYBOX_CONFIG_FALSE=y
# CONFIG_BUSYBOX_CONFIG_FOLD is not set
CONFIG_BUSYBOX_CONFIG_FSYNC=y
CONFIG_BUSYBOX_CONFIG_HEAD=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_HEAD=y
CONFIG_BUSYBOX_CONFIG_HOSTID=y
# CONFIG_BUSYBOX_CONFIG_INSTALL is not set
CONFIG_BUSYBOX_CONFIG_LN=y
# CONFIG_BUSYBOX_CONFIG_LOGNAME is not set
CONFIG_BUSYBOX_CONFIG_LS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FILETYPES=y
CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FOLLOWLINKS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_LS_RECURSIVE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_LS_SORTFILES=y
CONFIG_BUSYBOX_CONFIG_FEATURE_LS_TIMESTAMPS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_LS_USERNAME=y
CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR=y
CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y
CONFIG_BUSYBOX_CONFIG_MD5SUM=y
CONFIG_BUSYBOX_CONFIG_MKDIR=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_MKDIR_LONG_OPTIONS is not set
CONFIG_BUSYBOX_CONFIG_MKFIFO=y
CONFIG_BUSYBOX_CONFIG_MKNOD=y
CONFIG_BUSYBOX_CONFIG_MV=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_MV_LONG_OPTIONS is not set
CONFIG_BUSYBOX_CONFIG_NICE=y
# CONFIG_BUSYBOX_CONFIG_NOHUP is not set
# CONFIG_BUSYBOX_CONFIG_OD is not set
# CONFIG_BUSYBOX_CONFIG_PRINTENV is not set
CONFIG_BUSYBOX_CONFIG_PRINTF=y
CONFIG_BUSYBOX_CONFIG_PWD=y
# CONFIG_BUSYBOX_CONFIG_READLINK is not set
# CONFIG_BUSYBOX_CONFIG_REALPATH is not set
CONFIG_BUSYBOX_CONFIG_RM=y
CONFIG_BUSYBOX_CONFIG_RMDIR=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set
CONFIG_BUSYBOX_CONFIG_SEQ=y
# CONFIG_BUSYBOX_CONFIG_SHA1SUM is not set
# CONFIG_BUSYBOX_CONFIG_SHA256SUM is not set
# CONFIG_BUSYBOX_CONFIG_SHA512SUM is not set
CONFIG_BUSYBOX_CONFIG_SLEEP=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_FLOAT_SLEEP is not set
CONFIG_BUSYBOX_CONFIG_SORT=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_SORT_BIG is not set
# CONFIG_BUSYBOX_CONFIG_SPLIT is not set
# CONFIG_BUSYBOX_CONFIG_STAT is not set
# CONFIG_BUSYBOX_CONFIG_STTY is not set
# CONFIG_BUSYBOX_CONFIG_SUM is not set
CONFIG_BUSYBOX_CONFIG_SYNC=y
# CONFIG_BUSYBOX_CONFIG_TAC is not set
CONFIG_BUSYBOX_CONFIG_TAIL=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_TAIL=y
CONFIG_BUSYBOX_CONFIG_TEE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_TEE_USE_BLOCK_IO=y
CONFIG_BUSYBOX_CONFIG_TRUE=y
# CONFIG_BUSYBOX_CONFIG_TTY is not set
CONFIG_BUSYBOX_CONFIG_UNAME=y
# CONFIG_BUSYBOX_CONFIG_UNEXPAND is not set
CONFIG_BUSYBOX_CONFIG_UNIQ=y
# CONFIG_BUSYBOX_CONFIG_USLEEP is not set
# CONFIG_BUSYBOX_CONFIG_UUDECODE is not set
# CONFIG_BUSYBOX_CONFIG_UUENCODE is not set
CONFIG_BUSYBOX_CONFIG_WC=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_WC_LARGE is not set
# CONFIG_BUSYBOX_CONFIG_WHOAMI is not set
CONFIG_BUSYBOX_CONFIG_YES=y

#
# Common options for cp and mv
#
CONFIG_BUSYBOX_CONFIG_FEATURE_PRESERVE_HARDLINKS=y

#
# Common options for ls, more and telnet
#
CONFIG_BUSYBOX_CONFIG_FEATURE_AUTOWIDTH=y

#
# Common options for df, du, ls
#
CONFIG_BUSYBOX_CONFIG_FEATURE_HUMAN_READABLE=y

#
# Common options for md5sum, sha1sum, sha256sum, sha512sum
#
CONFIG_BUSYBOX_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y

#
# Console Utilities
#
# CONFIG_BUSYBOX_CONFIG_CHVT is not set
# CONFIG_BUSYBOX_CONFIG_FGCONSOLE is not set
CONFIG_BUSYBOX_CONFIG_CLEAR=y
# CONFIG_BUSYBOX_CONFIG_DEALLOCVT is not set
# CONFIG_BUSYBOX_CONFIG_DUMPKMAP is not set
# CONFIG_BUSYBOX_CONFIG_KBD_MODE is not set
# CONFIG_BUSYBOX_CONFIG_LOADFONT is not set
# CONFIG_BUSYBOX_CONFIG_LOADKMAP is not set
# CONFIG_BUSYBOX_CONFIG_OPENVT is not set
CONFIG_BUSYBOX_CONFIG_RESET=y
# CONFIG_BUSYBOX_CONFIG_RESIZE is not set
# CONFIG_BUSYBOX_CONFIG_SETCONSOLE is not set
# CONFIG_BUSYBOX_CONFIG_SETFONT is not set
# CONFIG_BUSYBOX_CONFIG_SETKEYCODES is not set
# CONFIG_BUSYBOX_CONFIG_SETLOGCONS is not set
# CONFIG_BUSYBOX_CONFIG_SHOWKEY is not set

#
# Debian Utilities
#
CONFIG_BUSYBOX_CONFIG_MKTEMP=y
# CONFIG_BUSYBOX_CONFIG_PIPE_PROGRESS is not set
# CONFIG_BUSYBOX_CONFIG_RUN_PARTS is not set
CONFIG_BUSYBOX_CONFIG_START_STOP_DAEMON=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set
CONFIG_BUSYBOX_CONFIG_WHICH=y

#
# Editors
#
# CONFIG_BUSYBOX_CONFIG_PATCH is not set
CONFIG_BUSYBOX_CONFIG_VI=y
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_MAX_LEN=1024
# CONFIG_BUSYBOX_CONFIG_FEATURE_VI_8BIT is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_COLON=y
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_YANKMARK=y
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SEARCH=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_VI_REGEX_SEARCH is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_USE_SIGNALS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_DOT_CMD=y
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_READONLY=y
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SETOPTS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SET=y
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_WIN_RESIZE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_ASK_TERMINAL=y
CONFIG_BUSYBOX_CONFIG_FEATURE_VI_OPTIMIZE_CURSOR=y
CONFIG_BUSYBOX_CONFIG_AWK=y
CONFIG_BUSYBOX_CONFIG_FEATURE_AWK_LIBM=y
CONFIG_BUSYBOX_CONFIG_CMP=y
# CONFIG_BUSYBOX_CONFIG_DIFF is not set
# CONFIG_BUSYBOX_CONFIG_ED is not set
CONFIG_BUSYBOX_CONFIG_SED=y
CONFIG_BUSYBOX_CONFIG_FEATURE_ALLOW_EXEC=y

#
# Finding Utilities
#
CONFIG_BUSYBOX_CONFIG_FIND=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRINT0=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MTIME is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MMIN is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PERM=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_TYPE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_XDEV=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MAXDEPTH=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NEWER is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_INUM is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_EXEC=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_USER=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_GROUP=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NOT=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DEPTH=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PAREN=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_SIZE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRUNE=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DELETE is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PATH=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_REGEX=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_LINKS is not set
CONFIG_BUSYBOX_CONFIG_GREP=y
CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT=y
CONFIG_BUSYBOX_CONFIG_XARGS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y
CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y
CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y
CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y

#
# Init Utilities
#
# CONFIG_BUSYBOX_CONFIG_BOOTCHARTD is not set
CONFIG_BUSYBOX_CONFIG_HALT=y
CONFIG_BUSYBOX_CONFIG_INIT=y
CONFIG_BUSYBOX_CONFIG_FEATURE_USE_INITTAB=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_KILL_REMOVED is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_SCTTY is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_SYSLOG=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_EXTRA_QUIET is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_INIT_COREDUMPS is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_INITRD is not set
CONFIG_BUSYBOX_CONFIG_INIT_TERMINAL_TYPE="linux"
# CONFIG_BUSYBOX_CONFIG_MESG is not set

#
# Login/Password Management Utilities
#
# CONFIG_BUSYBOX_CONFIG_ADD_SHELL is not set
# CONFIG_BUSYBOX_CONFIG_REMOVE_SHELL is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_SHADOWPASSWDS=y
# CONFIG_BUSYBOX_CONFIG_USE_BB_PWD_GRP is not set
# CONFIG_BUSYBOX_CONFIG_USE_BB_CRYPT is not set
# CONFIG_BUSYBOX_CONFIG_ADDUSER is not set
# CONFIG_BUSYBOX_CONFIG_ADDGROUP is not set
# CONFIG_BUSYBOX_CONFIG_DELUSER is not set
# CONFIG_BUSYBOX_CONFIG_DELGROUP is not set
# CONFIG_BUSYBOX_CONFIG_GETTY is not set
# CONFIG_BUSYBOX_CONFIG_LOGIN is not set
CONFIG_BUSYBOX_CONFIG_PASSWD=y
CONFIG_BUSYBOX_CONFIG_FEATURE_PASSWD_WEAK_CHECK=y
# CONFIG_BUSYBOX_CONFIG_CRYPTPW is not set
# CONFIG_BUSYBOX_CONFIG_CHPASSWD is not set
# CONFIG_BUSYBOX_CONFIG_SU is not set
# CONFIG_BUSYBOX_CONFIG_SULOGIN is not set
# CONFIG_BUSYBOX_CONFIG_VLOCK is not set

#
# Linux Ext2 FS Progs
#
# CONFIG_BUSYBOX_CONFIG_CHATTR is not set
# CONFIG_BUSYBOX_CONFIG_FSCK is not set
# CONFIG_BUSYBOX_CONFIG_LSATTR is not set
# CONFIG_BUSYBOX_CONFIG_TUNE2FS is not set

#
# Linux Module Utilities
#
# CONFIG_BUSYBOX_CONFIG_MODINFO is not set
# CONFIG_BUSYBOX_CONFIG_MODPROBE_SMALL is not set
CONFIG_BUSYBOX_CONFIG_INSMOD=y
CONFIG_BUSYBOX_CONFIG_RMMOD=y
CONFIG_BUSYBOX_CONFIG_LSMOD=y
CONFIG_BUSYBOX_CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT=y
# CONFIG_BUSYBOX_CONFIG_MODPROBE is not set
# CONFIG_BUSYBOX_CONFIG_DEPMOD is not set

#
# Options common to multiple modutils
#
# CONFIG_BUSYBOX_CONFIG_FEATURE_2_4_MODULES is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_INSMOD_TRY_MMAP is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_CHECK_TAINTED_MODULE=y
CONFIG_BUSYBOX_CONFIG_DEFAULT_MODULES_DIR="/lib/modules"

#
# Linux System Utilities
#
# CONFIG_BUSYBOX_CONFIG_BLOCKDEV is not set
# CONFIG_BUSYBOX_CONFIG_REV is not set
# CONFIG_BUSYBOX_CONFIG_ACPID is not set
# CONFIG_BUSYBOX_CONFIG_BLKID is not set
CONFIG_BUSYBOX_CONFIG_DMESG=y
CONFIG_BUSYBOX_CONFIG_FEATURE_DMESG_PRETTY=y
# CONFIG_BUSYBOX_CONFIG_FBSET is not set
# CONFIG_BUSYBOX_CONFIG_FDFLUSH is not set
# CONFIG_BUSYBOX_CONFIG_FDFORMAT is not set
# CONFIG_BUSYBOX_CONFIG_FDISK is not set
# CONFIG_BUSYBOX_CONFIG_FINDFS is not set
# CONFIG_BUSYBOX_CONFIG_FLOCK is not set
# CONFIG_BUSYBOX_CONFIG_FREERAMDISK is not set
# CONFIG_BUSYBOX_CONFIG_FSCK_MINIX is not set
# CONFIG_BUSYBOX_CONFIG_MKFS_EXT2 is not set
# CONFIG_BUSYBOX_CONFIG_MKFS_MINIX is not set
# CONFIG_BUSYBOX_CONFIG_MKFS_REISER is not set
# CONFIG_BUSYBOX_CONFIG_MKFS_VFAT is not set
CONFIG_BUSYBOX_CONFIG_GETOPT=y
CONFIG_BUSYBOX_CONFIG_FEATURE_GETOPT_LONG=y
CONFIG_BUSYBOX_CONFIG_HEXDUMP=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_HEXDUMP_REVERSE is not set
# CONFIG_BUSYBOX_CONFIG_HD is not set
CONFIG_BUSYBOX_CONFIG_HWCLOCK=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set
# CONFIG_BUSYBOX_CONFIG_IPCRM is not set
# CONFIG_BUSYBOX_CONFIG_IPCS is not set
# CONFIG_BUSYBOX_CONFIG_LOSETUP is not set
# CONFIG_BUSYBOX_CONFIG_LSPCI is not set
# CONFIG_BUSYBOX_CONFIG_LSUSB is not set
# CONFIG_BUSYBOX_CONFIG_MDEV is not set
# CONFIG_BUSYBOX_CONFIG_MKSWAP is not set
# CONFIG_BUSYBOX_CONFIG_MORE is not set
CONFIG_BUSYBOX_CONFIG_MOUNT=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FAKE is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_VERBOSE is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_HELPERS=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LABEL is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_NFS is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_CIFS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FLAGS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FSTAB=y
CONFIG_BUSYBOX_CONFIG_PIVOT_ROOT=y
# CONFIG_BUSYBOX_CONFIG_RDATE is not set
# CONFIG_BUSYBOX_CONFIG_RDEV is not set
# CONFIG_BUSYBOX_CONFIG_READPROFILE is not set
# CONFIG_BUSYBOX_CONFIG_RTCWAKE is not set
# CONFIG_BUSYBOX_CONFIG_SCRIPT is not set
# CONFIG_BUSYBOX_CONFIG_SCRIPTREPLAY is not set
# CONFIG_BUSYBOX_CONFIG_SETARCH is not set
# CONFIG_BUSYBOX_CONFIG_SWAPONOFF is not set
CONFIG_BUSYBOX_CONFIG_SWITCH_ROOT=y
CONFIG_BUSYBOX_CONFIG_UMOUNT=y
CONFIG_BUSYBOX_CONFIG_FEATURE_UMOUNT_ALL=y

#
# Common options for mount/umount
#
CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LOOP=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LOOP_CREATE is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_MTAB_SUPPORT is not set
# CONFIG_BUSYBOX_CONFIG_VOLUMEID is not set

#
# Miscellaneous Utilities
#
# CONFIG_BUSYBOX_CONFIG_CONSPY is not set
CONFIG_BUSYBOX_CONFIG_LESS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MAXLINES=9999999
# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_BRACKETS is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_FLAGS is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MARKS is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_REGEXP is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_WINCH is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD is not set
# CONFIG_BUSYBOX_CONFIG_NANDWRITE is not set
# CONFIG_BUSYBOX_CONFIG_NANDDUMP is not set
# CONFIG_BUSYBOX_CONFIG_SETSERIAL is not set
# CONFIG_BUSYBOX_CONFIG_UBIATTACH is not set
# CONFIG_BUSYBOX_CONFIG_UBIDETACH is not set
# CONFIG_BUSYBOX_CONFIG_UBIMKVOL is not set
# CONFIG_BUSYBOX_CONFIG_UBIRMVOL is not set
# CONFIG_BUSYBOX_CONFIG_UBIRSVOL is not set
# CONFIG_BUSYBOX_CONFIG_UBIUPDATEVOL is not set
# CONFIG_BUSYBOX_CONFIG_ADJTIMEX is not set
# CONFIG_BUSYBOX_CONFIG_BBCONFIG is not set
# CONFIG_BUSYBOX_CONFIG_BEEP is not set
# CONFIG_BUSYBOX_CONFIG_CHAT is not set
# CONFIG_BUSYBOX_CONFIG_CHRT is not set
CONFIG_BUSYBOX_CONFIG_CROND=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_D is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_DIR="/var/spool/cron"
CONFIG_BUSYBOX_CONFIG_CRONTAB=y
# CONFIG_BUSYBOX_CONFIG_DC is not set
# CONFIG_BUSYBOX_CONFIG_DEVFSD is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_DEVFS is not set
# CONFIG_BUSYBOX_CONFIG_DEVMEM is not set
# CONFIG_BUSYBOX_CONFIG_EJECT is not set
# CONFIG_BUSYBOX_CONFIG_FBSPLASH is not set
# CONFIG_BUSYBOX_CONFIG_FLASHCP is not set
# CONFIG_BUSYBOX_CONFIG_FLASH_LOCK is not set
# CONFIG_BUSYBOX_CONFIG_FLASH_UNLOCK is not set
# CONFIG_BUSYBOX_CONFIG_FLASH_ERASEALL is not set
# CONFIG_BUSYBOX_CONFIG_IONICE is not set
# CONFIG_BUSYBOX_CONFIG_INOTIFYD is not set
# CONFIG_BUSYBOX_CONFIG_HDPARM is not set
CONFIG_BUSYBOX_CONFIG_LOCK=y
# CONFIG_BUSYBOX_CONFIG_MAKEDEVS is not set
# CONFIG_BUSYBOX_CONFIG_MAN is not set
# CONFIG_BUSYBOX_CONFIG_MICROCOM is not set
# CONFIG_BUSYBOX_CONFIG_MOUNTPOINT is not set
# CONFIG_BUSYBOX_CONFIG_MT is not set
# CONFIG_BUSYBOX_CONFIG_RAIDAUTORUN is not set
# CONFIG_BUSYBOX_CONFIG_READAHEAD is not set
# CONFIG_BUSYBOX_CONFIG_RFKILL is not set
# CONFIG_BUSYBOX_CONFIG_RX is not set
# CONFIG_BUSYBOX_CONFIG_SETSID is not set
CONFIG_BUSYBOX_CONFIG_STRINGS=y
# CONFIG_BUSYBOX_CONFIG_TASKSET is not set
CONFIG_BUSYBOX_CONFIG_TIME=y
# CONFIG_BUSYBOX_CONFIG_TIMEOUT is not set
# CONFIG_BUSYBOX_CONFIG_TTYSIZE is not set
# CONFIG_BUSYBOX_CONFIG_VOLNAME is not set
CONFIG_BUSYBOX_CONFIG_WATCHDOG=y

#
# Networking Utilities
#
# CONFIG_BUSYBOX_CONFIG_NAMEIF is not set
# CONFIG_BUSYBOX_CONFIG_NBDCLIENT is not set
CONFIG_BUSYBOX_CONFIG_NC=y
# CONFIG_BUSYBOX_CONFIG_NC_SERVER is not set
# CONFIG_BUSYBOX_CONFIG_NC_EXTRA is not set
# CONFIG_BUSYBOX_CONFIG_NC_110_COMPAT is not set
CONFIG_BUSYBOX_CONFIG_PING=y
CONFIG_BUSYBOX_CONFIG_PING6=y
CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_PING=y
# CONFIG_BUSYBOX_CONFIG_WHOIS is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_IPV6=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_UNIX_LOCAL is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y
CONFIG_BUSYBOX_CONFIG_VERBOSE_RESOLUTION_ERRORS=y
# CONFIG_BUSYBOX_CONFIG_ARP is not set
CONFIG_BUSYBOX_CONFIG_ARPING=y
CONFIG_BUSYBOX_CONFIG_BRCTL=y
CONFIG_BUSYBOX_CONFIG_FEATURE_BRCTL_FANCY=y
CONFIG_BUSYBOX_CONFIG_FEATURE_BRCTL_SHOW=y
# CONFIG_BUSYBOX_CONFIG_DNSD is not set
# CONFIG_BUSYBOX_CONFIG_ETHER_WAKE is not set
# CONFIG_BUSYBOX_CONFIG_FAKEIDENTD is not set
# CONFIG_BUSYBOX_CONFIG_FTPD is not set
# CONFIG_BUSYBOX_CONFIG_FTPGET is not set
# CONFIG_BUSYBOX_CONFIG_FTPPUT is not set
# CONFIG_BUSYBOX_CONFIG_HOSTNAME is not set
# CONFIG_BUSYBOX_CONFIG_HTTPD is not set
CONFIG_BUSYBOX_CONFIG_IFCONFIG=y
CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_STATUS=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_SLIP is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_HW=y
CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y
# CONFIG_BUSYBOX_CONFIG_IFENSLAVE is not set
# CONFIG_BUSYBOX_CONFIG_IFPLUGD is not set
# CONFIG_BUSYBOX_CONFIG_IFUPDOWN is not set
# CONFIG_BUSYBOX_CONFIG_INETD is not set
# CONFIG_BUSYBOX_CONFIG_IP is not set
# CONFIG_BUSYBOX_CONFIG_IPCALC is not set
CONFIG_BUSYBOX_CONFIG_NETMSG=y
CONFIG_BUSYBOX_CONFIG_NETSTAT=y
CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_WIDE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_PRG=y
CONFIG_BUSYBOX_CONFIG_NSLOOKUP=y
CONFIG_BUSYBOX_CONFIG_NTPD=y
CONFIG_BUSYBOX_CONFIG_FEATURE_NTPD_SERVER=y
# CONFIG_BUSYBOX_CONFIG_PSCAN is not set
CONFIG_BUSYBOX_CONFIG_ROUTE=y
# CONFIG_BUSYBOX_CONFIG_SLATTACH is not set
# CONFIG_BUSYBOX_CONFIG_TCPSVD is not set
CONFIG_BUSYBOX_CONFIG_TELNET=y
CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_TTYPE=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_AUTOLOGIN is not set
CONFIG_BUSYBOX_CONFIG_TELNETD=y
CONFIG_BUSYBOX_CONFIG_FEATURE_TELNETD_STANDALONE=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_TELNETD_INETD_WAIT is not set
# CONFIG_BUSYBOX_CONFIG_TFTP is not set
# CONFIG_BUSYBOX_CONFIG_TFTPD is not set
CONFIG_BUSYBOX_CONFIG_TRACEROUTE=y
# CONFIG_BUSYBOX_CONFIG_TRACEROUTE6 is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_VERBOSE=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set
# CONFIG_BUSYBOX_CONFIG_TUNCTL is not set
# CONFIG_BUSYBOX_CONFIG_UDHCPD is not set
CONFIG_BUSYBOX_CONFIG_UDHCPC=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCPC_ARPING is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_PORT is not set
CONFIG_BUSYBOX_CONFIG_UDHCP_DEBUG=0
CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_RFC3397=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_8021Q is not set
CONFIG_BUSYBOX_CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script"
CONFIG_BUSYBOX_CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80
# CONFIG_BUSYBOX_CONFIG_UDPSVD is not set
CONFIG_BUSYBOX_CONFIG_VCONFIG=y
CONFIG_BUSYBOX_CONFIG_WGET=y
CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_STATUSBAR=y
CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_AUTHENTICATION=y
CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_LONG_OPTIONS=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_TIMEOUT is not set
# CONFIG_BUSYBOX_CONFIG_ZCIP is not set

#
# Print Utilities
#
# CONFIG_BUSYBOX_CONFIG_LPD is not set
# CONFIG_BUSYBOX_CONFIG_LPR is not set
# CONFIG_BUSYBOX_CONFIG_LPQ is not set

#
# Mail Utilities
#
# CONFIG_BUSYBOX_CONFIG_MAKEMIME is not set
# CONFIG_BUSYBOX_CONFIG_POPMAILDIR is not set
# CONFIG_BUSYBOX_CONFIG_REFORMIME is not set
# CONFIG_BUSYBOX_CONFIG_SENDMAIL is not set

#
# Process Utilities
#
# CONFIG_BUSYBOX_CONFIG_IOSTAT is not set
# CONFIG_BUSYBOX_CONFIG_MPSTAT is not set
# CONFIG_BUSYBOX_CONFIG_NMETER is not set
# CONFIG_BUSYBOX_CONFIG_PMAP is not set
# CONFIG_BUSYBOX_CONFIG_POWERTOP is not set
# CONFIG_BUSYBOX_CONFIG_PSTREE is not set
# CONFIG_BUSYBOX_CONFIG_PWDX is not set
# CONFIG_BUSYBOX_CONFIG_SMEMCAP is not set
CONFIG_BUSYBOX_CONFIG_UPTIME=y
CONFIG_BUSYBOX_CONFIG_FREE=y
# CONFIG_BUSYBOX_CONFIG_FUSER is not set
CONFIG_BUSYBOX_CONFIG_KILL=y
CONFIG_BUSYBOX_CONFIG_KILLALL=y
# CONFIG_BUSYBOX_CONFIG_KILLALL5 is not set
CONFIG_BUSYBOX_CONFIG_PGREP=y
CONFIG_BUSYBOX_CONFIG_PIDOF=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT is not set
# CONFIG_BUSYBOX_CONFIG_PKILL is not set
CONFIG_BUSYBOX_CONFIG_PS=y
CONFIG_BUSYBOX_CONFIG_FEATURE_PS_WIDE=y
# CONFIG_BUSYBOX_CONFIG_RENICE is not set
CONFIG_BUSYBOX_CONFIG_BB_SYSCTL=y
CONFIG_BUSYBOX_CONFIG_TOP=y
CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_TOPMEM is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_SHOW_THREADS is not set
# CONFIG_BUSYBOX_CONFIG_WATCH is not set

#
# Runit Utilities
#
# CONFIG_BUSYBOX_CONFIG_RUNSV is not set
# CONFIG_BUSYBOX_CONFIG_RUNSVDIR is not set
# CONFIG_BUSYBOX_CONFIG_SV is not set
# CONFIG_BUSYBOX_CONFIG_SVLOGD is not set
# CONFIG_BUSYBOX_CONFIG_CHPST is not set
# CONFIG_BUSYBOX_CONFIG_SETUIDGID is not set
# CONFIG_BUSYBOX_CONFIG_ENVUIDGID is not set
# CONFIG_BUSYBOX_CONFIG_ENVDIR is not set
# CONFIG_BUSYBOX_CONFIG_SOFTLIMIT is not set

#
# Shells
#
CONFIG_BUSYBOX_CONFIG_ASH=y
CONFIG_BUSYBOX_CONFIG_ASH_BASH_COMPAT=y
# CONFIG_BUSYBOX_CONFIG_ASH_IDLE_TIMEOUT is not set
CONFIG_BUSYBOX_CONFIG_ASH_JOB_CONTROL=y
CONFIG_BUSYBOX_CONFIG_ASH_ALIAS=y
CONFIG_BUSYBOX_CONFIG_ASH_GETOPTS=y
CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_ECHO=y
CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_PRINTF=y
CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_TEST=y
CONFIG_BUSYBOX_CONFIG_ASH_CMDCMD=y
# CONFIG_BUSYBOX_CONFIG_ASH_MAIL is not set
# CONFIG_BUSYBOX_CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set
# CONFIG_BUSYBOX_CONFIG_ASH_RANDOM_SUPPORT is not set
CONFIG_BUSYBOX_CONFIG_ASH_EXPAND_PRMT=y
# CONFIG_BUSYBOX_CONFIG_CTTYHACK is not set
# CONFIG_BUSYBOX_CONFIG_MSH is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_ASH=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_HUSH is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_NONE is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_BASH_IS_ASH is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_BASH_IS_HUSH is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_BASH_IS_NONE=y
CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT=y
CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT_64=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_EXTRA_QUIET is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_STANDALONE is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_NOFORK is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_SH_HISTFILESIZE is not set

#
# System Logging Utilities
#
CONFIG_BUSYBOX_CONFIG_SYSLOGD=y
CONFIG_BUSYBOX_CONFIG_FEATURE_ROTATE_LOGFILE=y
CONFIG_BUSYBOX_CONFIG_FEATURE_REMOTE_LOG=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOGD_DUP is not set
# CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOGD_CFG is not set
CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=256
CONFIG_BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG=y
CONFIG_BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16
CONFIG_BUSYBOX_CONFIG_LOGREAD=y
# CONFIG_BUSYBOX_CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set
CONFIG_BUSYBOX_CONFIG_KLOGD=y
CONFIG_BUSYBOX_CONFIG_FEATURE_KLOGD_KLOGCTL=y
CONFIG_BUSYBOX_CONFIG_LOGGER=y
# CONFIG_PACKAGE_dash is not set
CONFIG_PACKAGE_dnsmasq=y
# CONFIG_PACKAGE_dnsmasq-dhcpv6 is not set
CONFIG_PACKAGE_dropbear=y
# CONFIG_PACKAGE_ead is not set
CONFIG_PACKAGE_firewall=y
CONFIG_PACKAGE_hotplug2=y
# CONFIG_PACKAGE_hsflowd is not set
CONFIG_PACKAGE_libc=y
CONFIG_PACKAGE_libgcc=y
CONFIG_PACKAGE_libpthread=y
CONFIG_PACKAGE_librt=y
CONFIG_PACKAGE_libstdcpp=y
CONFIG_PACKAGE_mkelfimage=y
# CONFIG_PACKAGE_mksh is not set
CONFIG_PACKAGE_mtd=y
CONFIG_PACKAGE_netifd=y
# CONFIG_PACKAGE_om-watchdog is not set
CONFIG_PACKAGE_opkg=y
CONFIG_PACKAGE_qos-scripts=y
# CONFIG_PACKAGE_resolveip is not set
# CONFIG_PACKAGE_sflowovsd is not set
# CONFIG_PACKAGE_swconfig is not set
CONFIG_PACKAGE_uci=y
# CONFIG_PACKAGE_udev is not set
CONFIG_PACKAGE_wireless-tools=y

#
# IPv6
#

#
# Firewall
#
CONFIG_PACKAGE_ip6tables=y
# CONFIG_PACKAGE_shorewall6-lite is not set

#
# IPv6 attack and analyzing toolset (thc-ipv6)
#
# CONFIG_PACKAGE_alive6 is not set
# CONFIG_PACKAGE_detect-new-ip6 is not set
# CONFIG_PACKAGE_dos-new-ip6 is not set
# CONFIG_PACKAGE_fake_advertise6 is not set
# CONFIG_PACKAGE_fake_mipv6 is not set
# CONFIG_PACKAGE_fake_mld6 is not set
# CONFIG_PACKAGE_fake_router6 is not set
# CONFIG_PACKAGE_parasite6 is not set
# CONFIG_PACKAGE_redir6 is not set
# CONFIG_PACKAGE_rsmurf6 is not set
# CONFIG_PACKAGE_smurf6 is not set
# CONFIG_PACKAGE_toobig6 is not set

#
# IPv6 discovery tools
#
# CONFIG_PACKAGE_ndisc6 is not set
# CONFIG_PACKAGE_rdisc6 is not set
# CONFIG_PACKAGE_rdnssd is not set
# CONFIG_PACKAGE_traceroute6 is not set

#
# miredo: Teredo (IPv6 tunneling over UDP through NAT)
#
# CONFIG_PACKAGE_miredo-client is not set
# CONFIG_PACKAGE_miredo-common is not set
# CONFIG_PACKAGE_miredo-server is not set

#
# wide-dhcpv6
#
# CONFIG_PACKAGE_wide-dhcpv6-client is not set
# CONFIG_PACKAGE_wide-dhcpv6-control is not set
# CONFIG_PACKAGE_wide-dhcpv6-relay is not set
# CONFIG_PACKAGE_wide-dhcpv6-server is not set
# CONFIG_PACKAGE_6in4 is not set
CONFIG_PACKAGE_6rd=y
CONFIG_PACKAGE_6scripts=y
# CONFIG_PACKAGE_6to4 is not set
# CONFIG_PACKAGE_6tunnel is not set
# CONFIG_PACKAGE_ahcpd is not set
# CONFIG_PACKAGE_aiccu is not set
# CONFIG_PACKAGE_bird6 is not set
# CONFIG_PACKAGE_birdc6 is not set
# CONFIG_PACKAGE_dhcp6-client is not set
# CONFIG_PACKAGE_dhcp6-server is not set
# CONFIG_PACKAGE_dibbler-client is not set
# CONFIG_PACKAGE_dibbler-relay is not set
# CONFIG_PACKAGE_dibbler-requestor is not set
# CONFIG_PACKAGE_dibbler-server is not set
# CONFIG_PACKAGE_gw6c is not set
# CONFIG_PACKAGE_ipv6calc is not set
CONFIG_PACKAGE_ipv6calc-mini=y
# CONFIG_PACKAGE_ipv6log is not set
# CONFIG_PACKAGE_ipv6log-mini is not set
# CONFIG_PACKAGE_mrd6 is not set
# CONFIG_PACKAGE_ndppd is not set
# CONFIG_PACKAGE_ptrtd is not set
CONFIG_PACKAGE_radvd=y
CONFIG_PACKAGE_radvdump=y
# CONFIG_PACKAGE_send is not set
# CONFIG_PACKAGE_tayga is not set
# CONFIG_PACKAGE_totd is not set
# CONFIG_PACKAGE_tspc is not set
# CONFIG_PACKAGE_tunslip6 is not set

#
# LuCI
#

#
# 1. Collections
#
CONFIG_PACKAGE_luci=y
CONFIG_PACKAGE_luci-ssl=y

#
# 2. Modules
#
CONFIG_PACKAGE_luci-mod-admin-core=y
CONFIG_PACKAGE_luci-mod-admin-full=y
CONFIG_PACKAGE_luci-mod-failsafe=y
# CONFIG_PACKAGE_luci-mod-freifunk is not set
# CONFIG_PACKAGE_luci-mod-rpc is not set

#
# 3. Applications
#
# CONFIG_PACKAGE_luci-app-ahcp is not set
# CONFIG_PACKAGE_luci-app-ddns is not set
# CONFIG_PACKAGE_luci-app-diag-core is not set
# CONFIG_PACKAGE_luci-app-diag-devinfo is not set
CONFIG_PACKAGE_luci-app-firewall=y
# CONFIG_PACKAGE_luci-app-freifunk-policyrouting is not set
# CONFIG_PACKAGE_luci-app-freifunk-widgets is not set
# CONFIG_PACKAGE_luci-app-hd-idle is not set
# CONFIG_PACKAGE_luci-app-ltqtapi is not set
# CONFIG_PACKAGE_luci-app-meshwizard is not set
# CONFIG_PACKAGE_luci-app-mmc-over-gpio is not set
# CONFIG_PACKAGE_luci-app-multiwan is not set
# CONFIG_PACKAGE_luci-app-ntpc is not set
# CONFIG_PACKAGE_luci-app-p2pblock is not set
# CONFIG_PACKAGE_luci-app-p910nd is not set
# CONFIG_PACKAGE_luci-app-pbx is not set
# CONFIG_PACKAGE_luci-app-polipo is not set
CONFIG_PACKAGE_luci-app-qos=y
CONFIG_PACKAGE_luci-app-radvd=y
# CONFIG_PACKAGE_luci-app-samba is not set
# CONFIG_PACKAGE_luci-app-siitwizard is not set
# CONFIG_PACKAGE_luci-app-splash is not set
CONFIG_PACKAGE_luci-app-statistics=y
# CONFIG_PACKAGE_luci-app-tinyproxy is not set
# CONFIG_PACKAGE_luci-app-transmission is not set
CONFIG_PACKAGE_luci-app-upnp=y
# CONFIG_PACKAGE_luci-app-vnstat is not set
# CONFIG_PACKAGE_luci-app-voice-core is not set
# CONFIG_PACKAGE_luci-app-watchcat is not set
# CONFIG_PACKAGE_luci-app-wol is not set
# CONFIG_PACKAGE_luci-app-wshaper is not set

#
# 4. Themes
#
CONFIG_PACKAGE_luci-theme-base=y
CONFIG_PACKAGE_luci-theme-bootstrap=y
# CONFIG_PACKAGE_luci-theme-freifunk-bno is not set
# CONFIG_PACKAGE_luci-theme-freifunk-generic is not set
CONFIG_PACKAGE_luci-theme-openwrt=y

#
# 5. Translations
#
# CONFIG_PACKAGE_luci-i18n-catalan is not set
CONFIG_PACKAGE_luci-i18n-chinese=y
CONFIG_PACKAGE_luci-i18n-english=y
# CONFIG_PACKAGE_luci-i18n-french is not set
CONFIG_PACKAGE_luci-i18n-german=y
# CONFIG_PACKAGE_luci-i18n-greek is not set
# CONFIG_PACKAGE_luci-i18n-hebrew is not set
# CONFIG_PACKAGE_luci-i18n-hungarian is not set
# CONFIG_PACKAGE_luci-i18n-italian is not set
# CONFIG_PACKAGE_luci-i18n-japanese is not set
# CONFIG_PACKAGE_luci-i18n-malay is not set
# CONFIG_PACKAGE_luci-i18n-norwegian is not set
# CONFIG_PACKAGE_luci-i18n-polish is not set
# CONFIG_PACKAGE_luci-i18n-portuguese is not set
# CONFIG_PACKAGE_luci-i18n-portuguese-brazilian is not set
# CONFIG_PACKAGE_luci-i18n-romanian is not set
CONFIG_PACKAGE_luci-i18n-russian=y
# CONFIG_PACKAGE_luci-i18n-spanish is not set
# CONFIG_PACKAGE_luci-i18n-ukrainian is not set
# CONFIG_PACKAGE_luci-i18n-vietnamese is not set

#
# 6. Protocols
#
# CONFIG_PACKAGE_luci-proto-3g is not set
# CONFIG_PACKAGE_luci-proto-6x4 is not set
CONFIG_PACKAGE_luci-proto-core=y
CONFIG_PACKAGE_luci-proto-ppp=y
# CONFIG_PACKAGE_luci-proto-relay is not set

#
# 7. Server Interfaces
#
CONFIG_PACKAGE_luci-sgi-cgi=y
# CONFIG_PACKAGE_luci-sgi-uhttpd is not set

#
# 8. Libraries
#
CONFIG_PACKAGE_luci-lib-core=y
# CONFIG_PACKAGE_luci-lib-core_compile is not set
# CONFIG_PACKAGE_luci-lib-core_stripped is not set
# CONFIG_PACKAGE_luci-lib-core_srcdiet is not set
CONFIG_PACKAGE_luci-lib-core_source=y
# CONFIG_PACKAGE_luci-lib-fastindex is not set
# CONFIG_PACKAGE_luci-lib-httpclient is not set
CONFIG_PACKAGE_luci-lib-ipkg=y
# CONFIG_PACKAGE_luci-lib-json is not set
CONFIG_PACKAGE_luci-lib-lmo=y
# CONFIG_PACKAGE_luci-lib-lucid is not set
# CONFIG_PACKAGE_luci-lib-lucid-http is not set
# CONFIG_PACKAGE_luci-lib-lucid-rpc is not set
CONFIG_PACKAGE_luci-lib-nixio=y
CONFIG_PACKAGE_luci-lib-nixio_notls=y
# CONFIG_PACKAGE_luci-lib-nixio_axtls is not set
# CONFIG_PACKAGE_luci-lib-nixio_cyassl is not set
# CONFIG_PACKAGE_luci-lib-nixio_openssl is not set
# CONFIG_PACKAGE_luci-lib-px5g is not set
CONFIG_PACKAGE_luci-lib-sys=y
CONFIG_PACKAGE_luci-lib-web=y

#
# 9. Freifunk
#
# CONFIG_PACKAGE_freifunk-common is not set
# CONFIG_PACKAGE_freifunk-firewall is not set
# CONFIG_PACKAGE_freifunk-p2pblock is not set
# CONFIG_PACKAGE_freifunk-policyrouting is not set
# CONFIG_PACKAGE_freifunk-watchdog is not set
# CONFIG_PACKAGE_luci-mod-freifunk-community is not set
# CONFIG_PACKAGE_meshwizard is not set

#
# Kernel modules
#

#
# Block Devices
#
# CONFIG_PACKAGE_kmod-aoe is not set
# CONFIG_PACKAGE_kmod-ata-core is not set
# CONFIG_PACKAGE_kmod-block2mtd is not set
# CONFIG_PACKAGE_kmod-dm is not set
# CONFIG_PACKAGE_kmod-ide-core is not set
# CONFIG_PACKAGE_kmod-libsas is not set
# CONFIG_PACKAGE_kmod-loop is not set
# CONFIG_PACKAGE_kmod-md-mod is not set
# CONFIG_PACKAGE_kmod-mvsas is not set
# CONFIG_PACKAGE_kmod-nbd is not set
# CONFIG_PACKAGE_kmod-scsi-cdrom is not set
CONFIG_PACKAGE_kmod-scsi-core=y
# CONFIG_PACKAGE_kmod-scsi-generic is not set

#
# Cryptographic API modules
#
CONFIG_PACKAGE_kmod-crypto-core=y
CONFIG_PACKAGE_kmod-crypto-aes=y
CONFIG_PACKAGE_kmod-crypto-arc4=y
CONFIG_PACKAGE_kmod-crypto-authenc=y
CONFIG_PACKAGE_kmod-crypto-cbc=y
# CONFIG_PACKAGE_kmod-crypto-crc32c is not set
CONFIG_PACKAGE_kmod-crypto-deflate=y
CONFIG_PACKAGE_kmod-crypto-des=y
# CONFIG_PACKAGE_kmod-crypto-ecb is not set
CONFIG_PACKAGE_kmod-crypto-hash=y
CONFIG_PACKAGE_kmod-crypto-hmac=y
# CONFIG_PACKAGE_kmod-crypto-hw-geode is not set
# CONFIG_PACKAGE_kmod-crypto-hw-hifn-795x is not set
# CONFIG_PACKAGE_kmod-crypto-hw-padlock is not set
CONFIG_PACKAGE_kmod-crypto-iv=y
CONFIG_PACKAGE_kmod-crypto-manager=y
# CONFIG_PACKAGE_kmod-crypto-md4 is not set
CONFIG_PACKAGE_kmod-crypto-md5=y
CONFIG_PACKAGE_kmod-crypto-michael-mic=y
# CONFIG_PACKAGE_kmod-crypto-misc is not set
# CONFIG_PACKAGE_kmod-crypto-null is not set
# CONFIG_PACKAGE_kmod-crypto-ocf is not set
CONFIG_PACKAGE_kmod-crypto-rng=y
CONFIG_PACKAGE_kmod-crypto-sha1=y
# CONFIG_PACKAGE_kmod-crypto-test is not set
# CONFIG_PACKAGE_kmod-crypto-user is not set
CONFIG_PACKAGE_kmod-crypto-wq=y
# CONFIG_PACKAGE_kmod-crypto-xts is not set
# CONFIG_PACKAGE_kmod-loop-aes is not set

#
# Filesystems
#
# CONFIG_PACKAGE_kmod-fs-autofs4 is not set
# CONFIG_PACKAGE_kmod-fs-btrfs is not set
# CONFIG_PACKAGE_kmod-fs-cifs is not set
# CONFIG_PACKAGE_kmod-fs-exportfs is not set
# CONFIG_PACKAGE_kmod-fs-ext4 is not set
# CONFIG_PACKAGE_kmod-fs-hfs is not set
# CONFIG_PACKAGE_kmod-fs-hfsplus is not set
# CONFIG_PACKAGE_kmod-fs-isofs is not set
# CONFIG_PACKAGE_kmod-fs-minix is not set
CONFIG_PACKAGE_kmod-fs-msdos=y
# CONFIG_PACKAGE_kmod-fs-nfs is not set
# CONFIG_PACKAGE_kmod-fs-nfs-common is not set
# CONFIG_PACKAGE_kmod-fs-nfsd is not set
# CONFIG_PACKAGE_kmod-fs-ntfs is not set
# CONFIG_PACKAGE_kmod-fs-reiserfs is not set
# CONFIG_PACKAGE_kmod-fs-udf is not set
CONFIG_PACKAGE_kmod-fs-vfat=y
# CONFIG_PACKAGE_kmod-fs-xfs is not set
# CONFIG_PACKAGE_kmod-fuse is not set

#
# FireWire support
#
# CONFIG_PACKAGE_kmod-firewire is not set

#
# Hardware Monitoring Support
#
# CONFIG_PACKAGE_kmod-hwmon-core is not set

#
# I2C support
#
# CONFIG_PACKAGE_kmod-i2c-core is not set
# CONFIG_PACKAGE_kmod-i2c-gpio-custom is not set

#
# LED modules
#
# CONFIG_PACKAGE_kmod-leds-gpio is not set
# CONFIG_PACKAGE_kmod-leds-net48xx is not set
# CONFIG_PACKAGE_kmod-leds-wrap is not set
# CONFIG_PACKAGE_kmod-ledtrig-default-on is not set
# CONFIG_PACKAGE_kmod-ledtrig-gpio is not set
# CONFIG_PACKAGE_kmod-ledtrig-heartbeat is not set
# CONFIG_PACKAGE_kmod-ledtrig-morse is not set
# CONFIG_PACKAGE_kmod-ledtrig-netdev is not set
# CONFIG_PACKAGE_kmod-ledtrig-netfilter is not set
# CONFIG_PACKAGE_kmod-ledtrig-timer is not set
# CONFIG_PACKAGE_kmod-ledtrig-usbdev is not set

#
# Libraries
#
# CONFIG_PACKAGE_kmod-lib-cordic is not set
CONFIG_PACKAGE_kmod-lib-crc-ccitt=y
CONFIG_PACKAGE_kmod-lib-crc-itu-t=y
# CONFIG_PACKAGE_kmod-lib-crc16 is not set
# CONFIG_PACKAGE_kmod-lib-crc32c is not set
# CONFIG_PACKAGE_kmod-lib-crc7 is not set
# CONFIG_PACKAGE_kmod-lib-crc8 is not set
# CONFIG_PACKAGE_kmod-lib-lzo is not set
CONFIG_PACKAGE_kmod-lib-textsearch=y
CONFIG_PACKAGE_kmod-lib-zlib=y

#
# Native Language Support
#
CONFIG_PACKAGE_kmod-nls-base=y
# CONFIG_PACKAGE_kmod-nls-cp1250 is not set
# CONFIG_PACKAGE_kmod-nls-cp1251 is not set
# CONFIG_PACKAGE_kmod-nls-cp437 is not set
# CONFIG_PACKAGE_kmod-nls-cp775 is not set
# CONFIG_PACKAGE_kmod-nls-cp850 is not set
# CONFIG_PACKAGE_kmod-nls-cp852 is not set
# CONFIG_PACKAGE_kmod-nls-cp866 is not set
# CONFIG_PACKAGE_kmod-nls-iso8859-1 is not set
# CONFIG_PACKAGE_kmod-nls-iso8859-13 is not set
# CONFIG_PACKAGE_kmod-nls-iso8859-15 is not set
# CONFIG_PACKAGE_kmod-nls-iso8859-2 is not set
# CONFIG_PACKAGE_kmod-nls-koi8r is not set
# CONFIG_PACKAGE_kmod-nls-utf8 is not set

#
# Netfilter Extensions
#
# CONFIG_PACKAGE_kmod-arptables is not set
# CONFIG_PACKAGE_kmod-ebtables is not set
CONFIG_PACKAGE_kmod-ip6tables=y
CONFIG_PACKAGE_kmod-ipt-core=y
# CONFIG_PACKAGE_kmod-ipt-account is not set
# CONFIG_PACKAGE_kmod-ipt-chaos is not set
# CONFIG_PACKAGE_kmod-ipt-compat-xtables is not set
# CONFIG_PACKAGE_kmod-ipt-condition is not set
CONFIG_PACKAGE_kmod-ipt-conntrack=y
CONFIG_PACKAGE_kmod-ipt-conntrack-extra=y
# CONFIG_PACKAGE_kmod-ipt-debug is not set
# CONFIG_PACKAGE_kmod-ipt-delude is not set
# CONFIG_PACKAGE_kmod-ipt-dhcpmac is not set
# CONFIG_PACKAGE_kmod-ipt-dnetmap is not set
# CONFIG_PACKAGE_kmod-ipt-extra is not set
CONFIG_PACKAGE_kmod-ipt-filter=y
# CONFIG_PACKAGE_kmod-ipt-fuzzy is not set
# CONFIG_PACKAGE_kmod-ipt-geoip is not set
# CONFIG_PACKAGE_kmod-ipt-hashlimit is not set
# CONFIG_PACKAGE_kmod-ipt-iface is not set
# CONFIG_PACKAGE_kmod-ipt-ipmark is not set
CONFIG_PACKAGE_kmod-ipt-ipopt=y
# CONFIG_PACKAGE_kmod-ipt-ipp2p is not set
# CONFIG_PACKAGE_kmod-ipt-iprange is not set
# CONFIG_PACKAGE_kmod-ipt-ipsec is not set
# CONFIG_PACKAGE_kmod-ipt-ipset is not set
# CONFIG_PACKAGE_kmod-ipt-ipv4options is not set
# CONFIG_PACKAGE_kmod-ipt-led is not set
# CONFIG_PACKAGE_kmod-ipt-length2 is not set
# CONFIG_PACKAGE_kmod-ipt-logmark is not set
# CONFIG_PACKAGE_kmod-ipt-lscan is not set
# CONFIG_PACKAGE_kmod-ipt-lua is not set
CONFIG_PACKAGE_kmod-ipt-nat=y
# CONFIG_PACKAGE_kmod-ipt-nat-extra is not set
CONFIG_PACKAGE_kmod-ipt-nathelper=y
# CONFIG_PACKAGE_kmod-ipt-nathelper-extra is not set
# CONFIG_PACKAGE_kmod-ipt-nathelper-rtsp is not set
# CONFIG_PACKAGE_kmod-ipt-psd is not set
# CONFIG_PACKAGE_kmod-ipt-queue is not set
# CONFIG_PACKAGE_kmod-ipt-quota2 is not set
# CONFIG_PACKAGE_kmod-ipt-rawnat is not set
# CONFIG_PACKAGE_kmod-ipt-rawpost is not set
# CONFIG_PACKAGE_kmod-ipt-steal is not set
# CONFIG_PACKAGE_kmod-ipt-sysrq is not set
# CONFIG_PACKAGE_kmod-ipt-tarpit is not set
# CONFIG_PACKAGE_kmod-ipt-tee is not set
# CONFIG_PACKAGE_kmod-ipt-tproxy is not set
# CONFIG_PACKAGE_kmod-ipt-u32 is not set
# CONFIG_PACKAGE_kmod-ipt-ulog is not set
# CONFIG_PACKAGE_kmod-nf-conntrack-netlink is not set
# CONFIG_PACKAGE_kmod-nfnetlink is not set
# CONFIG_PACKAGE_kmod-nfnetlink-log is not set
# CONFIG_PACKAGE_kmod-nfnetlink-queue is not set

#
# Network Devices
#
# CONFIG_PACKAGE_kmod-3c59x is not set
# CONFIG_PACKAGE_kmod-8139cp is not set
# CONFIG_PACKAGE_kmod-8139too is not set
# CONFIG_PACKAGE_kmod-atl1 is not set
# CONFIG_PACKAGE_kmod-atl1c is not set
# CONFIG_PACKAGE_kmod-atl1e is not set
# CONFIG_PACKAGE_kmod-atl2 is not set
# CONFIG_PACKAGE_kmod-b44 is not set
# CONFIG_PACKAGE_kmod-dm9000 is not set
# CONFIG_PACKAGE_kmod-dummy is not set
# CONFIG_PACKAGE_kmod-e100 is not set
# CONFIG_PACKAGE_kmod-e1000 is not set
CONFIG_PACKAGE_kmod-e1000e=y
# CONFIG_PACKAGE_kmod-et131x is not set
# CONFIG_PACKAGE_kmod-gigaset is not set
# CONFIG_PACKAGE_kmod-hfcmulti is not set
# CONFIG_PACKAGE_kmod-hfcpci is not set
CONFIG_PACKAGE_kmod-ifb=y
# CONFIG_PACKAGE_kmod-igb is not set
# CONFIG_PACKAGE_kmod-libphy is not set
# CONFIG_PACKAGE_kmod-macvlan is not set
# CONFIG_PACKAGE_kmod-natsemi is not set
# CONFIG_PACKAGE_kmod-ne2k-pci is not set
# CONFIG_PACKAGE_kmod-pcnet32 is not set
# CONFIG_PACKAGE_kmod-r6040 is not set
# CONFIG_PACKAGE_kmod-r8169 is not set
# CONFIG_PACKAGE_kmod-siit is not set
# CONFIG_PACKAGE_kmod-sis190 is not set
# CONFIG_PACKAGE_kmod-sis900 is not set
# CONFIG_PACKAGE_kmod-skge is not set
# CONFIG_PACKAGE_kmod-sky2 is not set
# CONFIG_PACKAGE_kmod-solos-pci is not set
# CONFIG_PACKAGE_kmod-swconfig is not set
# CONFIG_PACKAGE_kmod-switch-ip17xx is not set
# CONFIG_PACKAGE_kmod-switch-rtl8366-smi is not set
# CONFIG_PACKAGE_kmod-switch-rtl8366rb is not set
# CONFIG_PACKAGE_kmod-switch-rtl8366s is not set
# CONFIG_PACKAGE_kmod-tg3 is not set
# CONFIG_PACKAGE_kmod-tulip is not set
# CONFIG_PACKAGE_kmod-via-rhine is not set
# CONFIG_PACKAGE_kmod-via-velocity is not set

#
# Network Support
#
# CONFIG_PACKAGE_kmod-8021q is not set
# CONFIG_PACKAGE_kmod-appletalk is not set
# CONFIG_PACKAGE_kmod-atm is not set
# CONFIG_PACKAGE_kmod-ax25 is not set
# CONFIG_PACKAGE_kmod-batman-adv is not set
# CONFIG_PACKAGE_kmod-bonding is not set
# CONFIG_PACKAGE_kmod-bridge is not set
# CONFIG_PACKAGE_kmod-capi is not set
# CONFIG_PACKAGE_kmod-gre is not set
# CONFIG_PACKAGE_kmod-ip6-tunnel is not set
# CONFIG_PACKAGE_kmod-ipip is not set
CONFIG_PACKAGE_kmod-ipsec=y
# CONFIG_PACKAGE_kmod-ipsec4 is not set
# CONFIG_PACKAGE_kmod-ipsec6 is not set
CONFIG_PACKAGE_kmod-iptunnel4=y
# CONFIG_PACKAGE_kmod-iptunnel6 is not set
CONFIG_PACKAGE_kmod-ipv6=y
# CONFIG_PACKAGE_kmod-isdn4linux is not set
# CONFIG_PACKAGE_kmod-l2tp is not set
# CONFIG_PACKAGE_kmod-l2tp-eth is not set
# CONFIG_PACKAGE_kmod-l2tp-ip is not set
# CONFIG_PACKAGE_kmod-lisp is not set
# CONFIG_PACKAGE_kmod-lisp-int is not set
# CONFIG_PACKAGE_kmod-llc is not set
# CONFIG_PACKAGE_kmod-misdn is not set
# CONFIG_PACKAGE_kmod-mp-alg is not set
CONFIG_PACKAGE_kmod-ppp=y
# CONFIG_PACKAGE_kmod-mppe is not set
# CONFIG_PACKAGE_kmod-netem is not set
# CONFIG_PACKAGE_kmod-openswan is not set
# CONFIG_PACKAGE_kmod-pktgen is not set
# CONFIG_PACKAGE_kmod-ppp-synctty is not set
# CONFIG_PACKAGE_kmod-pppoa is not set
CONFIG_PACKAGE_kmod-pppoe=y
# CONFIG_PACKAGE_kmod-pppol2tp is not set
CONFIG_PACKAGE_kmod-pppox=y
# CONFIG_PACKAGE_kmod-pptp is not set
# CONFIG_PACKAGE_kmod-sched is not set
CONFIG_PACKAGE_kmod-sched-connmark=y
CONFIG_PACKAGE_kmod-sched-core=y
# CONFIG_PACKAGE_kmod-sched-esfq is not set
# CONFIG_PACKAGE_kmod-sctp is not set
CONFIG_PACKAGE_kmod-sit=y
# CONFIG_PACKAGE_kmod-slip is not set
# CONFIG_PACKAGE_kmod-stp is not set
# CONFIG_PACKAGE_kmod-trelay is not set
CONFIG_PACKAGE_kmod-tun=y
# CONFIG_PACKAGE_kmod-wprobe is not set

#
# Other modules
#
# CONFIG_PACKAGE_kmod-bcma is not set
# CONFIG_PACKAGE_kmod-bluetooth is not set
# CONFIG_PACKAGE_kmod-button-hotplug is not set
# CONFIG_PACKAGE_kmod-cpu-msr is not set
# CONFIG_PACKAGE_kmod-cs5535-clockevt is not set
# CONFIG_PACKAGE_kmod-cs5535-mfd is not set
# CONFIG_PACKAGE_kmod-cs5535-mfgpt is not set
CONFIG_PACKAGE_kmod-eeprom-93cx6=y
# CONFIG_PACKAGE_kmod-eeprom-at24 is not set
# CONFIG_PACKAGE_kmod-eeprom-at25 is not set
# CONFIG_PACKAGE_kmod-gpio-button-hotplug is not set
# CONFIG_PACKAGE_kmod-gpio-cs5535-new is not set
# CONFIG_PACKAGE_kmod-gpio-dev is not set
# CONFIG_PACKAGE_kmod-gpio-nsc is not set
# CONFIG_PACKAGE_kmod-gpio-nxp-74hc164 is not set
# CONFIG_PACKAGE_kmod-gpio-pc8736x is not set
# CONFIG_PACKAGE_kmod-gpio-pch is not set
# CONFIG_PACKAGE_kmod-gpio-scx200 is not set
# CONFIG_PACKAGE_kmod-gpiotoggling is not set
# CONFIG_PACKAGE_kmod-hid is not set
# CONFIG_PACKAGE_kmod-input-core is not set
# CONFIG_PACKAGE_kmod-input-evdev is not set
# CONFIG_PACKAGE_kmod-input-gpio-buttons is not set
# CONFIG_PACKAGE_kmod-input-gpio-encoder is not set
# CONFIG_PACKAGE_kmod-input-gpio-keys is not set
# CONFIG_PACKAGE_kmod-input-gpio-keys-polled is not set
# CONFIG_PACKAGE_kmod-input-joydev is not set
# CONFIG_PACKAGE_kmod-input-polldev is not set
# CONFIG_PACKAGE_kmod-mmc is not set
# CONFIG_PACKAGE_kmod-mmc-over-gpio is not set
# CONFIG_PACKAGE_kmod-mtdtests is not set
# CONFIG_PACKAGE_kmod-nand is not set
# CONFIG_PACKAGE_kmod-nandsim is not set
# CONFIG_PACKAGE_kmod-pch-can is not set
# CONFIG_PACKAGE_kmod-pch-dma is not set
# CONFIG_PACKAGE_kmod-pch-phub is not set
# CONFIG_PACKAGE_kmod-pwm is not set
# CONFIG_PACKAGE_kmod-pwm-gpio is not set
# CONFIG_PACKAGE_kmod-regmap is not set
# CONFIG_PACKAGE_kmod-rfkill is not set
# CONFIG_PACKAGE_kmod-rotary-gpio-custom is not set
# CONFIG_PACKAGE_kmod-rtc-pcf2123 is not set
# CONFIG_PACKAGE_kmod-rtc-pcf8563 is not set
# CONFIG_PACKAGE_kmod-rtc-pt7c4338 is not set
# CONFIG_PACKAGE_kmod-serial-8250 is not set
# CONFIG_PACKAGE_kmod-softdog is not set
# CONFIG_PACKAGE_kmod-ssb is not set
# CONFIG_PACKAGE_kmod-wdt-geode is not set
# CONFIG_PACKAGE_kmod-wdt-sc520 is not set
# CONFIG_PACKAGE_kmod-wdt-scx200 is not set

#
# PCMCIA support
#

#
# SPI Support
#
# CONFIG_PACKAGE_kmod-mmc-spi is not set
# CONFIG_PACKAGE_kmod-spi-bitbang is not set
# CONFIG_PACKAGE_kmod-spi-dev is not set
# CONFIG_PACKAGE_kmod-spi-gpio is not set
# CONFIG_PACKAGE_kmod-spi-gpio-old is not set
# CONFIG_PACKAGE_kmod-spi-ks8995 is not set

#
# Sound Support
#
# CONFIG_PACKAGE_kmod-pcspkr is not set
# CONFIG_PACKAGE_kmod-sound-core is not set

#
# USB Support
#
CONFIG_PACKAGE_kmod-usb-acm=y
# CONFIG_PACKAGE_kmod-usb-atm is not set
# CONFIG_PACKAGE_kmod-usb-cm109 is not set
CONFIG_PACKAGE_kmod-usb-core=y
# CONFIG_PACKAGE_kmod-usb-hid is not set
CONFIG_PACKAGE_kmod-usb-net=y
# CONFIG_PACKAGE_kmod-usb-net-asix is not set
CONFIG_PACKAGE_kmod-usb-net-cdc-ether=y
# CONFIG_PACKAGE_kmod-usb-net-dm9601-ether is not set
# CONFIG_PACKAGE_kmod-usb-net-hso is not set
# CONFIG_PACKAGE_kmod-usb-net-ipheth is not set
# CONFIG_PACKAGE_kmod-usb-net-kaweth is not set
# CONFIG_PACKAGE_kmod-usb-net-mcs7830 is not set
# CONFIG_PACKAGE_kmod-usb-net-pegasus is not set
# CONFIG_PACKAGE_kmod-usb-net-rndis is not set
# CONFIG_PACKAGE_kmod-usb-net-sierrawireless is not set
CONFIG_PACKAGE_kmod-usb-ohci=y
# CONFIG_PACKAGE_kmod-usb-printer is not set
CONFIG_PACKAGE_kmod-usb-serial=y
# CONFIG_PACKAGE_kmod-usb-serial-ark3116 is not set
# CONFIG_PACKAGE_kmod-usb-serial-belkin is not set
# CONFIG_PACKAGE_kmod-usb-serial-ch341 is not set
# CONFIG_PACKAGE_kmod-usb-serial-cp210x is not set
# CONFIG_PACKAGE_kmod-usb-serial-cypress-m8 is not set
# CONFIG_PACKAGE_kmod-usb-serial-ftdi is not set
# CONFIG_PACKAGE_kmod-usb-serial-ipw is not set
# CONFIG_PACKAGE_kmod-usb-serial-keyspan is not set
# CONFIG_PACKAGE_kmod-usb-serial-mct is not set
# CONFIG_PACKAGE_kmod-usb-serial-mos7720 is not set
# CONFIG_PACKAGE_kmod-usb-serial-motorola-phone is not set
# CONFIG_PACKAGE_kmod-usb-serial-option is not set
# CONFIG_PACKAGE_kmod-usb-serial-oti6858 is not set
# CONFIG_PACKAGE_kmod-usb-serial-pl2303 is not set
# CONFIG_PACKAGE_kmod-usb-serial-qualcomm is not set
# CONFIG_PACKAGE_kmod-usb-serial-sierrawireless is not set
# CONFIG_PACKAGE_kmod-usb-serial-ti-usb is not set
# CONFIG_PACKAGE_kmod-usb-serial-visor is not set
# CONFIG_PACKAGE_kmod-usb-serial-wwan is not set
# CONFIG_PACKAGE_kmod-usb-sierrawireless-directip is not set
CONFIG_PACKAGE_kmod-usb-storage=y
# CONFIG_PACKAGE_kmod-usb-storage-extras is not set
# CONFIG_PACKAGE_kmod-usb-test is not set
CONFIG_PACKAGE_kmod-usb-uhci=y
# CONFIG_PACKAGE_kmod-usb-yealink is not set
CONFIG_PACKAGE_kmod-usb2=y
# CONFIG_PACKAGE_kmod-usbip is not set
# CONFIG_PACKAGE_kmod-usbip-client is not set
# CONFIG_PACKAGE_kmod-usbip-server is not set

#
# Video Support
#
# CONFIG_PACKAGE_kmod-video-core is not set

#
# Virtualization Support
#

#
# Voice over IP
#
# CONFIG_PACKAGE_kmod-zaptel14 is not set
# CONFIG_PACKAGE_kmod-zaptel14-dummy is not set
# CONFIG_PACKAGE_kmod-zaptel14-wctdm is not set
# CONFIG_PACKAGE_kmod-zaptel14-wcusb is not set

#
# W1 support
#
# CONFIG_PACKAGE_kmod-w1 is not set

#
# Wireless Drivers
#
CONFIG_PACKAGE_kmod-ath=y

#
# Configuration
#
# CONFIG_ATH_USER_REGD is not set
# CONFIG_PACKAGE_ATH_DEBUG is not set
CONFIG_PACKAGE_kmod-ath5k=y
CONFIG_PACKAGE_kmod-ath9k=y
CONFIG_PACKAGE_kmod-ath9k-common=y
# CONFIG_PACKAGE_kmod-ath9k-htc is not set
# CONFIG_PACKAGE_kmod-b43 is not set
# CONFIG_PACKAGE_kmod-b43legacy is not set
# CONFIG_PACKAGE_kmod-brcmfmac is not set
# CONFIG_PACKAGE_kmod-brcmsmac is not set
# CONFIG_PACKAGE_kmod-brcmutil is not set
# CONFIG_PACKAGE_kmod-carl9170 is not set
CONFIG_PACKAGE_kmod-cfg80211=y
# CONFIG_PACKAGE_kmod-hostap is not set
# CONFIG_PACKAGE_kmod-hostap-pci is not set
# CONFIG_PACKAGE_kmod-hostap-plx is not set
# CONFIG_PACKAGE_kmod-iwl-legacy is not set
# CONFIG_PACKAGE_kmod-iwl3945 is not set
# CONFIG_PACKAGE_kmod-iwl4965 is not set
CONFIG_PACKAGE_kmod-iwlagn=y

#
# Configuration
#
CONFIG_IWL5000_FW=y
CONFIG_IWL5150_FW=y
CONFIG_IWL1000_FW=y
CONFIG_IWL6000_FW=y
CONFIG_IWL6050_FW=y
CONFIG_IWL6005_FW=y
CONFIG_IWL6030_FW=y
CONFIG_IWL100_FW=y
CONFIG_PACKAGE_kmod-lib80211=y
# CONFIG_PACKAGE_kmod-libertas-sd is not set
# CONFIG_PACKAGE_kmod-libertas-usb is not set
CONFIG_PACKAGE_kmod-mac80211=y

#
# Configuration
#
CONFIG_PACKAGE_MAC80211_DEBUGFS=y
CONFIG_PACKAGE_MAC80211_MESH=y
# CONFIG_PACKAGE_kmod-mac80211-hwsim is not set
# CONFIG_PACKAGE_kmod-madwifi is not set
# CONFIG_PACKAGE_kmod-mwl8k is not set
# CONFIG_PACKAGE_kmod-net-airo is not set
# CONFIG_PACKAGE_kmod-net-hermes is not set
# CONFIG_PACKAGE_kmod-net-hermes-pci is not set
# CONFIG_PACKAGE_kmod-net-hermes-plx is not set
CONFIG_PACKAGE_kmod-net-ipw2100=y
CONFIG_PACKAGE_kmod-net-ipw2200=y
CONFIG_PACKAGE_kmod-net-libipw=y
# CONFIG_PACKAGE_kmod-net-prism54 is not set
# CONFIG_PACKAGE_kmod-net-zd1201 is not set
# CONFIG_PACKAGE_kmod-p54-common is not set
# CONFIG_PACKAGE_kmod-p54-pci is not set
# CONFIG_PACKAGE_kmod-p54-usb is not set
# CONFIG_PACKAGE_kmod-rt2400-pci is not set
# CONFIG_PACKAGE_kmod-rt2500-pci is not set
# CONFIG_PACKAGE_kmod-rt2500-usb is not set
CONFIG_PACKAGE_kmod-rt2800-lib=y
CONFIG_PACKAGE_kmod-rt2800-pci=y
CONFIG_PACKAGE_kmod-rt2800-usb=y
CONFIG_PACKAGE_kmod-rt2x00-lib=y

#
# Configuration
#
# CONFIG_PACKAGE_RT2X00_LIB_DEBUGFS is not set
# CONFIG_PACKAGE_RT2X00_DEBUG is not set
CONFIG_PACKAGE_kmod-rt2x00-pci=y
CONFIG_PACKAGE_kmod-rt2x00-usb=y
# CONFIG_PACKAGE_kmod-rt61-pci is not set
# CONFIG_PACKAGE_kmod-rt73-usb is not set
# CONFIG_PACKAGE_kmod-rtl8180 is not set
# CONFIG_PACKAGE_kmod-rtl8187 is not set
# CONFIG_PACKAGE_kmod-zd1211rw is not set

#
# Boot Loaders
#
# CONFIG_PACKAGE_lilo is not set

#
# Administration
#

#
# Pmacct suite
#
# CONFIG_PACKAGE_nfacctd is not set
# CONFIG_PACKAGE_nfacctd-mysql is not set
# CONFIG_PACKAGE_nfacctd-pgsql is not set
# CONFIG_PACKAGE_nfacctd-sqlite is not set
# CONFIG_PACKAGE_pmacct-client is not set
# CONFIG_PACKAGE_pmacctd is not set
# CONFIG_PACKAGE_pmacctd-mysql is not set
# CONFIG_PACKAGE_pmacctd-pgsql is not set
# CONFIG_PACKAGE_pmacctd-sqlite is not set
# CONFIG_PACKAGE_sfacctd is not set
# CONFIG_PACKAGE_sfacctd-mysql is not set
# CONFIG_PACKAGE_sfacctd-pgsql is not set
# CONFIG_PACKAGE_sfacctd-sqlite is not set
# CONFIG_PACKAGE_uacctd is not set
# CONFIG_PACKAGE_uacctd-mysql is not set
# CONFIG_PACKAGE_uacctd-pgsql is not set
# CONFIG_PACKAGE_uacctd-sqlite is not set

#
# webif
#
# CONFIG_PACKAGE_webif is not set
# CONFIG_PACKAGE_webif-applications is not set
# CONFIG_PACKAGE_webif-batman is not set
# CONFIG_PACKAGE_webif-fonheartbeat is not set
# CONFIG_PACKAGE_webif-freeloader is not set
# CONFIG_PACKAGE_webif-freeloader-lang-cs is not set
# CONFIG_PACKAGE_webif-hotspot is not set
# CONFIG_PACKAGE_webif-iw-lua is not set
# CONFIG_PACKAGE_webif-iw-lua-chillispot is not set
# CONFIG_PACKAGE_webif-iw-lua-openssl is not set
# CONFIG_PACKAGE_webif-iw-lua-openvpn is not set
# CONFIG_PACKAGE_webif-lang-ca is not set
# CONFIG_PACKAGE_webif-lang-cs is not set
# CONFIG_PACKAGE_webif-lang-da is not set
# CONFIG_PACKAGE_webif-lang-de is not set
# CONFIG_PACKAGE_webif-lang-ee is not set
# CONFIG_PACKAGE_webif-lang-es is not set
# CONFIG_PACKAGE_webif-lang-fr is not set
# CONFIG_PACKAGE_webif-lang-hr is not set
# CONFIG_PACKAGE_webif-lang-hu is not set
# CONFIG_PACKAGE_webif-lang-it is not set
# CONFIG_PACKAGE_webif-lang-nl is not set
# CONFIG_PACKAGE_webif-lang-no is not set
# CONFIG_PACKAGE_webif-lang-pl is not set
# CONFIG_PACKAGE_webif-lang-pt is not set
# CONFIG_PACKAGE_webif-lang-ru is not set
# CONFIG_PACKAGE_webif-lang-sq is not set
# CONFIG_PACKAGE_webif-lang-sv is not set
# CONFIG_PACKAGE_webif-lang-uk is not set
# CONFIG_PACKAGE_webif-lang-zh is not set
# CONFIG_PACKAGE_webif-mesh is not set
# CONFIG_PACKAGE_webif-netsukuku is not set
# CONFIG_PACKAGE_webif-theme-clubman is not set
# CONFIG_PACKAGE_webif-theme-sedky1 is not set
# CONFIG_PACKAGE_webif-theme-xwrt is not set
# CONFIG_PACKAGE_webif-theme-xwrt-mini is not set
# CONFIG_PACKAGE_webif-theme-zephyr is not set
# CONFIG_PACKAGE_webif-vpn is not set

#
# zabbix
#
# CONFIG_PACKAGE_zabbix-agent is not set
# CONFIG_PACKAGE_zabbix-agentd is not set
# CONFIG_PACKAGE_zabbix-get is not set
# CONFIG_PACKAGE_zabbix-proxy is not set
# CONFIG_PACKAGE_zabbix-sender is not set
# CONFIG_PACKAGE_zabbix-server is not set
CONFIG_PACKAGE_debootstrap=y
# CONFIG_PACKAGE_gkrellmd is not set
CONFIG_PACKAGE_htop=y
CONFIG_PACKAGE_monit=y
# CONFIG_PACKAGE_monit-nossl is not set
# CONFIG_PACKAGE_muninlite is not set
# CONFIG_PACKAGE_nagios is not set
# CONFIG_PACKAGE_nagios-plugins is not set
# CONFIG_PACKAGE_nrpe is not set
# CONFIG_PACKAGE_osirisd is not set
# CONFIG_PACKAGE_ostiary is not set
# CONFIG_PACKAGE_send-nsca is not set
# CONFIG_PACKAGE_sudo is not set
# CONFIG_PACKAGE_syslog-ng is not set
# CONFIG_PACKAGE_syslog-ng3 is not set

#
# Video Streaming
#
# CONFIG_PACKAGE_openrtsp is not set

#
# Mail
#
# CONFIG_PACKAGE_dovecot is not set
# CONFIG_PACKAGE_fetchmail is not set
# CONFIG_PACKAGE_fetchmail-nossl is not set
# CONFIG_PACKAGE_imapfilter is not set
# CONFIG_PACKAGE_mini-sendmail is not set
# CONFIG_PACKAGE_msmtp is not set
# CONFIG_PACKAGE_msmtp-nossl is not set
# CONFIG_PACKAGE_msmtp-queue is not set
# CONFIG_PACKAGE_mutt is not set
# CONFIG_PACKAGE_nullmailer is not set
# CONFIG_PACKAGE_procmail is not set
# CONFIG_PACKAGE_ssmtp is not set
# CONFIG_PACKAGE_xmail is not set

#
# Xorg
#

#
# libraries
#
# CONFIG_PACKAGE_orbit2 is not set

#
# Network
#

#
# BitTorrent
#
# CONFIG_PACKAGE_btpd is not set
# CONFIG_PACKAGE_cbtt is not set
# CONFIG_PACKAGE_cbtt-mysql is not set
# CONFIG_PACKAGE_ctorrent is not set
# CONFIG_PACKAGE_ctorrent-nossl is not set
# CONFIG_PACKAGE_rtorrent is not set
# CONFIG_PACKAGE_transmission-daemon is not set
# CONFIG_PACKAGE_transmission-remote is not set

#
# Captive Portals
#
# CONFIG_PACKAGE_chillispot is not set
# CONFIG_PACKAGE_coova-chilli is not set
# CONFIG_PACKAGE_nocatauth is not set
# CONFIG_PACKAGE_nocatsplash is not set
# CONFIG_PACKAGE_nodogsplash is not set
# CONFIG_PACKAGE_pepperspot is not set
# CONFIG_PACKAGE_wifidog is not set

#
# File Transfer
#
# CONFIG_PACKAGE_aria2 is not set
# CONFIG_PACKAGE_atftp is not set
# CONFIG_PACKAGE_atftpd is not set
# CONFIG_PACKAGE_axel is not set
# CONFIG_PACKAGE_cmdftp is not set
# CONFIG_PACKAGE_curl is not set
# CONFIG_PACKAGE_lftp is not set
# CONFIG_PACKAGE_ncftp is not set
# CONFIG_PACKAGE_ncftp-utils is not set
# CONFIG_PACKAGE_proftpd is not set
# CONFIG_PACKAGE_pure-ftpd is not set
# CONFIG_PACKAGE_pure-ftpd-tls is not set
CONFIG_PACKAGE_rsync=y
# CONFIG_PACKAGE_rsyncd is not set
# CONFIG_PACKAGE_tftp-hpa is not set
# CONFIG_PACKAGE_tftpd-hpa is not set
# CONFIG_PACKAGE_uftp is not set
# CONFIG_PACKAGE_uftp-keymgt is not set
# CONFIG_PACKAGE_uftp-notls is not set
# CONFIG_PACKAGE_uftpd is not set
# CONFIG_PACKAGE_uftpd-notls is not set
# CONFIG_PACKAGE_uftpproxyd is not set
# CONFIG_PACKAGE_uftpproxyd-notls is not set
# CONFIG_PACKAGE_uucp is not set
# CONFIG_PACKAGE_vsftpd is not set
CONFIG_PACKAGE_wget=y
# CONFIG_PACKAGE_wget-nossl is not set
# CONFIG_PACKAGE_wput is not set
# CONFIG_PACKAGE_yafc is not set
# CONFIG_PACKAGE_zstream is not set

#
# Filesystem
#
# CONFIG_PACKAGE_curlftpfs is not set
# CONFIG_PACKAGE_netatalk is not set
# CONFIG_PACKAGE_nfs-kernel-server is not set
# CONFIG_PACKAGE_nfs-server is not set
# CONFIG_PACKAGE_owftpd is not set
# CONFIG_PACKAGE_owhttpd is not set
# CONFIG_PACKAGE_owserver is not set
# CONFIG_PACKAGE_remotefs is not set
# CONFIG_PACKAGE_remotefs-server is not set
# CONFIG_PACKAGE_sshfs is not set
# CONFIG_PACKAGE_unfs3 is not set

#
# Firewall
#
# CONFIG_PACKAGE_amwall is not set
# CONFIG_PACKAGE_arptables is not set
# CONFIG_PACKAGE_conntrack-tools is not set
# CONFIG_PACKAGE_ebtables is not set
# CONFIG_PACKAGE_fwknop is not set
# CONFIG_PACKAGE_fwknopd is not set
# CONFIG_PACKAGE_ipkungfu is not set
CONFIG_PACKAGE_iptables=y
# CONFIG_PACKAGE_iptables-mod-account is not set
# CONFIG_PACKAGE_iptables-mod-chaos is not set
# CONFIG_PACKAGE_iptables-mod-condition is not set
CONFIG_PACKAGE_iptables-mod-conntrack-extra=y
# CONFIG_PACKAGE_iptables-mod-delude is not set
# CONFIG_PACKAGE_iptables-mod-dhcpmac is not set
# CONFIG_PACKAGE_iptables-mod-dnetmap is not set
# CONFIG_PACKAGE_iptables-mod-extra is not set
CONFIG_PACKAGE_iptables-mod-filter=y
# CONFIG_PACKAGE_iptables-mod-fuzzy is not set
# CONFIG_PACKAGE_iptables-mod-geoip is not set
# CONFIG_PACKAGE_iptables-mod-hashlimit is not set
# CONFIG_PACKAGE_iptables-mod-iface is not set
# CONFIG_PACKAGE_iptables-mod-ipmark is not set
CONFIG_PACKAGE_iptables-mod-ipopt=y
# CONFIG_PACKAGE_iptables-mod-ipp2p is not set
# CONFIG_PACKAGE_iptables-mod-iprange is not set
# CONFIG_PACKAGE_iptables-mod-ipsec is not set
# CONFIG_PACKAGE_iptables-mod-ipset is not set
# CONFIG_PACKAGE_iptables-mod-ipv4options is not set
# CONFIG_PACKAGE_iptables-mod-led is not set
# CONFIG_PACKAGE_iptables-mod-length2 is not set
# CONFIG_PACKAGE_iptables-mod-logmark is not set
# CONFIG_PACKAGE_iptables-mod-lscan is not set
# CONFIG_PACKAGE_iptables-mod-lua is not set
# CONFIG_PACKAGE_iptables-mod-nat-extra is not set
# CONFIG_PACKAGE_iptables-mod-psd is not set
# CONFIG_PACKAGE_iptables-mod-quota2 is not set
# CONFIG_PACKAGE_iptables-mod-rawnat is not set
# CONFIG_PACKAGE_iptables-mod-steal is not set
# CONFIG_PACKAGE_iptables-mod-sysrq is not set
# CONFIG_PACKAGE_iptables-mod-tarpit is not set
# CONFIG_PACKAGE_iptables-mod-tee is not set
# CONFIG_PACKAGE_iptables-mod-tproxy is not set
# CONFIG_PACKAGE_iptables-mod-u32 is not set
# CONFIG_PACKAGE_iptables-mod-ulog is not set
# CONFIG_PACKAGE_iptables-snmp is not set
# CONFIG_PACKAGE_iptaccount is not set
# CONFIG_PACKAGE_knock is not set
# CONFIG_PACKAGE_knockd is not set
# CONFIG_PACKAGE_l7-protocols is not set
# CONFIG_PACKAGE_miniupnpc is not set
CONFIG_PACKAGE_miniupnpd=y
# CONFIG_PACKAGE_natpmp is not set
# CONFIG_PACKAGE_natpmpc is not set
# CONFIG_PACKAGE_nufw is not set
# CONFIG_PACKAGE_nufw-modules is not set
# CONFIG_PACKAGE_nufw-python is not set
# CONFIG_PACKAGE_nutcpc is not set
# CONFIG_PACKAGE_portsentry is not set
# CONFIG_PACKAGE_scanlogd is not set
# CONFIG_PACKAGE_shorewall-lite is not set
# CONFIG_PACKAGE_snort is not set
# CONFIG_PACKAGE_snort-mysql is not set
# CONFIG_PACKAGE_snort-pgsql is not set

#
# Firewall Tunnel
#
# CONFIG_PACKAGE_httptunnel is not set
# CONFIG_PACKAGE_icmptx is not set
# CONFIG_PACKAGE_iodine is not set
# CONFIG_PACKAGE_iodined is not set
# CONFIG_PACKAGE_nstx is not set
# CONFIG_PACKAGE_nstxd is not set
# CONFIG_PACKAGE_ptunnel is not set

#
# IP Addresses and Names
#
# CONFIG_PACKAGE_avahi-autoipd is not set
# CONFIG_PACKAGE_avahi-daemon is not set
# CONFIG_PACKAGE_avahi-dnsconfd is not set
# CONFIG_PACKAGE_avahi-utils is not set
# CONFIG_PACKAGE_bind-check is not set
# CONFIG_PACKAGE_bind-client is not set
# CONFIG_PACKAGE_bind-dig is not set
# CONFIG_PACKAGE_bind-dnssec is not set
# CONFIG_PACKAGE_bind-host is not set
# CONFIG_PACKAGE_bind-rndc is not set
# CONFIG_PACKAGE_bind-server is not set
# CONFIG_PACKAGE_bind-tools is not set
CONFIG_PACKAGE_ddns-scripts=y
# CONFIG_PACKAGE_dhcp-forwarder is not set
# CONFIG_PACKAGE_dhcpcd is not set
# CONFIG_PACKAGE_djbdns-axfrdns is not set
# CONFIG_PACKAGE_djbdns-base is not set
# CONFIG_PACKAGE_djbdns-dnscache is not set
# CONFIG_PACKAGE_djbdns-rbldns is not set
# CONFIG_PACKAGE_djbdns-tinydns is not set
# CONFIG_PACKAGE_djbdns-tools is not set
# CONFIG_PACKAGE_djbdns-walldns is not set
# CONFIG_PACKAGE_drill is not set
# CONFIG_PACKAGE_dudders is not set
# CONFIG_PACKAGE_ez-ipupdate is not set
# CONFIG_PACKAGE_howl-autoipd is not set
# CONFIG_PACKAGE_howl-mdnsresponder is not set
# CONFIG_PACKAGE_howl-nifd is not set
# CONFIG_PACKAGE_howl-utils is not set
# CONFIG_PACKAGE_ipupdate is not set
# CONFIG_PACKAGE_isc-dhcp-client-ipv4 is not set
# CONFIG_PACKAGE_isc-dhcp-client-ipv6 is not set
# CONFIG_PACKAGE_isc-dhcp-omshell-ipv4 is not set
# CONFIG_PACKAGE_isc-dhcp-omshell-ipv6 is not set
# CONFIG_PACKAGE_isc-dhcp-relay-ipv4 is not set
# CONFIG_PACKAGE_isc-dhcp-relay-ipv6 is not set
# CONFIG_PACKAGE_isc-dhcp-server-ipv4 is not set
# CONFIG_PACKAGE_isc-dhcp-server-ipv6 is not set
# CONFIG_PACKAGE_maradns is not set
# CONFIG_PACKAGE_mdns-utils is not set
# CONFIG_PACKAGE_mdnsd is not set
# CONFIG_PACKAGE_mdnsresponder is not set
# CONFIG_PACKAGE_ndyndns is not set
# CONFIG_PACKAGE_rarpd is not set
# CONFIG_PACKAGE_unbound is not set
# CONFIG_PACKAGE_unbound-anchor is not set
# CONFIG_PACKAGE_unbound-control is not set
# CONFIG_PACKAGE_unbound-control-setup is not set
# CONFIG_PACKAGE_unbound-host is not set
# CONFIG_PACKAGE_updatedd is not set
# CONFIG_PACKAGE_yaddns is not set

#
# Instant Messaging
#
# CONFIG_PACKAGE_bahamut is not set
# CONFIG_PACKAGE_bitchx is not set
# CONFIG_PACKAGE_bitlbee is not set
# CONFIG_PACKAGE_dircproxy is not set
# CONFIG_PACKAGE_ekg is not set
# CONFIG_PACKAGE_imsnif is not set
# CONFIG_PACKAGE_imspector is not set
# CONFIG_PACKAGE_irssi is not set
# CONFIG_PACKAGE_irssi-glib1 is not set
# CONFIG_PACKAGE_irssi-nossl is not set
# CONFIG_PACKAGE_miau is not set
# CONFIG_PACKAGE_ngircd is not set
# CONFIG_PACKAGE_ngircd-nossl is not set
CONFIG_PACKAGE_prosody=y
# CONFIG_PACKAGE_psybnc is not set
# CONFIG_PACKAGE_reaim is not set
# CONFIG_PACKAGE_tmsnc is not set
# CONFIG_PACKAGE_umurmur-openssl is not set
# CONFIG_PACKAGE_umurmur-polarssl is not set
# CONFIG_PACKAGE_weechat is not set
# CONFIG_PACKAGE_znc is not set

#
# NMAP Suite
#
CONFIG_PACKAGE_ncat=y
# CONFIG_PACKAGE_ncat-ssl is not set
# CONFIG_PACKAGE_ndiff is not set
CONFIG_PACKAGE_nmap=y
# CONFIG_PACKAGE_nmap-ssl is not set
# CONFIG_PACKAGE_nping is not set

#
# NNTP
#
# CONFIG_PACKAGE_leafnode is not set
# CONFIG_PACKAGE_nzbget is not set
# CONFIG_PACKAGE_nzbgetweb is not set

#
# NTRIP
#
# CONFIG_PACKAGE_ntripcaster is not set
# CONFIG_PACKAGE_ntripclient is not set
# CONFIG_PACKAGE_ntripserver is not set

#
# P2P
#
# CONFIG_PACKAGE_amule is not set
# CONFIG_PACKAGE_mutella is not set
# CONFIG_PACKAGE_opendchub is not set
# CONFIG_PACKAGE_peerguardian is not set
# CONFIG_PACKAGE_uhub is not set

#
# Routing and Redirection
#
# CONFIG_PACKAGE_babeld is not set
# CONFIG_PACKAGE_batmand is not set
# CONFIG_PACKAGE_bird4 is not set
# CONFIG_PACKAGE_birdc4 is not set
# CONFIG_PACKAGE_bmx6 is not set
# CONFIG_PACKAGE_bmxd is not set
# CONFIG_PACKAGE_igmpproxy is not set
CONFIG_PACKAGE_ip=y
# CONFIG_PACKAGE_lldpd is not set
# CONFIG_PACKAGE_net-tools-route is not set
# CONFIG_PACKAGE_olsrd is not set
# CONFIG_PACKAGE_parprouted is not set
# CONFIG_PACKAGE_quagga is not set
# CONFIG_PACKAGE_redir is not set
# CONFIG_PACKAGE_relayd is not set
# CONFIG_PACKAGE_rinetd is not set
# CONFIG_PACKAGE_smcroute is not set
# CONFIG_PACKAGE_sslh is not set
# CONFIG_PACKAGE_udp-broadcast-relay is not set
# CONFIG_PACKAGE_vis is not set
# CONFIG_PACKAGE_vrrpd is not set
# CONFIG_PACKAGE_wing is not set

#
# SSH
#
# CONFIG_PACKAGE_autossh is not set
# CONFIG_PACKAGE_corkscrew is not set
# CONFIG_PACKAGE_gesftpserver is not set
CONFIG_PACKAGE_openssh-client=y
CONFIG_PACKAGE_openssh-client-utils=y
CONFIG_PACKAGE_openssh-keygen=y
# CONFIG_PACKAGE_openssh-moduli is not set
# CONFIG_PACKAGE_openssh-server is not set
# CONFIG_PACKAGE_openssh-sftp-client is not set
# CONFIG_PACKAGE_openssh-sftp-server is not set
# CONFIG_PACKAGE_rssh is not set
# CONFIG_PACKAGE_sshtunnel is not set

#
# Telephony
#
# CONFIG_PACKAGE_asterisk18 is not set
# CONFIG_PACKAGE_asterisk18-chan-sccp-b is not set
# CONFIG_PACKAGE_baresip is not set
# CONFIG_PACKAGE_freeswitch is not set
# CONFIG_PACKAGE_kamailio is not set
# CONFIG_PACKAGE_kamailio3 is not set
# CONFIG_PACKAGE_libopenzap is not set
# CONFIG_PACKAGE_miax is not set
# CONFIG_PACKAGE_openser is not set
# CONFIG_PACKAGE_opensips is not set
# CONFIG_PACKAGE_pcapsipdump is not set
# CONFIG_PACKAGE_restund is not set
# CONFIG_PACKAGE_rtpproxy is not set
# CONFIG_PACKAGE_sipp is not set
# CONFIG_PACKAGE_siproxd is not set
# CONFIG_PACKAGE_sipsak is not set
CONFIG_PACKAGE_smap=y
CONFIG_PACKAGE_smap-to-devinfo=y
# CONFIG_PACKAGE_yate is not set

#
# Time Synchronization
#
# CONFIG_PACKAGE_chrony is not set
# CONFIG_PACKAGE_htpdate is not set
# CONFIG_PACKAGE_ntp-keygen is not set
# CONFIG_PACKAGE_ntp-keygen-ssl is not set
# CONFIG_PACKAGE_ntp-utils is not set
# CONFIG_PACKAGE_ntpclient is not set
# CONFIG_PACKAGE_ntpd is not set
# CONFIG_PACKAGE_ntpd-ssl is not set
# CONFIG_PACKAGE_ntpdate is not set
# CONFIG_PACKAGE_openntpd is not set
# CONFIG_PACKAGE_ptpd is not set

#
# VPN
#
# CONFIG_PACKAGE_chaosvpn is not set
# CONFIG_PACKAGE_etherpuppet is not set
# CONFIG_PACKAGE_frickin is not set
# CONFIG_PACKAGE_ipsec-tools is not set
# CONFIG_PACKAGE_isakmpd is not set
# CONFIG_PACKAGE_l2tpd is not set
# CONFIG_PACKAGE_l2tpns is not set
# CONFIG_PACKAGE_matrixtunnel is not set
# CONFIG_PACKAGE_n2n is not set
# CONFIG_PACKAGE_openconnect is not set
# CONFIG_PACKAGE_openl2tp-full is not set
# CONFIG_PACKAGE_openl2tp-mini is not set
# CONFIG_PACKAGE_opennhrp is not set
# CONFIG_PACKAGE_openswan is not set
# CONFIG_PACKAGE_openvpn is not set
# CONFIG_PACKAGE_openvpn-devel-nossl is not set
CONFIG_PACKAGE_openvpn-devel-openssl=y

#
# Configuration
#
CONFIG_OPENVPN_DEVEL_openssl_ENABLE_LZO=y
# CONFIG_OPENVPN_DEVEL_openssl_ENABLE_X509_ALT_USERNAME is not set
CONFIG_OPENVPN_DEVEL_openssl_ENABLE_SERVER=y
# CONFIG_OPENVPN_DEVEL_openssl_ENABLE_MANAGEMENT is not set
CONFIG_OPENVPN_DEVEL_openssl_ENABLE_HTTP=y
CONFIG_OPENVPN_DEVEL_openssl_ENABLE_SOCKS=y
CONFIG_OPENVPN_DEVEL_openssl_ENABLE_FRAGMENT=y
CONFIG_OPENVPN_DEVEL_openssl_ENABLE_MULTIHOME=y
CONFIG_OPENVPN_DEVEL_openssl_ENABLE_PORT_SHARE=y
CONFIG_OPENVPN_DEVEL_openssl_ENABLE_DEF_AUTH=y
CONFIG_OPENVPN_DEVEL_openssl_ENABLE_PF=y
# CONFIG_OPENVPN_DEVEL_openssl_ENABLE_IPROUTE2 is not set
# CONFIG_PACKAGE_openvpn-devel-polarssl is not set
# CONFIG_PACKAGE_openvpn-easy-rsa is not set
# CONFIG_PACKAGE_pptpd is not set
# CONFIG_PACKAGE_quicktun is not set
# CONFIG_PACKAGE_ssltunnel is not set
# CONFIG_PACKAGE_strongswan is not set
# CONFIG_PACKAGE_strongswan-charon is not set
# CONFIG_PACKAGE_strongswan-default is not set
# CONFIG_PACKAGE_strongswan-full is not set
# CONFIG_PACKAGE_strongswan-libfast is not set
# CONFIG_PACKAGE_strongswan-minimal is not set
# CONFIG_PACKAGE_strongswan-mod-addrblock is not set
# CONFIG_PACKAGE_strongswan-mod-aes is not set
# CONFIG_PACKAGE_strongswan-mod-af-alg is not set
# CONFIG_PACKAGE_strongswan-mod-agent is not set
# CONFIG_PACKAGE_strongswan-mod-attr is not set
# CONFIG_PACKAGE_strongswan-mod-attr-sql is not set
# CONFIG_PACKAGE_strongswan-mod-blowfish is not set
# CONFIG_PACKAGE_strongswan-mod-ccm is not set
# CONFIG_PACKAGE_strongswan-mod-cmac is not set
# CONFIG_PACKAGE_strongswan-mod-constraints is not set
# CONFIG_PACKAGE_strongswan-mod-coupling is not set
# CONFIG_PACKAGE_strongswan-mod-ctr is not set
# CONFIG_PACKAGE_strongswan-mod-curl is not set
# CONFIG_PACKAGE_strongswan-mod-des is not set
# CONFIG_PACKAGE_strongswan-mod-dhcp is not set
# CONFIG_PACKAGE_strongswan-mod-dnskey is not set
# CONFIG_PACKAGE_strongswan-mod-duplicheck is not set
# CONFIG_PACKAGE_strongswan-mod-eap-identity is not set
# CONFIG_PACKAGE_strongswan-mod-eap-md5 is not set
# CONFIG_PACKAGE_strongswan-mod-eap-mschapv2 is not set
# CONFIG_PACKAGE_strongswan-mod-farp is not set
# CONFIG_PACKAGE_strongswan-mod-fips-prf is not set
# CONFIG_PACKAGE_strongswan-mod-gcm is not set
# CONFIG_PACKAGE_strongswan-mod-gcrypt is not set
# CONFIG_PACKAGE_strongswan-mod-gmp is not set
# CONFIG_PACKAGE_strongswan-mod-ha is not set
# CONFIG_PACKAGE_strongswan-mod-hmac is not set
# CONFIG_PACKAGE_strongswan-mod-kernel-klips is not set
# CONFIG_PACKAGE_strongswan-mod-kernel-netlink is not set
# CONFIG_PACKAGE_strongswan-mod-kernel-pfkey is not set
# CONFIG_PACKAGE_strongswan-mod-ldap is not set
# CONFIG_PACKAGE_strongswan-mod-led is not set
# CONFIG_PACKAGE_strongswan-mod-load-tester is not set
# CONFIG_PACKAGE_strongswan-mod-md4 is not set
# CONFIG_PACKAGE_strongswan-mod-md5 is not set
# CONFIG_PACKAGE_strongswan-mod-mysql is not set
# CONFIG_PACKAGE_strongswan-mod-nonce is not set
# CONFIG_PACKAGE_strongswan-mod-openssl is not set
# CONFIG_PACKAGE_strongswan-mod-padlock is not set
# CONFIG_PACKAGE_strongswan-mod-pem is not set
# CONFIG_PACKAGE_strongswan-mod-pgp is not set
# CONFIG_PACKAGE_strongswan-mod-pkcs1 is not set
# CONFIG_PACKAGE_strongswan-mod-pkcs11 is not set
# CONFIG_PACKAGE_strongswan-mod-pkcs8 is not set
# CONFIG_PACKAGE_strongswan-mod-pubkey is not set
# CONFIG_PACKAGE_strongswan-mod-random is not set
# CONFIG_PACKAGE_strongswan-mod-resolve is not set
# CONFIG_PACKAGE_strongswan-mod-revocation is not set
# CONFIG_PACKAGE_strongswan-mod-sha1 is not set
# CONFIG_PACKAGE_strongswan-mod-sha2 is not set
# CONFIG_PACKAGE_strongswan-mod-smp is not set
# CONFIG_PACKAGE_strongswan-mod-socket-default is not set
# CONFIG_PACKAGE_strongswan-mod-socket-dynamic is not set
# CONFIG_PACKAGE_strongswan-mod-socket-raw is not set
# CONFIG_PACKAGE_strongswan-mod-sql is not set
# CONFIG_PACKAGE_strongswan-mod-sqlite is not set
# CONFIG_PACKAGE_strongswan-mod-stroke is not set
# CONFIG_PACKAGE_strongswan-mod-test-vectors is not set
# CONFIG_PACKAGE_strongswan-mod-uci is not set
# CONFIG_PACKAGE_strongswan-mod-updown is not set
# CONFIG_PACKAGE_strongswan-mod-whitelist is not set
# CONFIG_PACKAGE_strongswan-mod-x509 is not set
# CONFIG_PACKAGE_strongswan-mod-xauth-eap is not set
# CONFIG_PACKAGE_strongswan-mod-xauth-generic is not set
# CONFIG_PACKAGE_strongswan-mod-xcbc is not set
# CONFIG_PACKAGE_strongswan-utils is not set
# CONFIG_PACKAGE_tinc is not set
# CONFIG_PACKAGE_uanytun is not set
# CONFIG_PACKAGE_uanytun-nocrypt is not set
# CONFIG_PACKAGE_uanytun-sslcrypt is not set
# CONFIG_PACKAGE_vpnc is not set
# CONFIG_PACKAGE_vpnc-scripts is not set
# CONFIG_PACKAGE_vpzone is not set
# CONFIG_PACKAGE_vtun is not set
# CONFIG_PACKAGE_xl2tpd is not set

#
# Version Control Systems
#
CONFIG_PACKAGE_git=y
# CONFIG_PACKAGE_mercurial is not set
CONFIG_PACKAGE_subversion-libs=y
CONFIG_PACKAGE_subversion-client=y
# CONFIG_PACKAGE_subversion-server is not set

#
# Web
#
# CONFIG_PACKAGE_gatling is not set

#
# Web Servers/Proxies
#
# CONFIG_PACKAGE_apache is not set
# CONFIG_PACKAGE_appweb is not set
# CONFIG_PACKAGE_axhttpd is not set
# CONFIG_PACKAGE_axtlswrap is not set
# CONFIG_PACKAGE_crowdcontrol is not set
# CONFIG_PACKAGE_dansguardian is not set
# CONFIG_PACKAGE_haproxy is not set
# CONFIG_PACKAGE_hiawatha is not set
# CONFIG_PACKAGE_lighttpd is not set
# CONFIG_PACKAGE_mini-httpd is not set
# CONFIG_PACKAGE_mini-httpd-htpasswd is not set
# CONFIG_PACKAGE_mini-httpd-matrixssl is not set
# CONFIG_PACKAGE_mini-httpd-openssl is not set
# CONFIG_PACKAGE_nginx is not set
# CONFIG_PACKAGE_obfsproxy is not set
# CONFIG_PACKAGE_pdnsd is not set
# CONFIG_PACKAGE_pepsal is not set
# CONFIG_PACKAGE_polipo is not set
# CONFIG_PACKAGE_privoxy is not set
# CONFIG_PACKAGE_seeks is not set
# CONFIG_PACKAGE_sockd is not set
# CONFIG_PACKAGE_socksify is not set
# CONFIG_PACKAGE_spawn-fcgi is not set
# CONFIG_PACKAGE_squid is not set
# CONFIG_PACKAGE_srelay is not set
# CONFIG_PACKAGE_tinyproxy is not set
# CONFIG_PACKAGE_transocks is not set
# CONFIG_PACKAGE_tsocks is not set
CONFIG_PACKAGE_uhttpd=y
# CONFIG_PACKAGE_uhttpd_debug is not set
# CONFIG_PACKAGE_uhttpd-mod-lua is not set
CONFIG_PACKAGE_uhttpd-mod-tls=y
CONFIG_PACKAGE_uhttpd-mod-tls_cyassl=y
# CONFIG_PACKAGE_uhttpd-mod-tls_openssl is not set
# CONFIG_PACKAGE_uhttpd-mod-ubus is not set
# CONFIG_PACKAGE_wccpd is not set

#
# dial-in/up
#
# CONFIG_PACKAGE_rp-l2tpd is not set
# CONFIG_PACKAGE_rp-pppoe-relay is not set
# CONFIG_PACKAGE_rp-pppoe-server is not set
# CONFIG_PACKAGE_rp-pppoe-sniff is not set

#
# firmware
#
# CONFIG_PACKAGE_speedtouch-usb-firmware is not set

#
# wireless
#
# CONFIG_PACKAGE_aircrack-ng is not set
# CONFIG_PACKAGE_aircrack-ptw is not set
# CONFIG_PACKAGE_airpwn is not set
# CONFIG_PACKAGE_horst is not set
# CONFIG_PACKAGE_karma is not set
# CONFIG_PACKAGE_kismet-client is not set
# CONFIG_PACKAGE_kismet-drone is not set
# CONFIG_PACKAGE_kismet-server is not set
# CONFIG_PACKAGE_mdk3 is not set
# CONFIG_PACKAGE_reaver is not set
# CONFIG_PACKAGE_snort-wireless is not set
# CONFIG_PACKAGE_snort-wireless-mysql is not set
# CONFIG_PACKAGE_snort-wireless-pgsql is not set
# CONFIG_PACKAGE_wavemon is not set
# CONFIG_PACKAGE_xsupplicant is not set
# CONFIG_PACKAGE_aoetools is not set
# CONFIG_PACKAGE_apf is not set
# CONFIG_PACKAGE_aprx is not set
# CONFIG_PACKAGE_arpd is not set
# CONFIG_PACKAGE_arpwatch is not set
# CONFIG_PACKAGE_bing is not set
CONFIG_PACKAGE_bmon=y
# CONFIG_PACKAGE_bwm is not set
# CONFIG_PACKAGE_bwping is not set
# CONFIG_PACKAGE_cdp-tools is not set
# CONFIG_PACKAGE_chat is not set
# CONFIG_PACKAGE_cifsmount is not set
CONFIG_PACKAGE_crda=y
# CONFIG_PACKAGE_cups is not set
# CONFIG_PACKAGE_daemonlogger is not set
# CONFIG_PACKAGE_darkstat is not set
# CONFIG_PACKAGE_ditg is not set
# CONFIG_PACKAGE_dmapd is not set
# CONFIG_PACKAGE_dns2tcp is not set
# CONFIG_PACKAGE_dns2tcpd is not set
# CONFIG_PACKAGE_dsl-qos-queue is not set
# CONFIG_PACKAGE_e169-stats is not set
# CONFIG_PACKAGE_elinks is not set
# CONFIG_PACKAGE_etherwake is not set
CONFIG_PACKAGE_ethtool=y
# CONFIG_PACKAGE_ettercap is not set
# CONFIG_PACKAGE_faifa is not set
# CONFIG_PACKAGE_fakeidentd is not set
# CONFIG_PACKAGE_flow-tools is not set
# CONFIG_PACKAGE_fping is not set
# CONFIG_PACKAGE_fprobe is not set
# CONFIG_PACKAGE_fprobe-ulog is not set
# CONFIG_PACKAGE_freeradius2 is not set
# CONFIG_PACKAGE_genl is not set
# CONFIG_PACKAGE_gpsd is not set
# CONFIG_PACKAGE_gpsd-clients is not set
# CONFIG_PACKAGE_hostapd is not set
CONFIG_PACKAGE_hostapd-mini=y
CONFIG_PACKAGE_hostapd-utils=y
# CONFIG_PACKAGE_hpavcfg is not set
# CONFIG_PACKAGE_hping3 is not set
CONFIG_PACKAGE_httping=y
# CONFIG_PACKAGE_httping-nossl is not set
# CONFIG_PACKAGE_ifenslave is not set
# CONFIG_PACKAGE_ifstat is not set
CONFIG_PACKAGE_iftop=y
# CONFIG_PACKAGE_ipcad is not set
# CONFIG_PACKAGE_iperf is not set
CONFIG_PACKAGE_iperf-mt=y
# CONFIG_PACKAGE_ipset is not set
# CONFIG_PACKAGE_iptraf is not set
# CONFIG_PACKAGE_iputils-arping is not set
# CONFIG_PACKAGE_iputils-clockdiff is not set
# CONFIG_PACKAGE_iputils-ping is not set
# CONFIG_PACKAGE_iputils-ping6 is not set
# CONFIG_PACKAGE_iputils-tftpd is not set
# CONFIG_PACKAGE_iputils-tracepath is not set
# CONFIG_PACKAGE_iputils-tracepath6 is not set
# CONFIG_PACKAGE_iputils-traceroute6 is not set
CONFIG_PACKAGE_iw=y
# CONFIG_PACKAGE_jtg is not set
# CONFIG_PACKAGE_keepalived is not set
# CONFIG_PACKAGE_keynote is not set
# CONFIG_PACKAGE_krb5-client is not set
# CONFIG_PACKAGE_krb5-libs is not set
# CONFIG_PACKAGE_krb5-server is not set
# CONFIG_PACKAGE_l2tpv3tun is not set
# CONFIG_PACKAGE_lft is not set
# CONFIG_PACKAGE_lispconf is not set
# CONFIG_PACKAGE_lispd is not set
# CONFIG_PACKAGE_lsm is not set
# CONFIG_PACKAGE_m-route is not set
CONFIG_PACKAGE_mac-to-devinfo=y
# CONFIG_PACKAGE_madwimax is not set
# CONFIG_PACKAGE_memcached is not set
# CONFIG_PACKAGE_mgen is not set
# CONFIG_PACKAGE_mii-tool is not set
# CONFIG_PACKAGE_mini-snmpd is not set
# CONFIG_PACKAGE_mosquitto is not set
# CONFIG_PACKAGE_mosquitto-client is not set
# CONFIG_PACKAGE_mrtg is not set
# CONFIG_PACKAGE_mtr is not set
# CONFIG_PACKAGE_multiwan is not set
# CONFIG_PACKAGE_mvprelay is not set
# CONFIG_PACKAGE_nbd is not set
# CONFIG_PACKAGE_nbtscan is not set
# CONFIG_PACKAGE_net-tools-arp is not set
CONFIG_PACKAGE_net-tools-hostname=y
# CONFIG_PACKAGE_net-tools-dnsdomainname is not set
# CONFIG_PACKAGE_net-tools-domainname is not set
CONFIG_PACKAGE_net-tools-ifconfig=y
# CONFIG_PACKAGE_net-tools-ipmaddr is not set
# CONFIG_PACKAGE_net-tools-iptunnel is not set
# CONFIG_PACKAGE_net-tools-mii-tool is not set
# CONFIG_PACKAGE_net-tools-nameif is not set
CONFIG_PACKAGE_net-tools-netstat=y
# CONFIG_PACKAGE_net-tools-nisdomainname is not set
# CONFIG_PACKAGE_net-tools-plipconfig is not set
# CONFIG_PACKAGE_net-tools-rarp is not set
# CONFIG_PACKAGE_net-tools-slattach is not set
# CONFIG_PACKAGE_net-tools-ypdomainname is not set
CONFIG_PACKAGE_netcat=y
CONFIG_PACKAGE_netdiscover=y
CONFIG_PACKAGE_netdiscover-to-devinfo=y
# CONFIG_PACKAGE_netio is not set
# CONFIG_PACKAGE_netperf is not set
# CONFIG_PACKAGE_netpipe is not set
CONFIG_PACKAGE_netstat-nat=y
CONFIG_PACKAGE_ngrep=y
# CONFIG_PACKAGE_noping is not set
# CONFIG_PACKAGE_nuttcp is not set
# CONFIG_PACKAGE_nuttcp-xinetd is not set
# CONFIG_PACKAGE_oidentd is not set
# CONFIG_PACKAGE_openldap-server is not set
# CONFIG_PACKAGE_openrrcp is not set
# CONFIG_PACKAGE_openslp is not set
# CONFIG_PACKAGE_oping is not set
# CONFIG_PACKAGE_p910nd is not set
# CONFIG_PACKAGE_paris-traceroute is not set
# CONFIG_PACKAGE_peervpn is not set
# CONFIG_PACKAGE_pen is not set
# CONFIG_PACKAGE_portmap is not set
CONFIG_PACKAGE_ppp=y
# CONFIG_PACKAGE_ppp-mod-pppoa is not set
CONFIG_PACKAGE_ppp-mod-pppoe=y
# CONFIG_PACKAGE_ppp-mod-pppol2tp is not set
# CONFIG_PACKAGE_ppp-mod-pptp is not set
# CONFIG_PACKAGE_ppp-mod-radius is not set
# CONFIG_PACKAGE_ppp-multilink is not set
# CONFIG_PACKAGE_pppdump is not set
# CONFIG_PACKAGE_pppstats is not set
# CONFIG_PACKAGE_pyload is not set
# CONFIG_PACKAGE_pyrit is not set
# CONFIG_PACKAGE_qolyester is not set
# CONFIG_PACKAGE_raddump is not set
# CONFIG_PACKAGE_radiusclient-ng is not set
# CONFIG_PACKAGE_radsecproxy is not set
# CONFIG_PACKAGE_rrs is not set
# CONFIG_PACKAGE_rrs-nossl is not set
# CONFIG_PACKAGE_rssileds is not set
# CONFIG_PACKAGE_samba36-client is not set
# CONFIG_PACKAGE_samba36-server is not set
# CONFIG_PACKAGE_scdp is not set
# CONFIG_PACKAGE_sctp is not set
# CONFIG_PACKAGE_ser2net is not set
# CONFIG_PACKAGE_serialoverip is not set
# CONFIG_PACKAGE_shat is not set
# CONFIG_PACKAGE_slurm is not set
# CONFIG_PACKAGE_smtptrapd is not set
# CONFIG_PACKAGE_snmp-utils is not set
# CONFIG_PACKAGE_snmpd is not set
# CONFIG_PACKAGE_snmpd-static is not set
# CONFIG_PACKAGE_socat is not set
# CONFIG_PACKAGE_softflowd is not set
# CONFIG_PACKAGE_soloscli is not set
# CONFIG_PACKAGE_ss is not set
# CONFIG_PACKAGE_sscep is not set
# CONFIG_PACKAGE_sslcat is not set
# CONFIG_PACKAGE_sslsniff is not set
# CONFIG_PACKAGE_sslstrip is not set
# CONFIG_PACKAGE_stun-client is not set
# CONFIG_PACKAGE_stund is not set
# CONFIG_PACKAGE_stunnel is not set
# CONFIG_PACKAGE_synce-dccm is not set
CONFIG_PACKAGE_tc=y
CONFIG_PACKAGE_tcpdump=y
# CONFIG_PACKAGE_tcpdump-mini is not set
# CONFIG_PACKAGE_tcptraceroute is not set
# CONFIG_PACKAGE_tctool is not set
# CONFIG_PACKAGE_tor is not set
# CONFIG_PACKAGE_tor-alpha is not set
# CONFIG_PACKAGE_tor-alpha-fw-helper is not set
# CONFIG_PACKAGE_tor-alpha-geoip is not set
# CONFIG_PACKAGE_tor-geoip is not set
CONFIG_PACKAGE_ttcp=y
# CONFIG_PACKAGE_ucarp is not set
# CONFIG_PACKAGE_ucspi-tcp is not set
# CONFIG_PACKAGE_udpcast is not set
# CONFIG_PACKAGE_udpxy is not set
# CONFIG_PACKAGE_ulogd is not set
# CONFIG_PACKAGE_uob-nomad is not set
# CONFIG_PACKAGE_usbip is not set
# CONFIG_PACKAGE_vblade is not set
# CONFIG_PACKAGE_veth is not set
# CONFIG_PACKAGE_vgp is not set
# CONFIG_PACKAGE_vnc-reflector is not set
# CONFIG_PACKAGE_vncrepeater is not set
# CONFIG_PACKAGE_vnstat is not set
# CONFIG_PACKAGE_wdiag is not set
# CONFIG_PACKAGE_whob is not set
# CONFIG_PACKAGE_wiviz is not set
# CONFIG_PACKAGE_wol is not set
CONFIG_PACKAGE_wpa-cli=y
CONFIG_PACKAGE_wpa-supplicant=y
# CONFIG_WPA_SUPPLICANT_NO_TIMESTAMP_CHECK is not set
CONFIG_WPA_SUPPLICANT_INTERNAL=y
# CONFIG_WPA_SUPPLICANT_OPENSSL is not set
# CONFIG_WPA_RFKILL_SUPPORT is not set
CONFIG_WPA_MSG_MIN_PRIORITY=3
CONFIG_DRIVER_WEXT_SUPPORT=y
CONFIG_DRIVER_11N_SUPPORT=y
# CONFIG_PACKAGE_wpa-supplicant-mini is not set
# CONFIG_PACKAGE_wpad is not set
# CONFIG_PACKAGE_wpad-mini is not set
# CONFIG_PACKAGE_wprobe-export is not set
# CONFIG_PACKAGE_wprobe-util is not set
# CONFIG_PACKAGE_wshaper is not set
# CONFIG_PACKAGE_xinetd is not set

#
# Libraries
#

#
# Filesystem
#
CONFIG_PACKAGE_libcom_err=y
CONFIG_PACKAGE_libext2fs=y
# CONFIG_PACKAGE_libfuse is not set
# CONFIG_PACKAGE_libnfsidmap is not set
# CONFIG_PACKAGE_libow is not set
# CONFIG_PACKAGE_libow-capi is not set
# CONFIG_PACKAGE_libsysfs is not set

#
# Firewall
#
# CONFIG_PACKAGE_libfko is not set
CONFIG_PACKAGE_libip4tc=y
CONFIG_PACKAGE_libip6tc=y
# CONFIG_PACKAGE_libipq is not set
# CONFIG_PACKAGE_libiptc is not set
CONFIG_PACKAGE_libxtables=y

#
# SSL
#
# CONFIG_PACKAGE_libaxtls is not set
CONFIG_PACKAGE_libcyassl=y
# CONFIG_PACKAGE_libgnutls is not set
# CONFIG_PACKAGE_libgnutls-extra is not set
# CONFIG_PACKAGE_libgnutls-openssl is not set
# CONFIG_PACKAGE_libmatrixssl is not set
CONFIG_PACKAGE_libopenssl=y

#
# Configuration
#
# CONFIG_OPENSSL_ENGINE_CRYPTO is not set
# CONFIG_PACKAGE_libpolarssl is not set

#
# Sound
#
# CONFIG_PACKAGE_liblo is not set

#
# database
#
# CONFIG_PACKAGE_libpq is not set
# CONFIG_PACKAGE_libsqlite2 is not set
CONFIG_PACKAGE_libsqlite3=y
# CONFIG_PACKAGE_pgsqlodbc is not set
# CONFIG_PACKAGE_tokyocabinet is not set
CONFIG_PACKAGE_unixodbc=y
# CONFIG_PACKAGE_alsa-lib is not set
# CONFIG_PACKAGE_argp-standalone is not set
# CONFIG_PACKAGE_argtable is not set
# CONFIG_PACKAGE_bind-libs is not set
# CONFIG_PACKAGE_bluez-libs is not set
# CONFIG_PACKAGE_boost-chrono is not set
# CONFIG_PACKAGE_boost-date_time is not set
# CONFIG_PACKAGE_boost-filesystem is not set
# CONFIG_PACKAGE_boost-graph is not set
# CONFIG_PACKAGE_boost-iostreams is not set
# CONFIG_PACKAGE_boost-locale is not set
# CONFIG_PACKAGE_boost-math is not set
# CONFIG_PACKAGE_boost-program_options is not set
# CONFIG_PACKAGE_boost-python is not set
# CONFIG_PACKAGE_boost-random is not set
# CONFIG_PACKAGE_boost-regex is not set
# CONFIG_PACKAGE_boost-serialization is not set
# CONFIG_PACKAGE_boost-signals is not set
# CONFIG_PACKAGE_boost-system is not set
# CONFIG_PACKAGE_boost-test is not set
# CONFIG_PACKAGE_boost-thread is not set
# CONFIG_PACKAGE_boost-wave is not set
# CONFIG_PACKAGE_ccid is not set
# CONFIG_PACKAGE_cgilib is not set
# CONFIG_PACKAGE_check is not set
# CONFIG_PACKAGE_classpath is not set
# CONFIG_PACKAGE_classpath-tools is not set
# CONFIG_PACKAGE_clearsilver is not set
# CONFIG_PACKAGE_confuse is not set
# CONFIG_PACKAGE_credis is not set
# CONFIG_PACKAGE_directfb is not set
# CONFIG_PACKAGE_fcgi is not set
# CONFIG_PACKAGE_fftw3 is not set
# CONFIG_PACKAGE_fftw3f is not set
# CONFIG_PACKAGE_firewall-mod-save is not set
# CONFIG_PACKAGE_fribidi is not set
# CONFIG_PACKAGE_ftplib is not set
# CONFIG_PACKAGE_giflib is not set
# CONFIG_PACKAGE_glib1 is not set
# CONFIG_PACKAGE_glib2 is not set
# CONFIG_PACKAGE_glibmm is not set
# CONFIG_PACKAGE_id3lib is not set
# CONFIG_PACKAGE_jansson is not set
# CONFIG_PACKAGE_libIDL2 is not set
# CONFIG_PACKAGE_libaa is not set
# CONFIG_PACKAGE_libaio is not set
# CONFIG_PACKAGE_libamsel is not set
# CONFIG_PACKAGE_libao is not set
CONFIG_PACKAGE_libapr=y
CONFIG_PACKAGE_libaprutil=y
# CONFIG_PACKAGE_libart is not set
# CONFIG_PACKAGE_libassuan is not set
# CONFIG_PACKAGE_libatomicops is not set
CONFIG_PACKAGE_libattr=y
# CONFIG_PACKAGE_libaudiofile is not set
# CONFIG_PACKAGE_libavahi is not set
# CONFIG_PACKAGE_libavahi-client is not set
# CONFIG_PACKAGE_libavahi-dbus-support is not set
CONFIG_PACKAGE_libblkid=y
CONFIG_PACKAGE_libblobmsg-json=y
# CONFIG_PACKAGE_libboblight is not set
CONFIG_PACKAGE_libbsd=y
# CONFIG_PACKAGE_libbz2 is not set
CONFIG_PACKAGE_libcap=y
# CONFIG_PACKAGE_libcares is not set
# CONFIG_PACKAGE_libcelt is not set
# CONFIG_PACKAGE_libcharset is not set
# CONFIG_PACKAGE_libcli is not set
# CONFIG_PACKAGE_libclinkc is not set
# CONFIG_PACKAGE_libconfig is not set
# CONFIG_PACKAGE_libcroco is not set
# CONFIG_PACKAGE_libcryptoxx is not set
# CONFIG_PACKAGE_libcunit is not set
# CONFIG_PACKAGE_libcurl is not set
# CONFIG_PACKAGE_libcwiid is not set
CONFIG_PACKAGE_libdaemon=y
# CONFIG_PACKAGE_libdaq is not set
# CONFIG_PACKAGE_libdb47 is not set
# CONFIG_PACKAGE_libdbi is not set
# CONFIG_PACKAGE_libdbus is not set
# CONFIG_PACKAGE_libdbus-glib is not set
# CONFIG_PACKAGE_libdevmapper is not set
# CONFIG_PACKAGE_libdmapsharing is not set
# CONFIG_PACKAGE_libdnet is not set
# CONFIG_PACKAGE_libdvbpsi is not set
# CONFIG_PACKAGE_libdvdread is not set
CONFIG_PACKAGE_libelf=y
# CONFIG_PACKAGE_libevent is not set
# CONFIG_PACKAGE_libevent2 is not set
# CONFIG_PACKAGE_libevent2-core is not set
# CONFIG_PACKAGE_libevent2-extra is not set
# CONFIG_PACKAGE_libevent2-openssl is not set
# CONFIG_PACKAGE_libevent2-pthreads is not set
# CONFIG_PACKAGE_libeventlog is not set
# CONFIG_PACKAGE_libexif is not set
CONFIG_PACKAGE_libexpat=y
# CONFIG_PACKAGE_libexslt is not set
# CONFIG_PACKAGE_libezxml is not set
# CONFIG_PACKAGE_libfaad2 is not set
# CONFIG_PACKAGE_libfaifa is not set
# CONFIG_PACKAGE_libffi is not set
# CONFIG_PACKAGE_libffmpeg-custom is not set
# CONFIG_PACKAGE_libffmpeg-full is not set
# CONFIG_PACKAGE_libffmpeg-mini is not set
# CONFIG_PACKAGE_libflac is not set
# CONFIG_PACKAGE_libfreecwmp is not set
# CONFIG_PACKAGE_libfreefare is not set
# CONFIG_PACKAGE_libfreenect is not set
# CONFIG_PACKAGE_libfreetype is not set
# CONFIG_PACKAGE_libftdi is not set
# CONFIG_PACKAGE_libgcrypt is not set
# CONFIG_PACKAGE_libgd is not set
# CONFIG_PACKAGE_libgdbm is not set
CONFIG_PACKAGE_libgmp=y
# CONFIG_PACKAGE_libgpg-error is not set
# CONFIG_PACKAGE_libgpgme is not set
# CONFIG_PACKAGE_libgphoto2 is not set
# CONFIG_PACKAGE_libgps is not set
# CONFIG_PACKAGE_libgpsd is not set
# CONFIG_PACKAGE_libgsl is not set
# CONFIG_PACKAGE_libgsm is not set
# CONFIG_PACKAGE_libgssapi is not set
# CONFIG_PACKAGE_libhowl is not set
# CONFIG_PACKAGE_libiconv is not set
# CONFIG_PACKAGE_libiconv-full is not set
# CONFIG_PACKAGE_libid3tag is not set
CONFIG_PACKAGE_libidn=y
# CONFIG_PACKAGE_libiksemel is not set
# CONFIG_PACKAGE_libimobiledevice is not set
# CONFIG_PACKAGE_libinklevel is not set
# CONFIG_PACKAGE_libintl is not set
# CONFIG_PACKAGE_libintl-full is not set
# CONFIG_PACKAGE_libiw is not set
CONFIG_PACKAGE_libiwinfo=y
# CONFIG_PACKAGE_libjpeg is not set
# CONFIG_PACKAGE_libjs is not set
CONFIG_PACKAGE_libjson=y
# CONFIG_PACKAGE_libldns is not set
# CONFIG_PACKAGE_libleptonica is not set
CONFIG_PACKAGE_libltdl=y
CONFIG_PACKAGE_liblua=y
CONFIG_PACKAGE_liblzo=y
# CONFIG_PACKAGE_libmad is not set
CONFIG_PACKAGE_libmagic=y
# CONFIG_PACKAGE_libmbus is not set
# CONFIG_PACKAGE_libmcrypt is not set
# CONFIG_PACKAGE_libmicrohttpd is not set
# CONFIG_PACKAGE_libmicroxml is not set
# CONFIG_PACKAGE_libmikmod is not set
# CONFIG_PACKAGE_libminiupnpc is not set
# CONFIG_PACKAGE_libmms is not set
# CONFIG_PACKAGE_libmnl is not set
# CONFIG_PACKAGE_libmodbus is not set
# CONFIG_PACKAGE_libmosquitto is not set
# CONFIG_PACKAGE_libmount is not set
# CONFIG_PACKAGE_libmpcdec is not set
# CONFIG_PACKAGE_libmpd is not set
# CONFIG_PACKAGE_libmpdclient is not set
# CONFIG_PACKAGE_libmpeg2 is not set
# CONFIG_PACKAGE_libmysqlclient is not set
# CONFIG_PACKAGE_libmysqlclient-r is not set
# CONFIG_PACKAGE_libnatpmp is not set
CONFIG_PACKAGE_libncurses=y
# CONFIG_PACKAGE_libncursesw is not set
CONFIG_PACKAGE_libneon=y
# CONFIG_PACKAGE_libnet0 is not set
CONFIG_PACKAGE_libnet1=y
# CONFIG_PACKAGE_libnetfilter-conntrack is not set
# CONFIG_PACKAGE_libnetfilter-log is not set
# CONFIG_PACKAGE_libnetfilter-queue is not set
# CONFIG_PACKAGE_libnetsnmp is not set
# CONFIG_PACKAGE_libnewt is not set
# CONFIG_PACKAGE_libnfc is not set
# CONFIG_PACKAGE_libnfnetlink is not set
# CONFIG_PACKAGE_libnids is not set
# CONFIG_PACKAGE_libnl is not set
CONFIG_PACKAGE_libnl-tiny=y
# CONFIG_PACKAGE_libnmeap is not set
# CONFIG_PACKAGE_libogg is not set
# CONFIG_PACKAGE_liboil is not set
# CONFIG_PACKAGE_libol is not set
# CONFIG_PACKAGE_libopal is not set
# CONFIG_PACKAGE_libopencdk is not set
# CONFIG_PACKAGE_libopenh323 is not set
# CONFIG_PACKAGE_libopenldap is not set
# CONFIG_PACKAGE_liboping is not set
# CONFIG_PACKAGE_libortp is not set
# CONFIG_PACKAGE_libosip2 is not set
# CONFIG_PACKAGE_libowfat is not set
# CONFIG_PACKAGE_libpar2 is not set
CONFIG_PACKAGE_libpcap=y

#
# Configuration
#
# CONFIG_PCAP_HAS_USB is not set
CONFIG_PACKAGE_libpcre=y
# CONFIG_PACKAGE_libpcrecpp is not set
# CONFIG_PACKAGE_libpcsclite is not set
# CONFIG_PACKAGE_libpiano is not set
# CONFIG_PACKAGE_libplist is not set
# CONFIG_PACKAGE_libplistcxx is not set
# CONFIG_PACKAGE_libpng is not set
CONFIG_PACKAGE_libpopt=y
# CONFIG_PACKAGE_libprotobuf-c is not set
# CONFIG_PACKAGE_libptmalloc3 is not set
# CONFIG_PACKAGE_libradiusclient-ng is not set
# CONFIG_PACKAGE_libre is not set
CONFIG_PACKAGE_libreadline=y
# CONFIG_PACKAGE_librem is not set
CONFIG_PACKAGE_librpc=y
# CONFIG_PACKAGE_librpcsecgss is not set
# CONFIG_PACKAGE_librrd is not set
CONFIG_PACKAGE_librrd1=y
# CONFIG_PACKAGE_librsync is not set
# CONFIG_PACKAGE_libruby is not set
# CONFIG_PACKAGE_libsamplerate is not set
# CONFIG_PACKAGE_libsasl2 is not set
# CONFIG_PACKAGE_libsdl is not set
# CONFIG_PACKAGE_libsdl-mixer is not set
# CONFIG_PACKAGE_libsdl-sound is not set
# CONFIG_PACKAGE_libsensors is not set
# CONFIG_PACKAGE_libshout is not set
# CONFIG_PACKAGE_libsigcxx is not set
# CONFIG_PACKAGE_libslang2 is not set
# CONFIG_PACKAGE_libsml is not set
# CONFIG_PACKAGE_libsndfile is not set
# CONFIG_PACKAGE_libsocks is not set
# CONFIG_PACKAGE_libsoup is not set
# CONFIG_PACKAGE_libspandsp is not set
# CONFIG_PACKAGE_libspeex is not set
# CONFIG_PACKAGE_libspeexdsp is not set
# CONFIG_PACKAGE_libsrtp is not set
# CONFIG_PACKAGE_libssh2 is not set
# CONFIG_PACKAGE_libsynce is not set
# CONFIG_PACKAGE_libtasn1 is not set
# CONFIG_PACKAGE_libtheora is not set
# CONFIG_PACKAGE_libtiff is not set
# CONFIG_PACKAGE_libtiffxx is not set
# CONFIG_PACKAGE_libtorrent is not set
# CONFIG_PACKAGE_libtwin is not set
CONFIG_PACKAGE_libubox=y
CONFIG_PACKAGE_libuci=y
CONFIG_PACKAGE_libuci-lua=y
# CONFIG_PACKAGE_libucl is not set
# CONFIG_PACKAGE_libunbound is not set
# CONFIG_PACKAGE_libupnp is not set
# CONFIG_PACKAGE_libusb is not set
# CONFIG_PACKAGE_libusb-1.0 is not set
# CONFIG_PACKAGE_libusbmuxd is not set
# CONFIG_PACKAGE_libusbpp is not set
CONFIG_PACKAGE_libuuid=y
# CONFIG_PACKAGE_libv4l is not set
# CONFIG_PACKAGE_libvncserver is not set
# CONFIG_PACKAGE_libvorbis is not set
# CONFIG_PACKAGE_libvorbisidec is not set
# CONFIG_PACKAGE_libwrap is not set
# CONFIG_PACKAGE_libwxbase is not set
# CONFIG_PACKAGE_libxapian is not set
# CONFIG_PACKAGE_libxml2 is not set
# CONFIG_PACKAGE_libxslt is not set
CONFIG_PACKAGE_libzip=y
# CONFIG_PACKAGE_libzstream is not set
# CONFIG_PACKAGE_linux-atm is not set
# CONFIG_PACKAGE_mxml is not set
# CONFIG_PACKAGE_nacl is not set
# CONFIG_PACKAGE_phidget21 is not set
# CONFIG_PACKAGE_poco is not set
# CONFIG_PACKAGE_protobuf is not set
# CONFIG_PACKAGE_pthsem is not set
# CONFIG_PACKAGE_ptlib is not set
# CONFIG_PACKAGE_pwlib is not set
# CONFIG_PACKAGE_radlib is not set
# CONFIG_PACKAGE_sane-libs is not set
# CONFIG_PACKAGE_serdisplib is not set
# CONFIG_PACKAGE_shflags is not set
# CONFIG_PACKAGE_st2205tool is not set
# CONFIG_PACKAGE_taglib is not set
# CONFIG_PACKAGE_taglibc is not set
CONFIG_PACKAGE_terminfo=y
CONFIG_PACKAGE_uclibcxx=y
# CONFIG_PACKAGE_ustl is not set
# CONFIG_PACKAGE_wt is not set
# CONFIG_PACKAGE_xmlrpc-c is not set
# CONFIG_PACKAGE_xmlrpc-c-abyss is not set
# CONFIG_PACKAGE_xmlrpc-c-client is not set
# CONFIG_PACKAGE_xmlrpc-c-common is not set
# CONFIG_PACKAGE_xmlrpc-c-internal is not set
# CONFIG_PACKAGE_xmlrpc-c-server is not set
# CONFIG_PACKAGE_xmlrpc-c-server-abyss is not set
# CONFIG_PACKAGE_xmpp4r is not set
# CONFIG_PACKAGE_zaptel-libtonezone is not set
# CONFIG_PACKAGE_zaptel14-libtonezone is not set
CONFIG_PACKAGE_zlib=y

#
# LuCI2
#

#
# Libraries
#
CONFIG_PACKAGE_libubus=y
CONFIG_PACKAGE_libubus-lua=y

#
# System
#
CONFIG_PACKAGE_ubus=y
CONFIG_PACKAGE_ubusd=y

#
# Multimedia
#

#
# Streaming
#
# CONFIG_PACKAGE_darkice is not set
# CONFIG_PACKAGE_GraphicsMagick is not set
# CONFIG_PACKAGE_GraphicsMagick-jpeg is not set
# CONFIG_PACKAGE_crtmpserver is not set
# CONFIG_PACKAGE_ffmpeg is not set
# CONFIG_PACKAGE_ffprobe is not set
# CONFIG_PACKAGE_ffserver is not set
# CONFIG_PACKAGE_fswebcam is not set
# CONFIG_PACKAGE_ftpd-topfield is not set
# CONFIG_PACKAGE_gmediaserver is not set
# CONFIG_PACKAGE_gphoto2 is not set
# CONFIG_PACKAGE_gst-ffmpeg is not set
# CONFIG_PACKAGE_gst-mod-adpcmdec is not set
# CONFIG_PACKAGE_gst-mod-adpcmenc is not set
# CONFIG_PACKAGE_gst-mod-aiff is not set
# CONFIG_PACKAGE_gst-mod-alsa is not set
# CONFIG_PACKAGE_gst-mod-app is not set
# CONFIG_PACKAGE_gst-mod-asf is not set
# CONFIG_PACKAGE_gst-mod-asfmux is not set
# CONFIG_PACKAGE_gst-mod-audioconvert is not set
# CONFIG_PACKAGE_gst-mod-audiofx is not set
# CONFIG_PACKAGE_gst-mod-audioparsersbad is not set
# CONFIG_PACKAGE_gst-mod-audiorate is not set
# CONFIG_PACKAGE_gst-mod-audioresample is not set
# CONFIG_PACKAGE_gst-mod-audiotestsrc is not set
# CONFIG_PACKAGE_gst-mod-autoconvert is not set
# CONFIG_PACKAGE_gst-mod-autodetect is not set
# CONFIG_PACKAGE_gst-mod-bayer is not set
# CONFIG_PACKAGE_gst-mod-camerabin is not set
# CONFIG_PACKAGE_gst-mod-cdxaparse is not set
# CONFIG_PACKAGE_gst-mod-cutter is not set
# CONFIG_PACKAGE_gst-mod-dataurisrc is not set
# CONFIG_PACKAGE_gst-mod-dccp is not set
# CONFIG_PACKAGE_gst-mod-debug is not set
# CONFIG_PACKAGE_gst-mod-debugutilsbad is not set
# CONFIG_PACKAGE_gst-mod-decodebin is not set
# CONFIG_PACKAGE_gst-mod-decodebin2 is not set
# CONFIG_PACKAGE_gst-mod-dtmf is not set
# CONFIG_PACKAGE_gst-mod-dvdspu is not set
# CONFIG_PACKAGE_gst-mod-equalizer is not set
# CONFIG_PACKAGE_gst-mod-festival is not set
# CONFIG_PACKAGE_gst-mod-flac is not set
# CONFIG_PACKAGE_gst-mod-freeze is not set
# CONFIG_PACKAGE_gst-mod-frei0r is not set
# CONFIG_PACKAGE_gst-mod-gio is not set
# CONFIG_PACKAGE_gst-mod-h264parse is not set
# CONFIG_PACKAGE_gst-mod-hdvparse is not set
# CONFIG_PACKAGE_gst-mod-icydemux is not set
# CONFIG_PACKAGE_gst-mod-id3demux is not set
# CONFIG_PACKAGE_gst-mod-id3tag is not set
# CONFIG_PACKAGE_gst-mod-interleave is not set
# CONFIG_PACKAGE_gst-mod-invtelecine is not set
# CONFIG_PACKAGE_gst-mod-jpegformat is not set
# CONFIG_PACKAGE_gst-mod-lame is not set
# CONFIG_PACKAGE_gst-mod-legacyresample is not set
# CONFIG_PACKAGE_gst-mod-level is not set
# CONFIG_PACKAGE_gst-mod-liveadder is not set
# CONFIG_PACKAGE_gst-mod-mad is not set
# CONFIG_PACKAGE_gst-mod-mms is not set
# CONFIG_PACKAGE_gst-mod-mpeg2dec is not set
# CONFIG_PACKAGE_gst-mod-mpeg4videoparse is not set
# CONFIG_PACKAGE_gst-mod-mpegdemux is not set
# CONFIG_PACKAGE_gst-mod-mpegpsmux is not set
# CONFIG_PACKAGE_gst-mod-mpegtsmux is not set
# CONFIG_PACKAGE_gst-mod-mpegvideoparse is not set
# CONFIG_PACKAGE_gst-mod-multifile is not set
# CONFIG_PACKAGE_gst-mod-multipart is not set
# CONFIG_PACKAGE_gst-mod-mve is not set
# CONFIG_PACKAGE_gst-mod-mxf is not set
# CONFIG_PACKAGE_gst-mod-nsf is not set
# CONFIG_PACKAGE_gst-mod-nuvdemux is not set
# CONFIG_PACKAGE_gst-mod-ogg is not set
# CONFIG_PACKAGE_gst-mod-ossaudio is not set
# CONFIG_PACKAGE_gst-mod-pcapparse is not set
# CONFIG_PACKAGE_gst-mod-playbin is not set
# CONFIG_PACKAGE_gst-mod-pnm is not set
# CONFIG_PACKAGE_gst-mod-qtmux is not set
# CONFIG_PACKAGE_gst-mod-rawparse is not set
# CONFIG_PACKAGE_gst-mod-replaygain is not set
# CONFIG_PACKAGE_gst-mod-rtp is not set
# CONFIG_PACKAGE_gst-mod-rtpmux is not set
# CONFIG_PACKAGE_gst-mod-rtsp is not set
# CONFIG_PACKAGE_gst-mod-scaletempoplugin is not set
# CONFIG_PACKAGE_gst-mod-sdpelem is not set
# CONFIG_PACKAGE_gst-mod-segmentclip is not set
# CONFIG_PACKAGE_gst-mod-selector is not set
# CONFIG_PACKAGE_gst-mod-siren is not set
# CONFIG_PACKAGE_gst-mod-souphttpsrc is not set
# CONFIG_PACKAGE_gst-mod-spectrum is not set
# CONFIG_PACKAGE_gst-mod-speed is not set
# CONFIG_PACKAGE_gst-mod-stereo is not set
# CONFIG_PACKAGE_gst-mod-subenc is not set
# CONFIG_PACKAGE_gst-mod-tcp is not set
# CONFIG_PACKAGE_gst-mod-theora is not set
# CONFIG_PACKAGE_gst-mod-tta is not set
# CONFIG_PACKAGE_gst-mod-typefindfunctions is not set
# CONFIG_PACKAGE_gst-mod-udp is not set
# CONFIG_PACKAGE_gst-mod-valve is not set
# CONFIG_PACKAGE_gst-mod-videomeasure is not set
# CONFIG_PACKAGE_gst-mod-videosignal is not set
# CONFIG_PACKAGE_gst-mod-videotestsrc is not set
# CONFIG_PACKAGE_gst-mod-vmnc is not set
# CONFIG_PACKAGE_gst-mod-volume is not set
# CONFIG_PACKAGE_gst-mod-vorbis is not set
# CONFIG_PACKAGE_gst-mod-wavenc is not set
# CONFIG_PACKAGE_gst-mod-wavparse is not set
# CONFIG_PACKAGE_gst-plugins-bad is not set
# CONFIG_PACKAGE_gst-plugins-base is not set
# CONFIG_PACKAGE_gst-plugins-good is not set
# CONFIG_PACKAGE_gst-plugins-ugly is not set
# CONFIG_PACKAGE_gstreamer is not set
# CONFIG_PACKAGE_gstreamer-utils is not set
# CONFIG_PACKAGE_hasciicam is not set
# CONFIG_PACKAGE_icecast is not set
# CONFIG_PACKAGE_imagemagick is not set
# CONFIG_PACKAGE_imagemagick-jpeg is not set
# CONFIG_PACKAGE_imagemagick-png is not set
# CONFIG_PACKAGE_imagemagick-tiff is not set
# CONFIG_PACKAGE_imagemagick-tools is not set
# CONFIG_PACKAGE_kissdx is not set
# CONFIG_PACKAGE_libgstapp is not set
# CONFIG_PACKAGE_libgstaudio is not set
# CONFIG_PACKAGE_libgstcdda is not set
# CONFIG_PACKAGE_libgstcheck is not set
# CONFIG_PACKAGE_libgstcontroller is not set
# CONFIG_PACKAGE_libgstdataprotocol is not set
# CONFIG_PACKAGE_libgstfft is not set
# CONFIG_PACKAGE_libgstinterfaces is not set
# CONFIG_PACKAGE_libgstnet is not set
# CONFIG_PACKAGE_libgstnetbuffer is not set
# CONFIG_PACKAGE_libgstpbutils is not set
# CONFIG_PACKAGE_libgstphotography is not set
# CONFIG_PACKAGE_libgstreamer is not set
# CONFIG_PACKAGE_libgstriff is not set
# CONFIG_PACKAGE_libgstrtp is not set
# CONFIG_PACKAGE_libgstrtsp is not set
# CONFIG_PACKAGE_libgstsdp is not set
# CONFIG_PACKAGE_libgsttag is not set
# CONFIG_PACKAGE_libgstvideo is not set
# CONFIG_PACKAGE_mjpg-streamer is not set
# CONFIG_PACKAGE_motion is not set
# CONFIG_PACKAGE_peercast is not set
# CONFIG_PACKAGE_puppy is not set
# CONFIG_PACKAGE_streamripper is not set
# CONFIG_PACKAGE_vips is not set

#
# Utilities
#

#
# Boot Loaders
#
CONFIG_PACKAGE_grub=y
# CONFIG_PACKAGE_grub2 is not set

#
# CPU tools
#
# CONFIG_PACKAGE_msr-tools is not set

#
# Editors
#
# CONFIG_PACKAGE_joe is not set
# CONFIG_PACKAGE_mg is not set
# CONFIG_PACKAGE_nano is not set
CONFIG_PACKAGE_vim=y
# CONFIG_PACKAGE_vim-full is not set
# CONFIG_PACKAGE_vim-help is not set
# CONFIG_PACKAGE_vim-runtime is not set
# CONFIG_PACKAGE_zile is not set

#
# Filesystem
#
# CONFIG_PACKAGE_badblocks is not set
# CONFIG_PACKAGE_btrfs-progs is not set
# CONFIG_PACKAGE_disktype is not set
# CONFIG_PACKAGE_dosfsck is not set
# CONFIG_PACKAGE_dosfslabel is not set
CONFIG_PACKAGE_e2fsprogs=y
# CONFIG_PACKAGE_fuse-utils is not set
# CONFIG_PACKAGE_gadgetfs-test-bulk is not set
# CONFIG_PACKAGE_gadgetfs-test-isoc is not set
# CONFIG_PACKAGE_mkdosfs is not set
# CONFIG_PACKAGE_nfs-utils is not set
# CONFIG_PACKAGE_ntfs-3g is not set
# CONFIG_PACKAGE_ntfs-3g-low is not set
# CONFIG_PACKAGE_ntfs-3g-utils is not set
# CONFIG_PACKAGE_ntfsprogs is not set
# CONFIG_PACKAGE_ntfsprogs_ntfs-3g is not set
# CONFIG_PACKAGE_owfs is not set
# CONFIG_PACKAGE_owshell is not set
# CONFIG_PACKAGE_reiserfsprogs is not set
CONFIG_PACKAGE_resize2fs=y
# CONFIG_PACKAGE_sysfsutils is not set
CONFIG_PACKAGE_tune2fs=y

#
# SSL
#
# CONFIG_PACKAGE_certtool is not set
# CONFIG_PACKAGE_gnutls-utils is not set
# CONFIG_PACKAGE_polarssl-progs is not set

#
# Sound
#
# CONFIG_PACKAGE_liblo-utils is not set

#
# Terminal
#
# CONFIG_PACKAGE_agetty is not set
# CONFIG_PACKAGE_microcom is not set
# CONFIG_PACKAGE_minicom is not set
# CONFIG_PACKAGE_picocom is not set
# CONFIG_PACKAGE_script-utils is not set
# CONFIG_PACKAGE_setserial is not set
# CONFIG_PACKAGE_setterm is not set
# CONFIG_PACKAGE_wall is not set

#
# backup
#
# CONFIG_PACKAGE_boxbackup is not set
# CONFIG_PACKAGE_rdiff-backup is not set

#
# compression
#
CONFIG_PACKAGE_libzip-utils=y
# CONFIG_PACKAGE_unrar is not set
# CONFIG_PACKAGE_unzip is not set
CONFIG_PACKAGE_zip=y

#
# database
#
# CONFIG_PACKAGE_mysql-server is not set
# CONFIG_PACKAGE_pgsql-cli is not set
# CONFIG_PACKAGE_pgsql-server is not set
# CONFIG_PACKAGE_sqlite2-cli is not set
# CONFIG_PACKAGE_sqlite3-cli is not set
# CONFIG_PACKAGE_unixodbc-tools is not set

#
# disc
#
CONFIG_PACKAGE_blkid=y
CONFIG_PACKAGE_cfdisk=y
# CONFIG_PACKAGE_devio is not set
CONFIG_PACKAGE_fdisk=y
# CONFIG_PACKAGE_findfs is not set
# CONFIG_PACKAGE_hd-idle is not set
CONFIG_PACKAGE_hdparm=y
CONFIG_PACKAGE_lsblk=y
# CONFIG_PACKAGE_lvm2 is not set
# CONFIG_PACKAGE_partx-utils is not set
# CONFIG_PACKAGE_sdparm is not set
# CONFIG_PACKAGE_sfdisk is not set
CONFIG_PACKAGE_swap-utils=y
# CONFIG_PACKAGE_wipefs is not set

#
# filemanager
#
# CONFIG_PACKAGE_deco is not set
# CONFIG_PACKAGE_mc is not set

#
# zoneinfo
#
# CONFIG_PACKAGE_zoneinfo-africa is not set
# CONFIG_PACKAGE_zoneinfo-asia is not set
# CONFIG_PACKAGE_zoneinfo-atlantic is not set
# CONFIG_PACKAGE_zoneinfo-australia-nz is not set
# CONFIG_PACKAGE_zoneinfo-core is not set
# CONFIG_PACKAGE_zoneinfo-europe is not set
# CONFIG_PACKAGE_zoneinfo-india is not set
# CONFIG_PACKAGE_zoneinfo-middleeast is not set
# CONFIG_PACKAGE_zoneinfo-northamerica is not set
# CONFIG_PACKAGE_zoneinfo-pacific is not set
# CONFIG_PACKAGE_zoneinfo-poles is not set
# CONFIG_PACKAGE_zoneinfo-simple is not set
# CONFIG_PACKAGE_zoneinfo-southamerica is not set
# CONFIG_PACKAGE_alsa-utils is not set
# CONFIG_PACKAGE_alsa-utils-seq is not set
# CONFIG_PACKAGE_alsa-utils-tests is not set
# CONFIG_PACKAGE_anyremote is not set
# CONFIG_PACKAGE_ap51-flash is not set
# CONFIG_PACKAGE_apcupsd is not set
# CONFIG_PACKAGE_at is not set
# CONFIG_PACKAGE_attr is not set
# CONFIG_PACKAGE_avrdude is not set
# CONFIG_PACKAGE_avrusbboot is not set
# CONFIG_PACKAGE_bandwidthd is not set
CONFIG_PACKAGE_bash=y
# CONFIG_PACKAGE_bash-completion is not set
# CONFIG_PACKAGE_bc is not set
# CONFIG_PACKAGE_bluelog is not set
# CONFIG_PACKAGE_bluez-hcidump is not set
# CONFIG_PACKAGE_bluez-utils is not set
# CONFIG_PACKAGE_boblight-client is not set
# CONFIG_PACKAGE_boblight-daemon is not set
CONFIG_PACKAGE_bonniexx=y
# CONFIG_PACKAGE_bsdiff is not set
# CONFIG_PACKAGE_byobu is not set
# CONFIG_PACKAGE_bzip2 is not set
# CONFIG_PACKAGE_cal is not set
# CONFIG_PACKAGE_calcurse is not set
# CONFIG_PACKAGE_calvaria is not set
# CONFIG_PACKAGE_ccrypt is not set
# CONFIG_PACKAGE_cdparanoia is not set
# CONFIG_PACKAGE_cksfv is not set
# CONFIG_PACKAGE_clish is not set
# CONFIG_PACKAGE_cmdpad is not set
CONFIG_PACKAGE_collectd=y
# CONFIG_PACKAGE_collectd-mod-apache is not set
# CONFIG_PACKAGE_collectd-mod-apcups is not set
# CONFIG_PACKAGE_collectd-mod-ascent is not set
# CONFIG_PACKAGE_collectd-mod-bind is not set
# CONFIG_PACKAGE_collectd-mod-conntrack is not set
# CONFIG_PACKAGE_collectd-mod-contextswitch is not set
# CONFIG_PACKAGE_collectd-mod-cpu is not set
# CONFIG_PACKAGE_collectd-mod-csv is not set
# CONFIG_PACKAGE_collectd-mod-curl is not set
# CONFIG_PACKAGE_collectd-mod-dbi is not set
# CONFIG_PACKAGE_collectd-mod-df is not set
# CONFIG_PACKAGE_collectd-mod-disk is not set
# CONFIG_PACKAGE_collectd-mod-dns is not set
# CONFIG_PACKAGE_collectd-mod-email is not set
# CONFIG_PACKAGE_collectd-mod-exec is not set
# CONFIG_PACKAGE_collectd-mod-filecount is not set
# CONFIG_PACKAGE_collectd-mod-fscache is not set
CONFIG_PACKAGE_collectd-mod-interface=y
# CONFIG_PACKAGE_collectd-mod-iptables is not set
# CONFIG_PACKAGE_collectd-mod-irq is not set
CONFIG_PACKAGE_collectd-mod-iwinfo=y
CONFIG_PACKAGE_collectd-mod-load=y
# CONFIG_PACKAGE_collectd-mod-logfile is not set
# CONFIG_PACKAGE_collectd-mod-madwifi is not set
# CONFIG_PACKAGE_collectd-mod-memory is not set
# CONFIG_PACKAGE_collectd-mod-mysql is not set
# CONFIG_PACKAGE_collectd-mod-netlink is not set
# CONFIG_PACKAGE_collectd-mod-network is not set
# CONFIG_PACKAGE_collectd-mod-nginx is not set
# CONFIG_PACKAGE_collectd-mod-ntpd is not set
# CONFIG_PACKAGE_collectd-mod-olsrd is not set
# CONFIG_PACKAGE_collectd-mod-openvpn is not set
# CONFIG_PACKAGE_collectd-mod-ping is not set
# CONFIG_PACKAGE_collectd-mod-postgresql is not set
# CONFIG_PACKAGE_collectd-mod-powerdns is not set
# CONFIG_PACKAGE_collectd-mod-processes is not set
# CONFIG_PACKAGE_collectd-mod-protocols is not set
CONFIG_PACKAGE_collectd-mod-rrdtool=y
# CONFIG_PACKAGE_collectd-mod-snmp is not set
# CONFIG_PACKAGE_collectd-mod-syslog is not set
# CONFIG_PACKAGE_collectd-mod-table is not set
# CONFIG_PACKAGE_collectd-mod-tail is not set
# CONFIG_PACKAGE_collectd-mod-tcpconns is not set
# CONFIG_PACKAGE_collectd-mod-teamspeak2 is not set
# CONFIG_PACKAGE_collectd-mod-ted is not set
# CONFIG_PACKAGE_collectd-mod-thermal is not set
# CONFIG_PACKAGE_collectd-mod-unixsock is not set
# CONFIG_PACKAGE_collectd-mod-uptime is not set
# CONFIG_PACKAGE_collectd-mod-users is not set
# CONFIG_PACKAGE_collectd-mod-vmem is not set
# CONFIG_PACKAGE_collectd-mod-wireless is not set
# CONFIG_PACKAGE_collectd-mod-write-http is not set
# CONFIG_PACKAGE_comgt is not set
CONFIG_PACKAGE_coreutils=y
# CONFIG_PACKAGE_coreutils-base64 is not set
# CONFIG_PACKAGE_coreutils-basename is not set
# CONFIG_PACKAGE_coreutils-cat is not set
# CONFIG_PACKAGE_coreutils-chcon is not set
# CONFIG_PACKAGE_coreutils-chgrp is not set
# CONFIG_PACKAGE_coreutils-chmod is not set
# CONFIG_PACKAGE_coreutils-chown is not set
CONFIG_PACKAGE_coreutils-chroot=y
# CONFIG_PACKAGE_coreutils-cksum is not set
# CONFIG_PACKAGE_coreutils-comm is not set
# CONFIG_PACKAGE_coreutils-cp is not set
# CONFIG_PACKAGE_coreutils-csplit is not set
# CONFIG_PACKAGE_coreutils-cut is not set
# CONFIG_PACKAGE_coreutils-date is not set
# CONFIG_PACKAGE_coreutils-dd is not set
# CONFIG_PACKAGE_coreutils-dir is not set
# CONFIG_PACKAGE_coreutils-dircolors is not set
# CONFIG_PACKAGE_coreutils-dirname is not set
# CONFIG_PACKAGE_coreutils-du is not set
# CONFIG_PACKAGE_coreutils-echo is not set
# CONFIG_PACKAGE_coreutils-env is not set
# CONFIG_PACKAGE_coreutils-expand is not set
# CONFIG_PACKAGE_coreutils-expr is not set
# CONFIG_PACKAGE_coreutils-factor is not set
# CONFIG_PACKAGE_coreutils-false is not set
# CONFIG_PACKAGE_coreutils-fmt is not set
# CONFIG_PACKAGE_coreutils-fold is not set
# CONFIG_PACKAGE_coreutils-groups is not set
# CONFIG_PACKAGE_coreutils-head is not set
# CONFIG_PACKAGE_coreutils-hostid is not set
# CONFIG_PACKAGE_coreutils-id is not set
# CONFIG_PACKAGE_coreutils-install is not set
# CONFIG_PACKAGE_coreutils-join is not set
# CONFIG_PACKAGE_coreutils-kill is not set
# CONFIG_PACKAGE_coreutils-link is not set
# CONFIG_PACKAGE_coreutils-ln is not set
# CONFIG_PACKAGE_coreutils-logname is not set
# CONFIG_PACKAGE_coreutils-ls is not set
# CONFIG_PACKAGE_coreutils-md5sum is not set
# CONFIG_PACKAGE_coreutils-mkdir is not set
# CONFIG_PACKAGE_coreutils-mkfifo is not set
# CONFIG_PACKAGE_coreutils-mknod is not set
# CONFIG_PACKAGE_coreutils-mktemp is not set
# CONFIG_PACKAGE_coreutils-mv is not set
# CONFIG_PACKAGE_coreutils-nice is not set
# CONFIG_PACKAGE_coreutils-nl is not set
# CONFIG_PACKAGE_coreutils-nohup is not set
# CONFIG_PACKAGE_coreutils-nproc is not set
# CONFIG_PACKAGE_coreutils-od is not set
# CONFIG_PACKAGE_coreutils-paste is not set
# CONFIG_PACKAGE_coreutils-pathchk is not set
# CONFIG_PACKAGE_coreutils-pinky is not set
# CONFIG_PACKAGE_coreutils-pr is not set
# CONFIG_PACKAGE_coreutils-printenv is not set
# CONFIG_PACKAGE_coreutils-printf is not set
# CONFIG_PACKAGE_coreutils-ptx is not set
# CONFIG_PACKAGE_coreutils-pwd is not set
# CONFIG_PACKAGE_coreutils-readlink is not set
# CONFIG_PACKAGE_coreutils-realpath is not set
# CONFIG_PACKAGE_coreutils-rm is not set
# CONFIG_PACKAGE_coreutils-rmdir is not set
# CONFIG_PACKAGE_coreutils-runcon is not set
# CONFIG_PACKAGE_coreutils-seq is not set
CONFIG_PACKAGE_coreutils-sha1sum=y
# CONFIG_PACKAGE_coreutils-sha224sum is not set
# CONFIG_PACKAGE_coreutils-sha256sum is not set
# CONFIG_PACKAGE_coreutils-sha384sum is not set
# CONFIG_PACKAGE_coreutils-sha512sum is not set
# CONFIG_PACKAGE_coreutils-shred is not set
# CONFIG_PACKAGE_coreutils-shuf is not set
# CONFIG_PACKAGE_coreutils-sleep is not set
# CONFIG_PACKAGE_coreutils-sort is not set
# CONFIG_PACKAGE_coreutils-split is not set
# CONFIG_PACKAGE_coreutils-stat is not set
# CONFIG_PACKAGE_coreutils-stdbuf is not set
# CONFIG_PACKAGE_coreutils-stty is not set
# CONFIG_PACKAGE_coreutils-sum is not set
# CONFIG_PACKAGE_coreutils-sync is not set
# CONFIG_PACKAGE_coreutils-tac is not set
# CONFIG_PACKAGE_coreutils-tail is not set
# CONFIG_PACKAGE_coreutils-tee is not set
# CONFIG_PACKAGE_coreutils-test is not set
# CONFIG_PACKAGE_coreutils-timeout is not set
# CONFIG_PACKAGE_coreutils-touch is not set
# CONFIG_PACKAGE_coreutils-tr is not set
# CONFIG_PACKAGE_coreutils-true is not set
# CONFIG_PACKAGE_coreutils-truncate is not set
# CONFIG_PACKAGE_coreutils-tsort is not set
# CONFIG_PACKAGE_coreutils-tty is not set
# CONFIG_PACKAGE_coreutils-uname is not set
# CONFIG_PACKAGE_coreutils-unexpand is not set
# CONFIG_PACKAGE_coreutils-uniq is not set
# CONFIG_PACKAGE_coreutils-unlink is not set
# CONFIG_PACKAGE_coreutils-uptime is not set
# CONFIG_PACKAGE_coreutils-users is not set
# CONFIG_PACKAGE_coreutils-vdir is not set
# CONFIG_PACKAGE_coreutils-wc is not set
# CONFIG_PACKAGE_coreutils-who is not set
# CONFIG_PACKAGE_coreutils-whoami is not set
# CONFIG_PACKAGE_coreutils-yes is not set
# CONFIG_PACKAGE_cpusage is not set
# CONFIG_PACKAGE_crypto-tools is not set
# CONFIG_PACKAGE_cryptsetup is not set
# CONFIG_PACKAGE_daemontools is not set
# CONFIG_PACKAGE_dbus is not set
# CONFIG_PACKAGE_devmem2 is not set
# CONFIG_PACKAGE_dfu-util is not set
# CONFIG_PACKAGE_dialog is not set
# CONFIG_PACKAGE_digitemp is not set
# CONFIG_PACKAGE_digitemp-usb is not set
# CONFIG_PACKAGE_dir300-flash is not set
# CONFIG_PACKAGE_dmesg is not set
# CONFIG_PACKAGE_dmidecode is not set
# CONFIG_PACKAGE_dropbearconvert is not set
# CONFIG_PACKAGE_dstat is not set
# CONFIG_PACKAGE_dt is not set
# CONFIG_PACKAGE_dtach is not set
# CONFIG_PACKAGE_empty is not set
# CONFIG_PACKAGE_event_test is not set
# CONFIG_PACKAGE_fancontroled is not set
# CONFIG_PACKAGE_fconfig is not set
CONFIG_PACKAGE_file=y
# CONFIG_PACKAGE_firmwarehotplug is not set
# CONFIG_PACKAGE_flashrom is not set
# CONFIG_PACKAGE_flock is not set
# CONFIG_PACKAGE_fortune-mod is not set
# CONFIG_PACKAGE_fowsr is not set
# CONFIG_PACKAGE_freecwmp-curl is not set
# CONFIG_PACKAGE_freecwmp-zstream is not set
# CONFIG_PACKAGE_fxload is not set
# CONFIG_PACKAGE_gawk is not set
# CONFIG_PACKAGE_gdb is not set
# CONFIG_PACKAGE_gdbserver is not set
# CONFIG_PACKAGE_getopt is not set
# CONFIG_PACKAGE_gnokii is not set
CONFIG_PACKAGE_gnupg=y
# CONFIG_PACKAGE_gnuplot is not set
# CONFIG_PACKAGE_gpioctl is not set
# CONFIG_PACKAGE_gsm-utils is not set
# CONFIG_PACKAGE_gzip is not set
# CONFIG_PACKAGE_haserl is not set
# CONFIG_PACKAGE_haveged is not set
# CONFIG_PACKAGE_heyu is not set
# CONFIG_PACKAGE_hplip is not set
# CONFIG_PACKAGE_huaweiaktbbo is not set
# CONFIG_PACKAGE_hwclock is not set
# CONFIG_PACKAGE_i2c-tools is not set
# CONFIG_PACKAGE_iconv is not set
# CONFIG_PACKAGE_ink is not set
# CONFIG_PACKAGE_input-utils is not set
# CONFIG_PACKAGE_io is not set
# CONFIG_PACKAGE_ipmitool is not set
# CONFIG_PACKAGE_iwcap is not set
CONFIG_PACKAGE_iwinfo=y
# CONFIG_PACKAGE_jpeg-tools is not set
CONFIG_PACKAGE_jshn=y
# CONFIG_PACKAGE_kexec-tools is not set
# CONFIG_PACKAGE_klish is not set
# CONFIG_PACKAGE_kmemtrace-user is not set
# CONFIG_PACKAGE_ksymoops is not set
# CONFIG_PACKAGE_lcd4linux-custom is not set
# CONFIG_PACKAGE_lcd4linux-full is not set
# CONFIG_PACKAGE_lcdproc is not set
CONFIG_PACKAGE_ldconfig=y
CONFIG_PACKAGE_ldd=y
# CONFIG_PACKAGE_less is not set
# CONFIG_PACKAGE_less-wide is not set
# CONFIG_PACKAGE_libfreefare-examples is not set
# CONFIG_PACKAGE_libimobiledevice-utils is not set
# CONFIG_PACKAGE_libnfc-bin is not set
# CONFIG_PACKAGE_libnfc-examples is not set
# CONFIG_PACKAGE_libplist-utils is not set
# CONFIG_PACKAGE_lirc is not set
# CONFIG_PACKAGE_lm-sensors is not set
# CONFIG_PACKAGE_lm-sensors-detect is not set
# CONFIG_PACKAGE_lmbench is not set
# CONFIG_PACKAGE_logger is not set
# CONFIG_PACKAGE_logrotate is not set
# CONFIG_PACKAGE_logtrigger is not set
# CONFIG_PACKAGE_look is not set
# CONFIG_PACKAGE_losetup is not set
# CONFIG_PACKAGE_lrzsz is not set
CONFIG_PACKAGE_lsof=y
CONFIG_PACKAGE_lxc=y
# CONFIG_PACKAGE_maccalc is not set
# CONFIG_PACKAGE_macchanger is not set
# CONFIG_PACKAGE_mbus-serial is not set
# CONFIG_PACKAGE_mbus-tcp is not set
# CONFIG_PACKAGE_mcookie is not set
# CONFIG_PACKAGE_md5deep is not set
# CONFIG_PACKAGE_mdadm is not set
# CONFIG_PACKAGE_memtester is not set
# CONFIG_PACKAGE_mgetty is not set
# CONFIG_PACKAGE_mount-utils is not set
# CONFIG_PACKAGE_mountd is not set
# CONFIG_PACKAGE_mtd-utils is not set
# CONFIG_PACKAGE_namei is not set
# CONFIG_PACKAGE_nprobe is not set
# CONFIG_PACKAGE_nvramtool is not set
# CONFIG_PACKAGE_ocf-crypto-headers is not set
# CONFIG_PACKAGE_open2300 is not set
# CONFIG_PACKAGE_openldap-utils is not set
CONFIG_PACKAGE_openssl-util=y
# CONFIG_PACKAGE_owipcalc is not set
# CONFIG_PACKAGE_oww is not set
# CONFIG_PACKAGE_pciutils is not set
# CONFIG_PACKAGE_pcscd is not set
# CONFIG_PACKAGE_pipacs is not set
# CONFIG_PACKAGE_powertop is not set
# CONFIG_PACKAGE_procps is not set
# CONFIG_PACKAGE_psmisc is not set
# CONFIG_PACKAGE_psplash is not set
# CONFIG_PACKAGE_pv is not set
# CONFIG_PACKAGE_pwcrypt is not set
# CONFIG_PACKAGE_pwgen is not set
CONFIG_PACKAGE_px5g=y
# CONFIG_PACKAGE_rcs is not set
# CONFIG_PACKAGE_remind is not set
# CONFIG_PACKAGE_rename is not set
# CONFIG_PACKAGE_restorefactory is not set
# CONFIG_PACKAGE_rng-tools is not set
# CONFIG_PACKAGE_robocfg is not set
# CONFIG_PACKAGE_rrdcgi is not set
# CONFIG_PACKAGE_rrdcgi1 is not set
# CONFIG_PACKAGE_rrdcollect10 is not set
# CONFIG_PACKAGE_rrdcollect12 is not set
# CONFIG_PACKAGE_rrdtool is not set
CONFIG_PACKAGE_rrdtool1=y
# CONFIG_PACKAGE_rsyncrypto is not set
# CONFIG_PACKAGE_sane-backends is not set
# CONFIG_PACKAGE_sane-frontends is not set
# CONFIG_PACKAGE_schedtool is not set
# CONFIG_PACKAGE_scponly is not set
CONFIG_PACKAGE_screen=y
# CONFIG_PACKAGE_sed is not set
# CONFIG_PACKAGE_sg3-utils is not set
# CONFIG_PACKAGE_shadow is not set
# CONFIG_PACKAGE_shadow-common is not set
# CONFIG_PACKAGE_shadow-groupadd is not set
# CONFIG_PACKAGE_shadow-groupdel is not set
# CONFIG_PACKAGE_shadow-groupmod is not set
# CONFIG_PACKAGE_shadow-groups is not set
# CONFIG_PACKAGE_shadow-passwd is not set
# CONFIG_PACKAGE_shadow-su is not set
# CONFIG_PACKAGE_shadow-useradd is not set
# CONFIG_PACKAGE_shadow-userdel is not set
# CONFIG_PACKAGE_shadow-usermod is not set
# CONFIG_PACKAGE_sispmctl is not set
# CONFIG_PACKAGE_smartd is not set
# CONFIG_PACKAGE_smartmontools is not set
# CONFIG_PACKAGE_spidev-test is not set
# CONFIG_PACKAGE_ssldump is not set
# CONFIG_PACKAGE_strace is not set
# CONFIG_PACKAGE_stress is not set
# CONFIG_PACKAGE_sysstat is not set
# CONFIG_PACKAGE_tar is not set
# CONFIG_PACKAGE_taskwarrior is not set
# CONFIG_PACKAGE_tcpser is not set
# CONFIG_PACKAGE_tcsh is not set
# CONFIG_PACKAGE_tesseract is not set
# CONFIG_PACKAGE_testusb is not set
# CONFIG_PACKAGE_tiff-utils is not set
# CONFIG_PACKAGE_time is not set
# CONFIG_PACKAGE_tmux is not set
# CONFIG_PACKAGE_triggerhappy is not set
# CONFIG_PACKAGE_uboot-envtools is not set
# CONFIG_PACKAGE_upx is not set
# CONFIG_PACKAGE_usb-modeswitch is not set
# CONFIG_PACKAGE_usbmuxd is not set
# CONFIG_PACKAGE_usbreset is not set
# CONFIG_PACKAGE_usbutils is not set
# CONFIG_PACKAGE_uuidd is not set
# CONFIG_PACKAGE_uuidgen is not set
# CONFIG_PACKAGE_v4l-utils is not set
# CONFIG_PACKAGE_valgrind is not set
# CONFIG_PACKAGE_watchcat is not set
# CONFIG_PACKAGE_wattsup is not set
# CONFIG_PACKAGE_whereis is not set
# CONFIG_PACKAGE_whiptail is not set
# CONFIG_PACKAGE_wifitoggle is not set
# CONFIG_PACKAGE_wminput is not set
# CONFIG_PACKAGE_wview is not set
# CONFIG_PACKAGE_wx200d is not set
# CONFIG_PACKAGE_xdelta3 is not set
# CONFIG_PACKAGE_xfs-fsck is not set
# CONFIG_PACKAGE_xfs-growfs is not set
# CONFIG_PACKAGE_xfs-mkfs is not set
# CONFIG_PACKAGE_xsltproc is not set
# CONFIG_PACKAGE_xxd is not set
# CONFIG_PACKAGE_zaptel14-util is not set

#
# Emulators
#

#
# Development
#
CONFIG_PACKAGE_binutils=y
# CONFIG_PACKAGE_build-essential is not set
# CONFIG_PACKAGE_cppunit is not set
CONFIG_PACKAGE_diffutils=y
# CONFIG_PACKAGE_dmalloc-utils is not set
# CONFIG_PACKAGE_electric-fence is not set
# CONFIG_PACKAGE_gcc is not set
# CONFIG_PACKAGE_libdmalloc is not set
CONFIG_PACKAGE_make=y
CONFIG_PACKAGE_objdump=y
CONFIG_PACKAGE_patch=y
# CONFIG_PACKAGE_python-sip is not set
# CONFIG_PACKAGE_tig is not set

#
# Sound
#
# CONFIG_PACKAGE_cmus is not set
# CONFIG_PACKAGE_empcd is not set
# CONFIG_PACKAGE_faad2 is not set
# CONFIG_PACKAGE_flite is not set
# CONFIG_PACKAGE_ices is not set
# CONFIG_PACKAGE_lame is not set
# CONFIG_PACKAGE_lame-lib is not set
# CONFIG_PACKAGE_listener is not set
# CONFIG_PACKAGE_madplay is not set
# CONFIG_PACKAGE_mpc is not set
# CONFIG_PACKAGE_mpd-mini is not set
# CONFIG_PACKAGE_mpdas is not set
# CONFIG_PACKAGE_mt-daapd is not set
# CONFIG_PACKAGE_pianobar is not set
# CONFIG_PACKAGE_pulseaudio-daemon is not set
# CONFIG_PACKAGE_pulseaudio-daemon-avahi is not set
# CONFIG_PACKAGE_scmpc is not set
# CONFIG_PACKAGE_shell-fm is not set
# CONFIG_PACKAGE_sox is not set

#
# Languages
#

#
# Erlang
#
# CONFIG_PACKAGE_erlang is not set
# CONFIG_PACKAGE_erlang-asn1 is not set
# CONFIG_PACKAGE_erlang-compiler is not set
# CONFIG_PACKAGE_erlang-crypto is not set
# CONFIG_PACKAGE_erlang-hipe is not set
# CONFIG_PACKAGE_erlang-inets is not set
# CONFIG_PACKAGE_erlang-mnesia is not set
# CONFIG_PACKAGE_erlang-runtime-tools is not set
# CONFIG_PACKAGE_erlang-snmp is not set
# CONFIG_PACKAGE_erlang-ssh is not set
# CONFIG_PACKAGE_erlang-ssl is not set
# CONFIG_PACKAGE_erlang-syntax-tools is not set

#
# Java
#
# CONFIG_PACKAGE_jamvm is not set

#
# JavaScript
#
# CONFIG_PACKAGE_js is not set

#
# Lua
#
CONFIG_PACKAGE_libiwinfo-lua=y
# CONFIG_PACKAGE_lsqlite3 is not set
CONFIG_PACKAGE_lua=y
# CONFIG_PACKAGE_lua-examples is not set
# CONFIG_PACKAGE_luac is not set
CONFIG_PACKAGE_luaexpat=y
CONFIG_PACKAGE_luafilesystem=y
# CONFIG_PACKAGE_luaposix is not set
# CONFIG_PACKAGE_luaprofiler is not set
CONFIG_PACKAGE_luasec=y
# CONFIG_PACKAGE_luasoap is not set
CONFIG_PACKAGE_luasocket=y
# CONFIG_PACKAGE_luasql-mysql is not set
# CONFIG_PACKAGE_luasql-pgsql is not set
# CONFIG_PACKAGE_luasql-sqlite3 is not set

#
# PHP
#
# CONFIG_PACKAGE_php-pear is not set
# CONFIG_PACKAGE_php4 is not set
# CONFIG_PACKAGE_php5 is not set

#
# Perl
#
# CONFIG_PACKAGE_microperl is not set
CONFIG_PACKAGE_perl=y
# CONFIG_PACKAGE_perl-compress-bzip2 is not set
# CONFIG_PACKAGE_perl-dbi is not set
# CONFIG_PACKAGE_perl-html-parser is not set
# CONFIG_PACKAGE_perl-html-tagset is not set
# CONFIG_PACKAGE_perl-html-tree is not set
# CONFIG_PACKAGE_perl-lockfile-simple is not set
# CONFIG_PACKAGE_perl-net-telnet is not set
# CONFIG_PACKAGE_perl-uri is not set
# CONFIG_PACKAGE_perl-www is not set
# CONFIG_PACKAGE_perl-www-curl is not set
# CONFIG_PACKAGE_perl-www-mechanize is not set
# CONFIG_PACKAGE_perlbase-abbrev is not set
# CONFIG_PACKAGE_perlbase-anydbm-file is not set
# CONFIG_PACKAGE_perlbase-archive is not set
# CONFIG_PACKAGE_perlbase-assert is not set
# CONFIG_PACKAGE_perlbase-attribute is not set
# CONFIG_PACKAGE_perlbase-attributes is not set
# CONFIG_PACKAGE_perlbase-attrs is not set
# CONFIG_PACKAGE_perlbase-autoloader is not set
# CONFIG_PACKAGE_perlbase-autosplit is not set
# CONFIG_PACKAGE_perlbase-autouse is not set
# CONFIG_PACKAGE_perlbase-b is not set
# CONFIG_PACKAGE_perlbase-base is not set
# CONFIG_PACKAGE_perlbase-benchmark is not set
# CONFIG_PACKAGE_perlbase-bigfloat is not set
# CONFIG_PACKAGE_perlbase-bigint is not set
# CONFIG_PACKAGE_perlbase-bignum is not set
# CONFIG_PACKAGE_perlbase-bigrat is not set
# CONFIG_PACKAGE_perlbase-blib is not set
# CONFIG_PACKAGE_perlbase-bytes is not set
# CONFIG_PACKAGE_perlbase-cacheout is not set
# CONFIG_PACKAGE_perlbase-cgi is not set
# CONFIG_PACKAGE_perlbase-charnames is not set
# CONFIG_PACKAGE_perlbase-class is not set
# CONFIG_PACKAGE_perlbase-complete is not set
# CONFIG_PACKAGE_perlbase-compress is not set
# CONFIG_PACKAGE_perlbase-config is not set
# CONFIG_PACKAGE_perlbase-cpan is not set
# CONFIG_PACKAGE_perlbase-cpanplus is not set
# CONFIG_PACKAGE_perlbase-ctime is not set
# CONFIG_PACKAGE_perlbase-cwd is not set
# CONFIG_PACKAGE_perlbase-data is not set
# CONFIG_PACKAGE_perlbase-db is not set
# CONFIG_PACKAGE_perlbase-db-file is not set
# CONFIG_PACKAGE_perlbase-dbm-filter is not set
# CONFIG_PACKAGE_perlbase-devel is not set
# CONFIG_PACKAGE_perlbase-diagnostics is not set
# CONFIG_PACKAGE_perlbase-digest is not set
# CONFIG_PACKAGE_perlbase-dirhandle is not set
# CONFIG_PACKAGE_perlbase-dotsh is not set
# CONFIG_PACKAGE_perlbase-dumpvalue is not set
# CONFIG_PACKAGE_perlbase-dumpvar is not set
# CONFIG_PACKAGE_perlbase-dynaloader is not set
# CONFIG_PACKAGE_perlbase-encode is not set
# CONFIG_PACKAGE_perlbase-encoding is not set
# CONFIG_PACKAGE_perlbase-english is not set
# CONFIG_PACKAGE_perlbase-env is not set
# CONFIG_PACKAGE_perlbase-errno is not set
# CONFIG_PACKAGE_perlbase-essential is not set
# CONFIG_PACKAGE_perlbase-exceptions is not set
# CONFIG_PACKAGE_perlbase-extutils is not set
# CONFIG_PACKAGE_perlbase-fastcwd is not set
# CONFIG_PACKAGE_perlbase-fatal is not set
# CONFIG_PACKAGE_perlbase-fcntl is not set
# CONFIG_PACKAGE_perlbase-feature is not set
# CONFIG_PACKAGE_perlbase-fields is not set
# CONFIG_PACKAGE_perlbase-file is not set
# CONFIG_PACKAGE_perlbase-filecache is not set
# CONFIG_PACKAGE_perlbase-filehandle is not set
# CONFIG_PACKAGE_perlbase-filetest is not set
# CONFIG_PACKAGE_perlbase-filter is not set
# CONFIG_PACKAGE_perlbase-find is not set
# CONFIG_PACKAGE_perlbase-findbin is not set
# CONFIG_PACKAGE_perlbase-finddepth is not set
# CONFIG_PACKAGE_perlbase-flush is not set
# CONFIG_PACKAGE_perlbase-gdbm-file is not set
# CONFIG_PACKAGE_perlbase-getcwd is not set
# CONFIG_PACKAGE_perlbase-getopt is not set
# CONFIG_PACKAGE_perlbase-getoptpl is not set
# CONFIG_PACKAGE_perlbase-hash is not set
# CONFIG_PACKAGE_perlbase-hostname is not set
# CONFIG_PACKAGE_perlbase-i18n is not set
# CONFIG_PACKAGE_perlbase-if is not set
# CONFIG_PACKAGE_perlbase-importenv is not set
# CONFIG_PACKAGE_perlbase-integer is not set
# CONFIG_PACKAGE_perlbase-io is not set
# CONFIG_PACKAGE_perlbase-ipc is not set
# CONFIG_PACKAGE_perlbase-less is not set
# CONFIG_PACKAGE_perlbase-list is not set
# CONFIG_PACKAGE_perlbase-locale is not set
# CONFIG_PACKAGE_perlbase-log is not set
# CONFIG_PACKAGE_perlbase-look is not set
# CONFIG_PACKAGE_perlbase-math is not set
# CONFIG_PACKAGE_perlbase-memoize is not set
# CONFIG_PACKAGE_perlbase-mime is not set
# CONFIG_PACKAGE_perlbase-module is not set
# CONFIG_PACKAGE_perlbase-mro is not set
# CONFIG_PACKAGE_perlbase-net is not set
# CONFIG_PACKAGE_perlbase-next is not set
# CONFIG_PACKAGE_perlbase-o is not set
# CONFIG_PACKAGE_perlbase-object is not set
# CONFIG_PACKAGE_perlbase-opcode is not set
# CONFIG_PACKAGE_perlbase-open is not set
# CONFIG_PACKAGE_perlbase-ops is not set
# CONFIG_PACKAGE_perlbase-package is not set
# CONFIG_PACKAGE_perlbase-params is not set
# CONFIG_PACKAGE_perlbase-perl5db is not set
# CONFIG_PACKAGE_perlbase-perlio is not set
# CONFIG_PACKAGE_perlbase-pod is not set
# CONFIG_PACKAGE_perlbase-posix is not set
# CONFIG_PACKAGE_perlbase-pwd is not set
# CONFIG_PACKAGE_perlbase-re is not set
# CONFIG_PACKAGE_perlbase-safe is not set
# CONFIG_PACKAGE_perlbase-scalar is not set
# CONFIG_PACKAGE_perlbase-sdbm-file is not set
# CONFIG_PACKAGE_perlbase-search is not set
# CONFIG_PACKAGE_perlbase-selectsaver is not set
# CONFIG_PACKAGE_perlbase-selfloader is not set
# CONFIG_PACKAGE_perlbase-shell is not set
# CONFIG_PACKAGE_perlbase-shellwords is not set
# CONFIG_PACKAGE_perlbase-sigtrap is not set
# CONFIG_PACKAGE_perlbase-socket is not set
# CONFIG_PACKAGE_perlbase-sort is not set
# CONFIG_PACKAGE_perlbase-stat is not set
# CONFIG_PACKAGE_perlbase-storable is not set
# CONFIG_PACKAGE_perlbase-switch is not set
# CONFIG_PACKAGE_perlbase-symbol is not set
# CONFIG_PACKAGE_perlbase-sys is not set
# CONFIG_PACKAGE_perlbase-syslog is not set
# CONFIG_PACKAGE_perlbase-tainted is not set
# CONFIG_PACKAGE_perlbase-term is not set
# CONFIG_PACKAGE_perlbase-termcap is not set
# CONFIG_PACKAGE_perlbase-test is not set
# CONFIG_PACKAGE_perlbase-text is not set
# CONFIG_PACKAGE_perlbase-thread is not set
# CONFIG_PACKAGE_perlbase-threads is not set
# CONFIG_PACKAGE_perlbase-tie is not set
# CONFIG_PACKAGE_perlbase-time is not set
# CONFIG_PACKAGE_perlbase-timelocal is not set
# CONFIG_PACKAGE_perlbase-unicode is not set
# CONFIG_PACKAGE_perlbase-unicore is not set
# CONFIG_PACKAGE_perlbase-universal is not set
# CONFIG_PACKAGE_perlbase-user is not set
# CONFIG_PACKAGE_perlbase-utf8 is not set
# CONFIG_PACKAGE_perlbase-validate is not set
# CONFIG_PACKAGE_perlbase-version is not set
# CONFIG_PACKAGE_perlbase-xsloader is not set

#
# Python
#
# CONFIG_PACKAGE_cython is not set
# CONFIG_PACKAGE_dbus-python is not set
# CONFIG_PACKAGE_distribute is not set
# CONFIG_PACKAGE_gst-python is not set
# CONFIG_PACKAGE_ipython is not set
# CONFIG_PACKAGE_jsonpath is not set
# CONFIG_PACKAGE_libyaml is not set
# CONFIG_PACKAGE_logilab-astng is not set
# CONFIG_PACKAGE_logilab-common is not set
# CONFIG_PACKAGE_mako is not set
# CONFIG_PACKAGE_pyclips is not set
# CONFIG_PACKAGE_pyopenssl is not set
# CONFIG_PACKAGE_pyrrd is not set
# CONFIG_PACKAGE_pyserial is not set
# CONFIG_PACKAGE_python is not set
# CONFIG_PACKAGE_python-bluez is not set
# CONFIG_PACKAGE_python-bzip2 is not set
# CONFIG_PACKAGE_python-cjson is not set
# CONFIG_PACKAGE_python-crypto is not set
# CONFIG_PACKAGE_python-curl is not set
# CONFIG_PACKAGE_python-cwiid is not set
# CONFIG_PACKAGE_python-django is not set
# CONFIG_PACKAGE_python-doc is not set
# CONFIG_PACKAGE_python-eeml is not set
# CONFIG_PACKAGE_python-egenix-mx is not set
# CONFIG_PACKAGE_python-event is not set
# CONFIG_PACKAGE_python-expat is not set
# CONFIG_PACKAGE_python-flup is not set
# CONFIG_PACKAGE_python-gdbm is not set
# CONFIG_PACKAGE_python-gobject is not set
# CONFIG_PACKAGE_python-gzip is not set
# CONFIG_PACKAGE_python-ifconfig is not set
# CONFIG_PACKAGE_python-imaging-library is not set
# CONFIG_PACKAGE_python-json is not set
# CONFIG_PACKAGE_python-kid is not set
# CONFIG_PACKAGE_python-mimms is not set
# CONFIG_PACKAGE_python-mini is not set
# CONFIG_PACKAGE_python-mysql is not set
# CONFIG_PACKAGE_python-ncurses is not set
# CONFIG_PACKAGE_python-openssl is not set
# CONFIG_PACKAGE_python-pcap is not set
# CONFIG_PACKAGE_python-psycopg is not set
# CONFIG_PACKAGE_python-pyosc is not set
# CONFIG_PACKAGE_python-shutil is not set
# CONFIG_PACKAGE_python-smbus is not set
# CONFIG_PACKAGE_python-sqlite is not set
# CONFIG_PACKAGE_python-sqlite3 is not set
# CONFIG_PACKAGE_python-webpy is not set
# CONFIG_PACKAGE_python-xapian is not set
# CONFIG_PACKAGE_python-yapsnmp is not set
# CONFIG_PACKAGE_python2-chardet is not set
# CONFIG_PACKAGE_pyusb is not set
# CONFIG_PACKAGE_pyxdg is not set
# CONFIG_PACKAGE_pyyaml is not set
# CONFIG_PACKAGE_simplejson is not set
# CONFIG_PACKAGE_telepathy-python is not set
# CONFIG_PACKAGE_twisted is not set
# CONFIG_PACKAGE_zope-interface is not set

#
# Ruby
#
# CONFIG_PACKAGE_ruby is not set
# CONFIG_PACKAGE_4th is not set
# CONFIG_PACKAGE_eggdrop is not set
# CONFIG_PACKAGE_sigscheme is not set
# CONFIG_PACKAGE_slsh is not set
# CONFIG_PACKAGE_tcl is not set