summaryrefslogtreecommitdiffstats
path: root/copyright
blob: ba6e7fe31af06a88139ff21c0c63361df6c04f34 (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
Upstream Source: GNU GPL Version 2 or Later
===========================================

archival/cpio.c, archival/dpkg_deb.c, archival/libarchive/common.c,
archival/libarchive/data_align.c, archival/libarchive/data_extract_all.c,
archival/libarchive/data_extract_to_command.c,
archival/libarchive/data_extract_to_stdout.c, archival/libarchive/data_skip.c,
archival/libarchive/filter_accept_all.c,
archival/libarchive/filter_accept_list.c,
archival/libarchive/filter_accept_list_reassign.c,
archival/libarchive/filter_accept_reject_list.c,
archival/libarchive/find_list_entry.c, archival/libarchive/get_header_ar.c,
archival/libarchive/get_header_cpio.c, archival/libarchive/get_header_tar.c,
archival/libarchive/get_header_tar_bz2.c,
archival/libarchive/get_header_tar_gz.c,
archival/libarchive/get_header_tar_xz.c, archival/libarchive/header_list.c,
archival/libarchive/header_skip.c, archival/libarchive/header_verbose_list.c,
archival/libarchive/init_handle.c, archival/libarchive/open_transformer.c,
archival/libarchive/seek_by_jump.c, archival/libarchive/seek_by_read.c,
archival/libarchive/unpack_ar_archive.c, archival/libarchive/unsafe_prefix.c,
archival/libarchive/unsafe_symlink_target.c, archival/rpm.c, archival/rpm.h,
archival/unzip.c, console-tools/chvt.c, console-tools/clear.c,
console-tools/deallocvt.c, console-tools/dumpkmap.c, console-tools/fgconsole.c,
console-tools/loadkmap.c, console-tools/resize.c, console-tools/setconsole.c,
console-tools/setkeycodes.c, coreutils/basename.c, coreutils/chgrp.c,
coreutils/chmod.c, coreutils/chown.c, coreutils/chroot.c, coreutils/cksum.c,
coreutils/comm.c, coreutils/cp.c, coreutils/cut.c, coreutils/dd.c,
coreutils/df.c, coreutils/dirname.c, coreutils/du.c, coreutils/expand.c,
coreutils/expr.c, coreutils/false.c, coreutils/fold.c, coreutils/head.c,
coreutils/hostid.c, coreutils/id.c, coreutils/install.c,
coreutils/libcoreutils/coreutils.h, coreutils/ln.c, coreutils/logname.c,
coreutils/ls.c, coreutils/md5_sha1_sum.c, coreutils/mkdir.c, coreutils/mkfifo.c,
coreutils/mknod.c, coreutils/mktemp.c, coreutils/mv.c, coreutils/nice.c,
coreutils/nohup.c, coreutils/printenv.c, coreutils/printf.c, coreutils/pwd.c,
coreutils/readlink.c, coreutils/realpath.c, coreutils/rm.c, coreutils/rmdir.c,
coreutils/shuf.c, coreutils/sleep.c, coreutils/sort.c, coreutils/split.c,
coreutils/stat.c, coreutils/stty.c, coreutils/sum.c, coreutils/sync.c,
coreutils/tail.c, coreutils/tee.c, coreutils/touch.c, coreutils/true.c,
coreutils/truncate.c, coreutils/tty.c, coreutils/uname.c, coreutils/uniq.c,
coreutils/usleep.c, coreutils/uudecode.c, coreutils/uuencode.c, coreutils/wc.c,
coreutils/whoami.c, coreutils/yes.c, debianutils/pipe_progress.c,
debianutils/which.c, editors/awk.c, editors/cmp.c, editors/diff.c,
editors/patch_bbox.c, editors/vi.c, findutils/grep.c, findutils/xargs.c,
include/applet_metadata.h, include/ar.h, include/busybox.h, include/platform.h,
include/rtc_.h, init/bootchartd.c, libbb/ask_confirmation.c, libbb/bb_askpass.c,
libbb/bb_pwd.c, libbb/bb_strtod.c, libbb/bb_strtonum.c, libbb/bbunit.c,
libbb/capability.c, libbb/compare_string_array.c, libbb/concat_subpath_file.c,
libbb/copy_file.c, libbb/copyfd.c, libbb/default_error_retval.c,
libbb/device_open.c, libbb/die_if_bad_username.c, libbb/executable.c,
libbb/fclose_nonstdin.c, libbb/fflush_stdout_and_exit.c,
libbb/find_mount_point.c, libbb/find_pid_by_name.c, libbb/find_root_device.c,
libbb/full_write.c, libbb/get_last_path_component.c, libbb/get_line_from_file.c,
libbb/getopt32.c, libbb/getopt_allopts.c, libbb/herror_msg.c,
libbb/kernel_version.c, libbb/last_char_is.c, libbb/llist.c, libbb/logenv.c,
libbb/login.c, libbb/loop.c, libbb/make_directory.c, libbb/match_fstype.c,
libbb/messages.c, libbb/mode_string.c, libbb/mtab.c, libbb/obscure.c,
libbb/parse_config.c, libbb/parse_mode.c, libbb/percent_decode.c,
libbb/perror_msg.c, libbb/perror_nomsg.c, libbb/perror_nomsg_and_die.c,
libbb/pidfile.c, libbb/print_flags.c, libbb/process_escape_sequence.c,
libbb/procps.c, libbb/pw_encrypt.c, libbb/read.c, libbb/read_printf.c,
libbb/recursive_action.c, libbb/remove_file.c, libbb/replace.c,
libbb/safe_gethostname.c, libbb/safe_strncpy.c, libbb/safe_write.c,
libbb/simplify_path.c, libbb/skip_whitespace.c, libbb/speed_table.c,
libbb/str_tolower.c, libbb/strrstr.c, libbb/sysconf.c, libbb/u_signal_names.c,
libbb/uuencode.c, libbb/verror_msg.c, libbb/warn_ignoring_args.c,
libbb/wfopen.c, libbb/wfopen_input.c, libbb/write.c, libbb/xgethostbyname.c,
libpwdgrp/pwd_grp.c, loginutils/addgroup.c, loginutils/adduser.c,
loginutils/login.c, loginutils/passwd.c, loginutils/su.c, loginutils/sulogin.c,
miscutils/adjtimex.c, miscutils/beep.c, miscutils/crond.c, miscutils/crontab.c,
miscutils/dc.c, miscutils/devmem.c, miscutils/fbsplash.c,
miscutils/flash_eraseall.c, miscutils/less.c, miscutils/lsscsi.c,
miscutils/mt.c, miscutils/raidautorun.c, miscutils/readahead.c,
miscutils/rfkill.c, miscutils/runlevel.c, miscutils/rx.c, miscutils/setserial.c,
miscutils/strings.c, miscutils/watchdog.c, modutils/depmod.c, modutils/insmod.c,
modutils/lsmod.c, modutils/modinfo.c, modutils/modprobe.c, modutils/modutils.c,
modutils/modutils.h, modutils/rmmod.c, networking/dnsd.c,
networking/ftpgetput.c, networking/hostname.c, networking/httpd.c,
networking/ifplugd.c, networking/ifupdown.c, networking/nc.c,
networking/parse_pasv_epsv.c, networking/pscan.c, networking/udhcp/dumpleases.c,
networking/vconfig.c, networking/whois.c, networking/zcip.c, procps/kill.c,
procps/pgrep.c, procps/watch.c, sysklogd/klogd.c, sysklogd/logread.c,
sysklogd/syslogd.c, util-linux/blkdiscard.c, util-linux/chrt.c,
util-linux/eject.c, util-linux/fdisk.c, util-linux/hwclock.c,
util-linux/last_fancy.c, util-linux/losetup.c, util-linux/lspci.c,
util-linux/lsusb.c, util-linux/mesg.c, util-linux/nsenter.c,
util-linux/readprofile.c, util-linux/renice.c, util-linux/setarch.c,
util-linux/taskset.c, util-linux/unshare.c, util-linux/wall.c
--------------------------------------------------------------------------------

Copyright (C) 86, 1989-2006 Free Software Foundation, Inc.
Copyright 1991-1997 Miquel van Smoorenburg.
Copyright (C) 1992  A. V. Le Blanc (LeBlanc@mcc.ac.uk)
Copyright (C) 1994-1998 Andries E. Brouwer <aeb@cwi.nl>
Copyright 1994 Matthew Dillon (dillon@apollo.west.oic.com)
Copyright (C) 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it)
Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Copyright (C) 1996 Brian Candler <B.Candler@pobox.com>
Copyright 1997, 2000, 2001 Larry Doolittle
Copyright 1998 by Albert Cahalan; all rights reserved.
Copyright (C) 1998-1999  Dave Cinege
Copyright (C) 1998, 1999  Charles P. Wright
Copyright (C) 1998 Enrique Zanardi <ezanardi@ull.es>
Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
Copyright (C) 1999-2000 by Randolph Chung <tausq@debian.org>
Copyright (C) 1999,2000,2001 by Lineo, inc.
Copyright (C) 1999,2000,2001 by Lineo, inc. and John Beppu
Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
Copyright (c) 1999 Anthony Towns <aj@azure.humbug.org.au>
Copyright (C) 2000 Arcom Control System Ltd
Copyright (C) 2000, Jan-Derk Bakker (J.D.Bakker@its.tudelft.nl)
Copyright (c) 2000, 2002  Edward Betts <edward@debian.org>
Copyright (C) 2000-2001 by Gennady Feldman <gfeldman@gena01.com>
Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com>
Copyright (C) 2000 by Daniel Jacobowitz
Copyright (C) 2000-2002 Matt Kraai <kraai@alumni.carnegiemellon.edu>
Copyright (C) 2000-2003 Glenn McGrath
Copyright (C) 2001,2002 by Laurence Anderson
Copyright (C) 2001 by Michael Habermann <mhabermann@gmx.de>
Copyright (C) 2001 Hewlett-Packard Laboratories
Copyright (C) 2001-2003, 2005  Manuel Novoa III  <mjn3@codepoet.org>
Copyright (C) 2001-2006 Vladimir Oleynik <dzo@simtreas.ru>
Copyright (C) 2002 Jeff Angielski, The PTR Group <jeff@theptrgroup.com>
Copyright (C) 2002,2003 Glenn Engel <glenne@engel.org>
Copyright (C) 2002 Robert Griebl <griebl@gmx.de>
Copyright 2002 Andi Kleen, SuSE Labs.
Copyright (C) 2002 by Dmitry Zakharov <dmit@crp.bank.gov.ua>
Copyright (C) 2003 Bastian Blank <waldi@tuxbox.org>
Copyright (C) 2003 by Arthur van Hoff (avh@strangeberry.com)
Copyright (C) 2003 by Rob Landley <rob@landley.net>, Joey Hess
Copyright (C) 2004-2006 Rob Landley <rob@landley.net>
Copyright (C) 2003  Paul Mundt <lethal@linux-sh.org>
Copyright (C) 2003, 2005-2008, 2014 Tito Ragusa <farmatito@tiscali.it>
Copyright (C) 2003 Paul Sheer
Copyright (C) 2004,2005  Enrik Berkhan <Enrik.Berkhan@inka.de>
Copyright (C) 2004 by David Brownell
Copyright (C) 2004 by Ed Clark
Copyright (C) 2004  Peter Willis <psyphreak@phreaker.net>
Copyright (C) 2005 Roberto A. Foglietta (me@roberto.foglietta.name)
Copyright (C) 2005 by Mike Frysinger <vapier@gentoo.org>
Copyright (C) 2005 Odd Arild Olsen (oao at fibula dot no)
Copyright (C) 2005-2009 Bernhard Reutner-Fischer
Copyright (C) 2005-2006 by Robert Sullivan
(C) 2006 Jac Goudsmit
Copyright (C) 2006  Michael Opdenacker <michael@free-electrons.com>
Copyright (C) 2006 by Yoshinori Sato <ysato@users.sourceforge.jp>
Copyright (C) 2006 Gabriel Somlo <somlo at cmu.edu>
Copyright (C) 2006 by Rob Sullivan, with ideas from code by Walter Harms
Copyright (C) 2007 by Stephane Billiart <stephane.billiart@gmail.com>
Copyright (C) 2007 Loic Grenie <loic.grenie@gmail.com>
(c) 2007 by Yuichi Nakamura <ynakam@hitachisoft.jp>
Copyright (C) 2008  Darius Augulis <augulis.darius@gmail.com>
Copyright (c) 2008 Pascal Bellard
Copyright (C) 2008, BusyBox Team. -solar 4/26/08
Copyright (C) 2008 Natanael Copa <natanael.copa@gmail.com>
Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>
Copyright (C) 2008 by Patricia Muscalu <patricia.muscalu@axis.com>
Copyright (C) 2008 Nokia Corporation. All rights reserved.
Copyright (C) 2008 Michele Sanges <michele.sanges@gmail.com>
Copyright (C) 2009-2010  Malek Degachi <malek-degachi@laposte.net>
Copyright (C) 2009 Maksym Kryzhanovskyy <xmaks@email.cz>
Copyright (C) 2010 by Grigory Batalov <bga@altlinux.org>
Copyright (C) 2010, 2017-2018 Denys Vlasenko
Copyright (C) 2011 Marek Bečka <yuen@klacno.sk>
Copyright (c) 2011 Pere Orga <gotrunks@gmail.com>
Copyright (C) 2014, 2016 by Bartosz Golaszewski <bartekgola@gmail.com>
Copyright (C) 2014 by Fugro Intersite B.V. <m.stam@fugro.nl>
Copyright (C) 2015 by Ari Sundholm <ari@tuxera.com>
Copyright (C) 2015 by Ari Sundholm <ari@tuxera.com> and Tuxera Inc.
Copyright (C) 2017 by  <assafgordon@gmail.com>
Copyright (C) 2017 Markus Gothe <nietzsche@lysator.liu.se>
Copyright (C) Arne Bernin <arne@matrix.loopback.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/ar.c
-------------

Copyright (C) 2000 by Glenn McGrath

Based in part on BusyBox tar, Debian dpkg-deb and GNU ar.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (C) 2010 Nokia Corporation. All rights reserved.
Written by Alexander Shishkin.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/dpkg.c
---------------

copyright (c) 2001 by glenn mcgrath

parts of the version comparison code is plucked from the real dpkg
application which is licensed GPLv2 and
copyright (c) 1995 Ian Jackson <ian@chiark.greenend.org.uk>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/gzip.c
---------------

Based on GNU gzip Copyright (C) 1992-1993 Jean-loup Gailly.

Originally adjusted for busybox by Charles P. Wright <cpw@unix.asb.com>

Adjusted further by Erik Andersen <andersen@codepoet.org> to support
files as well as stdin/stdout, and to generally behave itself wrt
command line handling.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (C) 1992-1993 Jean-loup Gailly
This is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License, see the file COPYING.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/libarchive/decompress_bunzip2.c
----------------------------------------

Small bzip2 deflate implementation, by Rob Landley (rob@landley.net).

Based on bzip2 decompression code by Julian R Seward (jseward@acm.org),
which also acknowledges contributions by Mike Burrows, David Wheeler,
Peter Fenwick, Alistair Moffat, Radford Neal, Ian H. Witten,
Robert Sedgewick, and Jon L. Bentley.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/libarchive/decompress_gunzip.c
---------------------------------------

Based on GNU gzip v1.2.4 Copyright (C) 1992-1993 Jean-loup Gailly.

Originally adjusted for busybox by Sven Rudolph <sr1@inf.tu-dresden.de>
based on gzip sources

Adjusted further by Erik Andersen <andersen@codepoet.org> to support
files as well as stdin/stdout, and to generally behave itself wrt
command line handling.

General cleanup to better adhere to the style guide and make use of standard
busybox functions by Glenn McGrath

read_gz interface + associated hacking by Laurence Anderson

Fixed huft_build() so decoding end-of-block code does not grab more bits
than necessary (this is required by unzip applet), added inflate_cleanup()
to free leaked bytebuffer memory (used in unzip.c), and some minor style
guide cleanups by Ed Clark

gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
Copyright (C) 1992-1993 Jean-loup Gailly
The unzip code was written and put in the public domain by Mark Adler.
Portions of the lzw code are derived from the public domain 'compress'
written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
Ken Turkowski, Dave Mack and Peter Jannesen.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/libarchive/decompress_unlzma.c
---------------------------------------

Copyright (C) 2006  Aurelien Jacobs <aurel@gnuage.org>

Based on LzmaDecode.c from the LZMA SDK 4.22 (http://www.7-zip.org/)
Copyright (C) 1999-2005  Igor Pavlov

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/libarchive/liblzo.h, archival/libarchive/lzo1x_1.c,
archival/libarchive/lzo1x_1o.c, archival/libarchive/lzo1x_9x.c,
archival/libarchive/lzo1x_c.c, archival/libarchive/lzo1x_d.c,
include/liblzo_interface.h
---------------------------------------------------------------

This file is part of the LZO real-time data compression library.

Copyright (C) 1996..2008 Markus Franz Xaver Johannes Oberhumer
All Rights Reserved.

Markus F.X.J. Oberhumer <markus@oberhumer.com>
http://www.oberhumer.com/opensource/lzo/

The LZO library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.

The LZO library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with the LZO library; see the file COPYING.
If not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/lzop.c
---------------

This file is part of the lzop file compressor.

Copyright (C) 1996..2003 Markus Franz Xaver Johannes Oberhumer
All Rights Reserved.

Markus F.X.J. Oberhumer <markus@oberhumer.com>
http://www.oberhumer.com/opensource/lzop/

lzop and the LZO library are free software; you can redistribute them
and/or modify them under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; see the file COPYING.
If not, write to the Free Software Foundation, Inc.,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

"Minimalized" for busybox by Alain Knaff

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/tar.c
--------------

Modified to use common extraction code used by ar, cpio, dpkg-deb, dpkg
 by Glenn McGrath

Note, that as of BusyBox-0.43, tar has been completely rewritten from the
ground up.  It still has remnants of the old code lying about, but it is
very different now (i.e., cleaner, less global variables, etc.)

Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>

Based in part in the tar implementation in sash
 Copyright (c) 1999 by David I. Bell
 Permission is granted to use, distribute, or modify this source,
 provided that this copyright notice remains intact.
 Permission to distribute sash derived code under GPL has been granted.

Based in part on the tar implementation from busybox-0.28
 Copyright (C) 1995 Bruce Perens

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

console-tools/openvt.c
----------------------

 busyboxed by Quy Tonthat <quy@signal3.com>
 hacked by Tito <farmatito@tiscali.it>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

console-tools/kbd_mode.c
------------------------

Copyright (C) 2007 Loic Grenie <loic.grenie@gmail.com>
  written using Andries Brouwer <aeb@cwi.nl>'s kbd_mode from
  console-utils v0.2.3, licensed under GNU GPLv2

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

console-tools/reset.c
---------------------

Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Written by Erik Andersen and Kent Robotti <robotti@metconnect.com>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

console-tools/setlogcons.c
--------------------------

Copyright (C) 2006 by Jan Kiszka <jan.kiszka@web.de>

Based on setlogcons (kbd-1.12) by Andries E. Brouwer

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/date.c
----------------

by Matthew Grant <grantma@anathoth.gen.nz>

iso-format handling added by Robert Griebl <griebl@gmx.de>
bugfixes and cleanup by Bernhard Reutner-Fischer

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/dos2unix.c
--------------------

based on Unix2Dos 0.9.0 by Peter Hanecak (made 19.2.1997)
Copyright 1997,.. by Peter Hanecak <hanecak@megaloman.sk>.
All rights reserved.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/echo.c
----------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1991, 1993
     The Regents of the University of California.  All rights reserved.

This code is derived from software contributed to Berkeley by
Kenneth Almquist.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
             ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>

     California, Berkeley and its contributors.
4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/env.c
---------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1988, 1993, 1994
     The Regents of the University of California.  All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. BSD Advertising Clause omitted per the July 22, 1999 licensing change
   ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change

4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/libcoreutils/cp_mv_stat.c, coreutils/libcoreutils/getopt_mk_fifo_nod.c
--------------------------------------------------------------------------------

Copyright (C) 2003  Manuel Novoa III  <mjn3@codepoet.org>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/od.c
--------------

Based on code from util-linux v 2.11l

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1990 The Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/od_bloaty.c
---------------------

Copyright (C) 92, 1995-2004 Free Software Foundation, Inc.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/paste.c
-----------------

Written by Maxime Coste <mawww@kakoune.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/test.c
----------------

Copyright (c) by a whole pile of folks:

    test(1); version 7-like  --  author Erik Baalbergen
    modified by Eric Gisin to be used as built-in.
    modified by Arnold Robbins to add SVR3 compatibility
    (-x -c -b -p -u -g -k) plus Korn's -L -nt -ot -ef and new -S (socket).
    modified by J.T. Conklin for NetBSD.
    modified by Herbert Xu to be used as built-in in ash.
    modified by Erik Andersen <andersen@codepoet.org> to be used
    in busybox.
    modified by Bernhard Reutner-Fischer to be useable (i.e. a bit less bloaty).

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Original copyright notice states:
    "This program is in the Public Domain."

coreutils/tr.c
--------------

Copyright (c) 1987,1997, Prentice Hall   All rights reserved.

The name of Prentice Hall may not be used to endorse or promote
products derived from this software without specific prior
written permission.

Copyright (c) Michiel Huisjes

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/who.c
---------------

This is a free document; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation:
   http://www.gnu.org/copyleft/gpl.html

Copyright (c) 2002 AYR Networks, Inc.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

debianutils/run_parts.c
-----------------------

Copyright (C) 2007 Bernhard Reutner-Fischer

Based on a older version that was in busybox which was 1k big.
  Copyright (C) 2001 by Emanuele Aina <emanuele.aina@tiscali.it>

Based on the Debian run-parts program, version 1.15
  Copyright (C) 1996 Jeff Noxon <jeff@router.patch.net>,
  Copyright (C) 1996-1999 Guy Maor <maor@debian.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

debianutils/start_stop_daemon.c
-------------------------------

Written by Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl>,
Adapted for busybox David Kimdon <dwhedon@gordian.com>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

include/xregex.h, libbb/isdirectory.c
-------------------------------------

Based in part on code from sash, Copyright (c) 1999 by David I. Bell
Permission has been granted to redistribute this code under GPL.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

init/init.c
-----------

Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Adjusted by so many folks, it's impossible to keep track.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/appletlib.c
-----------------

Copyright (C) tons of folks.  Tracking down who wrote what
isn't something I'm going to worry about...  If you wrote something
here, please feel free to acknowledge your work.

Based in part on code from sash, Copyright (c) 1999 by David I. Bell
Permission has been granted to redistribute this code under GPL.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/chomp.c, libbb/concat_path_file.c, libbb/fgets_str.c,
libbb/get_console.c, libbb/inode_hash.c, libbb/trim.c, libbb/xregcomp.c
-----------------------------------------------------------------------

Copyright (C) many different people.
If you wrote this, please acknowledge your work.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/dump.c
------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Original copyright notice is retained at the end of this file.

Copyright (c) 1989 The Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/getpty.c
--------------

Bjorn Wesen, Axis Communications AB (bjornw@axis.com)

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/vfork_daemon_rexec.c
--------------------------

Copyright (C) Vladimir N. Oleynik <dzo@simtreas.ru>
Copyright (C) 2003 Russ Dill <Russ.Dill@asu.edu>

daemon() portion taken from uClibc:

Copyright (c) 1991, 1993
     The Regents of the University of California.  All rights reserved.

Modified for uClibc by Erik Andersen <andersee@debian.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

loginutils/add-remove-shell.c, procps/pmap.c
--------------------------------------------

Copyright (C) 2010 Nokia Corporation. All rights reserved.
Written by Alexander Shishkin <virtuoso@slind.org>

Licensed under GPLv2 or later, see the LICENSE file in this source tree
for details.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

loginutils/chpasswd.c
---------------------

Written for SLIND (from passwd.c) by Alexander Shishkin <virtuoso@slind.org>
Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

loginutils/cryptpw.c
--------------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Cooked from passwd.c by Thomas Lundquist <thomasez@zelow.no>
mkpasswd compatible options added by Bernhard Reutner-Fischer

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

loginutils/getty.c
------------------

Based on agetty - another getty program for Linux. By W. Z. Venema 1989
Ported to Linux by Peter Orbaek <poe@daimi.aau.dk>
This program is freely distributable.

option added by Eric Rasmussen <ear@usfirst.org> - 12/28/95

1999-02-22 Arkadiusz Mickiewicz <misiek@misiek.eu.org>

1999-05-05 Thorsten Kranzkowski <dl8bcu@gmx.net>

2011-01 Venys Vlasenko

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

loginutils/vlock.c
------------------

Copyright (C) 2000 by spoon <spoon@ix.netcom.com>
Written by spoon <spon@ix.netcom.com>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Shoutz to Michael K. Johnson <johnsonm@redhat.com>, author of the
original vlock.  I snagged a bunch of his code to write this
minimalistic vlock.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/conspy.c
------------------

pascal.bellard@ads-lu.com

Based on Russell Stuart's conspy.c
  http://ace-host.stuart.id.au/russell/files/conspy.c

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/bc.c
--------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.
Adapted from https://github.com/gavinhoward/bc
Original code copyright (c) 2018 Gavin D. Howard and contributors.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/devfsd.c
------------------

    Copyright (C) 2003 by Tito Ragusa <farmatito@tiscali.it>

    Busybox version is based on some previous work and ideas
    Copyright (C) [2003] by [Matteo Croce] <3297627799@wind.it>

Copyright (C) 1997-2002  Richard Gooch

    This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/hdparm.c
------------------

Copyright (C) [2003] by [Matteo Croce] <3297627799@wind.it>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

This program is based on the source code of hdparm: see below...
         - by Mark Lord (C) 1994-2002 -- freely distributable

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/i2c_tools.c
---------------------

Parts of code ported from i2c-tools:
             http://www.lm-sensors.org/wiki/I2CTools.

Copyright (C) 2014 by Bartosz Golaszewski <bartekgola@gmail.com>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/makedevs.c
--------------------

public domain -- Dave 'Kill a Cop' Cinege <dcinege@psychosis.com>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

modutils/modutils-24.c
----------------------

Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
and Ron Alder <alder@lineo.com>

Rodney Radford <rradford@mindspring.com> 17-Aug-2004.
  Added x86_64 support.

Miles Bader <miles@gnu.org> added NEC V850E support.

Modified by Bryan Rittmeyer <bryan@ixiacom.com> to support SH4
and (theoretically) SH3.

Modified by Alcove, Julien Gaulmin <julien.gaulmin@alcove.fr> and
Nicolas Ferre <nicolas.ferre@alcove.fr> to support ARM7TDMI.

Yoshinori Sato <ysato@users.sourceforge.jp> 19-May-2004.

Paul Mundt <lethal@linux-sh.org> 08-Aug-2003.

Magnus Damm <damm@opensource.se> 22-May-2002.

Magnus Damm <damm@opensource.se> added PowerPC support 20-Feb-2001.
  PowerPC specific code stolen from modutils-2.3.16,
  written by Paul Mackerras, Copyright 1996, 1997 Linux International.

Quinn Jensen <jensenq@lineo.com> added MIPS support 23-Feb-2001.
  based on modutils-2.4.2
  Copyright 1996, 1997 Linux International.
  Contributed by Ralf Baechle <ralf@gnu.ai.mit.edu>

Based almost entirely on the Linux modutils-2.3.11 implementation.
  Copyright 1996, 1997 Linux International.
  New implementation contributed by Richard Henderson <rth@tamu.edu>
  Based on original work by Bjorn Ekwall <bj0rn@blox.se>
  Restructured (and partly rewritten) by:
  Björn Ekwall <bj0rn@blox.se> February 1999

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright 1996, 1997 Linux International.

Contributed by Richard Henderson <rth@tamu.edu>

This file is part of the Linux modutils.

This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/volname.c
-------------------

Copyright (C) 2000-2001 Jeff Tranter (tranter@pobox.com)

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/arp.c
----------------

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version
2 of the License, or (at your option) any later version.

Author: Fred N. van Kempen, <waltje at uwalt.nl.mugnet.org>
Busybox port: Paul van Gool <pvangool at mimotech.com>

modified for getopt32 by Arne Bernin <arne [at] alamut.de>

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/arping.c
-------------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Author: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Busybox port: Nick Fedchik <nick@fedchik.org.ua>

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/brctl.c
------------------

Copyright (C) 2008 by Bernhard Reutner-Fischer

Some helper functions from bridge-utils are
Copyright (C) 2000 Lennert Buytenhek

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/ether-wake.c
-----------------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

This software may be used and distributed according to the terms
of the GNU Public License, incorporated herein by reference.
Contact the author for use under other terms.

This source file was originally part of the network tricks package, and
is now distributed to support the Scyld Beowulf system.
Copyright 1999-2003 Donald Becker and Scyld Computing Corporation.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/ifconfig.c
---------------------

Bjorn Wesen, Axis Communications AB

Authors of the original ifconfig was:
             Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/ifenslave.c
----------------------

Copyright (C) 2005 by Marc Leeman <marc.leeman@barco.com>

             Copyright 1994-1996 Donald Becker

             This program is free software; you can redistribute it
             and/or modify it under the terms of the GNU General Public
             License as published by the Free Software Foundation.

 Changes :
   - 2000/10/02 Willy Tarreau <willy at meta-x.org>
   - 2001/02/16 Chad N. Tindel <ctindel at ieee dot org>
   - 2001/09/13 Takao Indoh <indou dot takao at jp dot fujitsu dot com>
   - 2001/10/23 Chad N. Tindel <ctindel at ieee dot org>
   - 2002/02/18 Erik Habbinga <erik_habbinga @ hp dot com>
   - 2002/10/31 Tony Cureington <tony.cureington * hp_com>
   - 2003/03/18 - Tsippy Mendelson <tsippy.mendelson at intel dot com> and
                  Shmulik Hen <shmulik.hen at intel dot com>
   - 2003/05/01 - Amir Noam <amir.noam at intel dot com>
   - 2003/05/01 - Shmulik Hen <shmulik.hen at intel dot com>
   - 2003/05/22 - Jay Vosburgh <fubar at us dot ibm dot com>
   - 2003/05/27 - Amir Noam <amir.noam at intel dot com>
   - 2003/12/01 - Shmulik Hen <shmulik.hen at intel dot com>

This notice suggests that this file may be used under any version of the GNU
General Public License.  On this system, a copy of the GNU GPL version 2 may be
found at <file:///usr/share/common-licenses/GPL-2>.

networking/interface.c
----------------------

stolen from net-tools-1.59 and stripped down for busybox by
                     Erik Andersen <andersen@codepoet.org>

Heavily modified by Manuel Novoa III       Mar 12, 2001

Added print_bytes_scaled function to reduce code size.
Added some (potentially) missing defines.
Improved display support for -a and for a named interface.

-----------------------------------------------------------

ifconfig   This file contains an implementation of the command
             that either displays or sets the characteristics of
             one or more of the system's networking interfaces.

Author:      Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
             and others.  Copyright 1993 MicroWalt Corporation

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Patched to support 'add' and 'del' keywords for INET(4) addresses
by Mrs. Brisby <mrs.brisby@nimh.org>

{1.34} - 19980630 - Arnaldo Carvalho de Melo <acme@conectiva.com.br>
                    - gettext instead of catgets for i18n
         10/1998  - Andi Kleen. Use interface list primitives.
         20001008 - Bernd Eckenfels, Patch from RH for setting mtu
                     (default AF was wrong)

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/ip.c
---------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

Changes:
Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
Bernhard Reutner-Fischer rewrote to use index_in_substr_array

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/ipcalc.c
-------------------

By Jordan Crouse <jordan@cosmicpenguin.net>
   Stephan Linz  <linz@li-pro.net>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/libiproute/ip_parse_common_args.c
--------------------------------------------

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version
2 of the License, or (at your option) any later version.

Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

Changes:

Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/libiproute/ipaddress.c
---------------------------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

Changes:
Laszlo Valko <valko@linux.karinthy.hu> 990223: address label must be zero terminated

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/libiproute/iplink.c
------------------------------

Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
                     Patrick McHardy <kaber@trash.net>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/libiproute/ipneigh.c
-------------------------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

Ported to Busybox by:  Curt Brune <curt@cumulusnetworks.com>

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/libiproute/iproute.c
-------------------------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

Changes:

Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
Kunihiro Ishiguro <kunihiro@zebra.org> 001102: rtnh_ifindex was not initialized

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/libiproute/iprule.c
------------------------------

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version
2 of the License, or (at your option) any later version.

Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

Changes:

Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
initially integrated into busybox by Bernhard Reutner-Fischer

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/libiproute/iptunnel.c
--------------------------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

Changes:

Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
Rani Assaf <rani@magic.metawire.com> 980930: do not allow key for ipip/sit
Phil Karn <karn@ka9q.ampr.org>       990408: "pmtudisc" flag

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/libiproute/libnetlink.c,
networking/libiproute/ll_addr.c, networking/libiproute/ll_map.c,
networking/libiproute/ll_proto.c, networking/libiproute/ll_types.c,
networking/libiproute/rt_names.c, networking/libiproute/rtm_map.c
-------------------------------------------------------------------

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version
2 of the License, or (at your option) any later version.

Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/libiproute/utils.c
-----------------------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

Changes:

Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/nameif.c
-------------------

Written 2000 by Andi Kleen.
Busybox port 2002 by Nick Fedchik <nick@fedchik.org.ua>
                     Glenn McGrath
Extended matching support 2008 by Nico Erfurth <masta@perlgolf.de>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/netstat.c
--------------------

based in part on the netstat implementation from net-tools.

Copyright (C) 2002 by Bart Visscher <magick@linux-fan.com>

2002-04-20
IPV6 support added by Bart Visscher <magick@linux-fan.com>

2008-07-10
optional '-p' flag support ported from net-tools by G. Somlo <somlo@cmu.edu>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/nslookup.c
---------------------

Copyright (C) 1999,2000 by Lineo, inc. and John Beppu
Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>

Correct default name server display and explicit name server option
added by Ben Zeckel <bzeckel@hmc.edu> June 2001

Licensed under GPLv2 or later, see file LICENSE in this source tree.

musl compatible nslookup

Copyright (C) 2017 Jo-Philipp Wich <jo@mein.io>

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/ping.c
-----------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (C) 1999 by Randolph Chung <tausq@debian.org>

This version of ping is adapted from the ping in netkit-base 0.10,
which is:

Copyright (c) 1989 The Regents of the University of California.
All rights reserved.

This code is derived from software contributed to Berkeley by
Mike Muuss.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
             ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>

4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

This version is an adaptation of ping.c from busybox.
The code was modified by Bart Visscher <magick@linux-fan.com>

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/route.c
------------------

Bjorn Wesen, Axis Communications AB

Author of the original route:
             Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
             (derived from FvK's 'route.c     1.70    01/04/94')

Licensed under GPLv2 or later, see file LICENSE in this source tree.

displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru>
adjustments by Larry Doolittle  <LRDoolittle@lbl.gov>

IPV6 support added by Bart Visscher <magick@linux-fan.com>

2004/03/09  Manuel Novoa III <mjn3@codepoet.org>

Rewritten to fix several bugs, add additional error checking, and
remove ridiculous amounts of bloat.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/slattach.c
---------------------

Author: Ignacio Garcia Perez (iggarpe at gmail dot com)

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/ssl_helper-wolfssl/ssl_helper.c
------------------------------------------

Copyright (C) 2006-2015 wolfSSL Inc.

This file is part of wolfSSL. (formerly known as CyaSSL)

wolfSSL is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

wolfSSL is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/ssl_helper/ssl_helper.c
----------------------------------

Copyright (c) 2013 INSIDE Secure Corporation
Copyright (c) PeerSec Networks, 2002-2011
All Rights Reserved

The latest version of this code is available at http://www.matrixssl.org

This software is open source; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
http://www.gnu.org/copyleft/gpl.html

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/tc.c
---------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

Bernhard Reutner-Fischer adjusted for busybox

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/telnet.c
-------------------

Author: Tomi Ollila <too@iki.fi>
Copyright (C) 1994-2000 by Tomi Ollila

Created: Thu Apr  7 13:29:41 1994 too
Last modified: Fri Jun  9 14:34:24 2000 too

Licensed under GPLv2 or later, see file LICENSE in this source tree.

HISTORY
Revision 3.1  1994/04/17  11:31:54  too
initial revision
Modified 2000/06/13 for inclusion into BusyBox by Erik Andersen <andersen@codepoet.org>
Modified 2001/05/07 to add ability to pass TTYPE to remote host by Jim McQuillan
<jam@ltsp.org>
Modified 2004/02/11 to add ability to pass the USER variable to remote host
by Fernando Silveira <swrh@gmx.net>

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/telnetd.c
--------------------

Bjorn Wesen, Axis Communications AB (bjornw@axis.com)

Licensed under GPLv2 or later, see file LICENSE in this source tree.

(C) Copyright 2000, Axis Communications AB, LUND, SWEDEN

Vladimir Oleynik <dzo@simtreas.ru> 2001
Set process group corrections, initial busybox port

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/tftp.c
-----------------

Copyright (C) 2001 Magnus Damm <damm@opensource.se>

Parts of the code based on:

atftp:  Copyright (C) 2000 Jean-Pierre Lefebvre <helix@step.polymtl.ca>
                       and Remi Lefebvre <remi@debian.org>

utftp:  Copyright (C) 1999 Uwe Ohse <uwe@ohse.de>

tftpd added by Denys Vlasenko & Vladimir Dronnikov

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/udhcp/common.h
-------------------------

Russ Dill <Russ.Dill@asu.edu> September 2001
Rewritten by Vladimir Oleynik <dzo@simtreas.ru> (C) 2003

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/udhcp/domain_codec.c
-------------------------------

RFC1035 domain compression routines (C) 2007 Gabriel Somlo <somlo at cmu.edu>

Loosely based on the isc-dhcpd implementation by dhankins@isc.org

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

procps/smemcap.c
----------------

Copyright 2008-2009 Matt Mackall <mpm@selenic.com>

This software may be used and distributed according to the terms of
the GNU General Public License version 2 or later, incorporated
herein by reference.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

procps/sysctl.c
---------------

Copyright 1999 George Staikos

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Changelog:
v1.01   - added -p <preload> to preload values from a file
v1.01.1 - busybox applet aware by <solar@gentoo.org>

shell/ash.c
-----------

Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>
was re-ported from NetBSD and debianized.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

The let builtin. Partially stolen from GNU Bash, the Bourne Again SHell.
Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
Copyright (C) 2003 Vladimir Oleynik <dzo@simtreas.ru>

Copyright (c) 1989, 1991, 1993, 1994
     The Regents of the University of California.  All rights reserved.

This code is derived from software contributed to Berkeley by
Kenneth Almquist.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

shell/hush.c
------------

Copyright (C) 2000,2001  Larry Doolittle <larry@doolittle.boa.org>
Copyright (C) 2008,2009  Denys Vlasenko <vda.linux@googlemail.com>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Credits:
     The parser routines proper are all original material, first
     written Dec 2000 and Jan 2001 by Larry Doolittle.  The
     execution engine, the builtins, and much of the underlying
     support has been adapted from busybox-0.49pre's lash, which is
     Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
     written by Erik Andersen <andersen@codepoet.org>.  That, in turn,
     is based in part on ladsh.c, by Michael K. Johnson and Erik W.
     Troan, which they placed in the public domain.  I don't know
     how much of the Johnson/Troan code has survived the repeated
     rewrites.

Other credits:
     o_addchr derived from similar w_addchar function in glibc-2.2.
     parse_redirect, redirect_opt_num, and big chunks of main
     and many builtins derived from contributions by Erik Andersen.
     Miscellaneous bugfixes from Matt Kraai.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

shell/match.c
-------------

This code is derived from software contributed to Berkeley by
Kenneth Almquist.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1989, 1991, 1993, 1994
     The Regents of the University of California.  All rights reserved.

Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>
was re-ported from NetBSD and debianized.

shell/math.c
------------

Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>
was re-ported from NetBSD and debianized.

rewrite arith.y to micro stack based cryptic algorithm by
Copyright (c) 2001 Aaron Lehmann <aaronl@vitelus.com>

Modified by Paul Mundt <lethal@linux-sh.org> (c) 2004 to support
dynamic variables.

Modified by Vladimir Oleynik <dzo@simtreas.ru> (c) 2001-2005 to be
used in busybox and size optimizations,
rewrote arith (see notes to this), added locale support,
rewrote dynamic variables.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 2001 Aaron Lehmann <aaronl@vitelus.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

(C) 2003 Vladimir Oleynik <dzo@simtreas.ru>

Copyright (c) 1989, 1991, 1993, 1994
     The Regents of the University of California.  All rights reserved.

This code is derived from software contributed to Berkeley by
Kenneth Almquist.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

shell/shell_common.c, shell/shell_common.h
------------------------------------------

This code is derived from software contributed to Berkeley by
Kenneth Almquist.

Copyright (c) 1989, 1991, 1993, 1994
     The Regents of the University of California.  All rights reserved.

Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>
was re-ported from NetBSD and debianized.

Copyright (c) 2010 Denys Vlasenko
Split from ash.c

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

sysklogd/logger.c
-----------------

Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1983, 1993
The Regents of the University of California.  All rights reserved.

This is the original license statement for the decode and pencode functions.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. BSD Advertising Clause omitted per the July 22, 1999 licensing change
   ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change

4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/cal.c
----------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Copyright (c) 1989, 1993, 1994
     The Regents of the University of California.  All rights reserved.

This code is derived from software contributed to Berkeley by
Kim Letkeman.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/fbset.c
------------------

Copyright (C) 1999 by Randolph Chung <tausq@debian.org>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

This is a from-scratch implementation of fbset; but the de facto fbset
implementation was a good reference. fbset (original) is released under
the GPL, and is (c) 1995-1999 by:
    Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be)

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/findfs.c
-------------------

Copyright (C) 2006 by Jason Schoon <floydpink@gmail.com>
Some portions cribbed from e2fsprogs, util-linux, dosfstools

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/fstrim.c
-------------------

03 March 2012 - Malek Degachi <malek-degachi@laposte.net>
Adapted for busybox from util-linux-2.12a.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/getopt.c
-------------------

Copyright (c) 1997, 1998, 1999, 2000  Frodo Looijaard <frodol@dds.nl>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Version 1.0-b4: Tue Sep 23 1997. First public release.
Version 1.0: Wed Nov 19 1997.
  Bumped up the version number to 1.0
  Fixed minor typo (CSH instead of TCSH)
Version 1.0.1: Tue Jun 3 1998
  Fixed sizeof instead of strlen bug
  Bumped up the version number to 1.0.1
Version 1.0.2: Thu Jun 11 1998 (not present)
  Fixed gcc-2.8.1 warnings
  Fixed --version/-V option (not present)
Version 1.0.5: Tue Jun 22 1999
  Make -u option work (not present)
Version 1.0.6: Tue Jun 27 2000
  No important changes
Version 1.1.0: Tue Jun 30 2000
  Added NLS support (partly written by Arkadiusz Mickiewicz
    <misiek@misiek.eu.org>)
Ported to Busybox - Alfred M. Szmidt <ams@trillian.itslinux.org>
 Removed --version/-V and --help/-h
 Removed parse_error(), using bb_error_msg() from Busybox instead
 Replaced our_malloc with xmalloc and our_realloc with xrealloc

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/hexdump.c
--------------------

Based on code from util-linux v 2.11l

Copyright (c) 1989
The Regents of the University of California.  All rights reserved.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/ionice.c
-------------------

ionice implementation for busybox based on linux-utils-ng 2.14

Copyright (C) 2008 by  <u173034@informatik.uni-oldenburg.de>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/ipcrm.c, util-linux/ipcs.c
-------------------------------------

01 Sept 2004 - Rodney Radford <rradford@mindspring.com>
Adapted for busybox from util-linux-2.12a.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/more.c
-----------------

Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>

Latest version blended together by Erik Andersen <andersen@codepoet.org>,
based on the original more implementation by Bruce, and code from the
Debian boot-floppies team.

Termios corrects by Vladimir Oleynik <dzo@simtreas.ru>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/mount.c
------------------

Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Copyright (C) 2005-2006 by Rob Landley <rob@landley.net>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Linux NFS mount
Copyright (C) 1993 Rick Sladkey <jrs@world.std.com>

Licensed under GPLv2, see file LICENSE in this source tree.

Wed Feb  8 12:51:48 1995, biro@yggdrasil.com (Ross Biro): allow all port
numbers to be specified on the command line.

Fri, 8 Mar 1996 18:01:39, Swen Thuemmler <swen@uni-paderborn.de>:
Omit the call to connect() for Linux version 1.3.11 or later.

Wed Oct  1 23:55:28 1997: Dick Streefland <dick_streefland@tasking.com>
Implemented the "bg", "fg" and "retry" mount options for NFS.

1999-02-22 Arkadiusz Mickiewicz <misiek@misiek.eu.org>
- added Native Language Support

Modified by Olaf Kirch and Trond Myklebust for new NFS code,
plus NFSv3 stuff.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/mountpoint.c
-----------------------

Copyright (C) 2005 Bernhard Reutner-Fischer

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Based on sysvinit's mountpoint

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/rdate.c
------------------

by Sterling Huxley <sterling@europa.com>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/script.c
-------------------

Based on code from util-linux v 2.12r
Copyright (c) 1980
The Regents of the University of California.  All rights reserved.

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/volume_id/get_devname.c
----------------------------------

Copyright (C) 2006 by Jason Schoon <floydpink@gmail.com>
Some portions cribbed from e2fsprogs, util-linux, dosfstools

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.



Upstream Source: GNU GPL Version 2 Only
=======================================

applets/applet_tables.c, applets/applets.c, applets/individual.c,
applets/usage.c, applets/usage_pod.c, archival/libarchive/get_header_tar_lzma.c,
console-tools/showkey.c, coreutils/factor.c, coreutils/link.c, coreutils/nl.c,
coreutils/seq.c, coreutils/shred.c, coreutils/tac.c, coreutils/test_ptr_hack.c,
e2fsprogs/e2fs_lib.c, e2fsprogs/fsck.c, editors/sed.c, include/fix_u32.h,
include/unicode.h, include/xatonum.h, init/halt.c, klibc-utils/minips.c,
klibc-utils/nuke.c, klibc-utils/resume.c, klibc-utils/run-init.c,
libbb/auto_string.c, libbb/bb_bswap_64.c, libbb/bb_cat.c, libbb/bb_do_delay.c,
libbb/bb_getgroups.c, libbb/bb_getsockname.c, libbb/bb_qsort.c,
libbb/common_bufsiz.c, libbb/duration.c, libbb/endofname.c,
libbb/get_shell_name.c, libbb/get_volsize.c, libbb/inet_cksum.c, libbb/isqrt.c,
libbb/lineedit_ptr_hack.c, libbb/makedev.c, libbb/missing_syscalls.c,
libbb/nuke_str.c, libbb/platform.c, libbb/print_numbered_lines.c,
libbb/printable.c, libbb/printable_string.c, libbb/ptr_to_globals.c,
libbb/read_key.c, libbb/rtc.c, libbb/safe_poll.c, libbb/securetty.c,
libbb/selinux_common.c, libbb/signals.c, libbb/single_argv.c, libbb/time.c,
libbb/ubi.c, libbb/udp_io.c, libbb/utmp.c, libbb/xatonum.c,
libbb/xatonum_template.c, libbb/xconnect.c, libbb/xfunc_die.c, libbb/xfuncs.c,
libbb/xfuncs_printf.c, libbb/xgetcwd.c, libbb/xreadlink.c,
libbb/xrealloc_vector.c, loginutils/deluser.c, mailutils/mail.c,
mailutils/mail.h, mailutils/makemime.c, mailutils/popmaildir.c,
mailutils/reformime.c, mailutils/sendmail.c, miscutils/chat.c,
miscutils/flashcp.c, miscutils/hexedit.c, miscutils/inotifyd.c, miscutils/man.c,
miscutils/microcom.c, miscutils/nandwrite.c, miscutils/partprobe.c,
miscutils/setfattr.c, miscutils/ts.c, miscutils/ttysize.c,
miscutils/ubi_tools.c, miscutils/ubirename.c, modutils/modprobe-small.c,
networking/httpd_indexcgi.c, networking/httpd_ssi.c, networking/isrv.c,
networking/isrv.h, networking/isrv_identd.c, networking/nbd-client.c,
networking/ssl_client.c, networking/tls.c, networking/tls.h,
networking/tls_aes.h, networking/tls_aesgcm.c, networking/tls_aesgcm.h,
networking/tls_fe.h, networking/tls_rsa.c, networking/tls_rsa.h,
networking/udhcp/d6_common.h, networking/udhcp/d6_packet.c,
networking/udhcp/d6_socket.c, networking/udhcp/dhcpc.h,
networking/udhcp/dhcpd.h, printutils/lpd.c, procps/free.c, procps/fuser.c,
procps/lsof.c, procps/pidof.c, procps/ps.c, procps/uptime.c,
shell/ash_ptr_hack.c, shell/cttyhack.c, shell/random.c, shell/random.h,
sysklogd/syslogd_and_logger.c, util-linux/acpid.c, util-linux/blkid.c,
util-linux/blockdev.c, util-linux/dmesg.c, util-linux/fallocate.c,
util-linux/fdisk_aix.c, util-linux/fdisk_gpt.c, util-linux/fsfreeze.c,
util-linux/hexdump_xxd.c, util-linux/last.c, util-linux/mdev.c,
util-linux/mkfs_minix.c, util-linux/mkfs_reiser.c, util-linux/mkfs_vfat.c,
util-linux/mkswap.c, util-linux/rdev.c, util-linux/rev.c,
util-linux/swaponoff.c, util-linux/switch_root.c, util-linux/uevent.c,
util-linux/umount.c, util-linux/volume_id/erofs.c, util-linux/volume_id/f2fs.c,
util-linux/volume_id/lfs.c, util-linux/volume_id/squashfs.c,
util-linux/volume_id/ubifs.c
--------------------------------------------------------------------------------

Copyright (C) 1992, 1996, 2004-2005 Free Software Foundation, Inc.
(C) 1991 Linus Torvalds.
Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
     2001, 2002, 2003, 2004, 2005 by  Theodore Ts'o.
Copyright (C) Andreas Neuper, Sep 1998.
Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Copyright (c) 1999, 2000 The ht://Dig Group
Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
Copyright (C) 1999 by Lineo, inc. and John Beppu
Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
Copyright (C) 2002  Matt Kraai
Copyright (C) 2003-2006, 2008, 2010 by Rob Landley <rob@landley.net>
Copyright (C) 2003-2004 by Glenn McGrath
Copyright (C) 2003  Manuel Novoa III  <mjn3@codepoet.org>
Copyright (C) 2003  Yang Xiaopeng  <yxp at hanwang.com.cn>
Copyright 2004 Tony J. White
Copyright (C) 2005, 2007 by Tito Ragusa <tito-wolit@tiscali.it>
Copyright 2005 Frank Sorenson <frank@tuxrocks.com>
Copyright (C) 2006  Aurelien Jacobs <aurel@gnuage.org>
Copyright (c) 2006, 2008 Bernhard Reutner-Fischer <rep.nop@aon.at>
Copyright (C) 2006-2019 Denys Vlasenko <vda.linux@googlemail.com>
Copyright (C) 2007  Natanael Copa  <natanael.copa@gmail.com>
(c)2007 Yuichi Nakamura <ynakam@hitachisoft.jp>
(c)2007 Hiroshi Shinji <shiroshi@my.email.ne.jp>
Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>
Copyright (c) 2008 Nuovation System Designs, LLC
  Grant Erickson <gerickson@nuovations.com>
Copyright (C) 2008 by Dan Fandrich <dan@coneharvesters.com>, et. al.
(C) 2009 Stefan Seyfried <seife@sphairon.com>
Copyright (C) 2010 Kevin Cernekee <cernekee@gmail.com>
Copyright (C) 2010 Sergey Naumov <sknaumov@gmail.com>
Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com>
Copyright (C) 2012 S-G Bergh <sgb@systemasis.org>
Copyright (C) 2012 by Sven Oliver 'SvOlli' Moll <svolli@svolli.de>
Copyright (C) 2018 Sven-Göran Bergh <sgb@systemaxion.se>
Copyright (C) 2020 Norbert Lange <nolange79@gmail.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/bbunzip.c
------------------

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Uncompress applet for busybox (c) 2002 Glenn McGrath

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Gzip implementation for busybox

Based on GNU gzip v1.2.4 Copyright (C) 1992-1993 Jean-loup Gailly.

Originally adjusted for busybox by Sven Rudolph <sr1@inf.tu-dresden.de>
based on gzip sources

Adjusted further by Erik Andersen <andersen@codepoet.org> to support files as
well as stdin/stdout, and to generally behave itself wrt command line
handling.

General cleanup to better adhere to the style guide and make use of standard
busybox functions by Glenn McGrath

Licensed under GPLv2 or later, see file LICENSE in this source tree.

gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
Copyright (C) 1992-1993 Jean-loup Gailly
The unzip code was written and put in the public domain by Mark Adler.
Portions of the lzw code are derived from the public domain 'compress'
written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
Ken Turkowski, Dave Mack and Peter Jannesen.

bunzip2

Modified for busybox by Glenn McGrath
Added support output to stdout by Thomas Lundquist <thomasez@zelow.no>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

Small lzma deflate implementation.
Copyright (C) 2006  Aurelien Jacobs <aurel@gnuage.org>

Based on bunzip.c from busybox

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

archival/libarchive/decompress_unxz.c
-------------------------------------

This file uses XZ Embedded library code which is written
by Lasse Collin <lasse.collin@tukaani.org>
and Igor Pavlov <http://7-zip.org/>

This file is:
Copyright (C) 2010 Denys Vlasenko <vda.linux@googlemail.com>
Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

console-tools/loadfont.c
------------------------

loadfont.c - Eugene Crosser & Andries Brouwer

Version 0.96bb

Loads the console font, and possibly the corresponding screen map(s).
(Adapted for busybox by Matej Vela.)

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/nproc.c, coreutils/unlink.c
-------------------------------------

Copyright (C) 2014 Isaac Dunham <ibid.ag@gmail.com>
Copyright (C) 2017 Denys Vlasenko <vda.linux@googlemail.com>

Licensed under GPLv2, see LICENSE in this source tree

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

coreutils/timeout.c
-------------------

Copyright (C) 2005-6, Roberto A. Foglietta <me@roberto.foglietta.name>

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; version 2 of the License.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

e2fsprogs/chattr.c, e2fsprogs/lsattr.c, util-linux/fatattr.c
------------------------------------------------------------

Copyright (C) 1993, 1994  Remy Card <card@masi.ibp.fr>
                          Laboratoire MASI, Institut Blaise Pascal
                          Universite Pierre et Marie Curie (Paris VI)
Copyright 2005 H. Peter Anvin
Busybox'ed (2014) by Pascal Bellard <pascal.bellard@ads-lu.com>

This file can be redistributed under the terms of the GNU General
Public License

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

e2fsprogs/tune2fs.c
-------------------

Busybox'ed (2009) by Vladimir Dronnikov <dronnikov@gmail.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

findutils/find.c
----------------

Mini find implementation for busybox

Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>

Reworked by David Douthitt <n9ubh@callsign.net> and
 Matt Kraai <kraai@alumni.carnegiemellon.edu>.

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

include/libbb.h
---------------

Based in part on code from sash, Copyright (c) 1999 by David I. Bell
Permission has been granted to redistribute this code under GPL.

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/crc32.c
-------------

Copyright (C) 2006 by Rob Sullivan <cogito.ergo.cogito@gmail.com>
(I can't really claim much credit however, as the algorithm is
very well-known)

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/get_cpu_count.c
---------------------

Factored out of mpstat/iostat.

Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/human_readable.c
----------------------

June 30, 2001                 Manuel Novoa III

All-integer version (hey, not everyone has floating point) of
make_human_readable_str, modified from similar code I had written
for busybox several months ago.

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/inet_common.c
-------------------

stolen from net-tools-1.59 and stripped down for busybox by
                     Erik Andersen <andersen@codepoet.org>

Heavily modified by Manuel Novoa III       Mar 12, 2001

Licensed under GPLv2, see file LICENSE in this source tree.

libbb/unicode.c
---------------

Unicode support routines.

Copyright (C) 2009 Denys Vlasenko

Licensed under GPLv2, see file LICENSE in this source tree.

Markus Kuhn -- 2007-05-26 (Unicode 5.0)

Permission to use, copy, modify, and distribute this software
for any purpose and without fee is hereby granted. The author
disclaims all warranties with regard to this software.

Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/update_passwd.c
---------------------

Moved from loginutils/passwd.c by Alexander Shishkin <virtuoso@slind.org>

Modified to be able to add or delete users, groups and users to/from groups
by Tito Ragusa <farmatito@tiscali.it>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/flash_lock_unlock.c
-----------------------------

Ported to busybox from mtd-utils.

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/nandwrite.c
---------------------

nandwrite and nanddump ported to busybox from mtd-utils

Author: Baruch Siach <baruch@tkos.co.il>, Orex Computed Radiography

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/time.c
----------------

Copyright (C) 1990, 91, 92, 93, 96 Free Software Foundation, Inc.

Licensed under GPLv2, see file LICENSE in this source tree.

Originally written by David Keppel <pardo@cs.washington.edu>.
Heavily modified by David MacKenzie <djm@gnu.ai.mit.edu>.
Heavily modified for busybox by Erik Andersen <andersen@codepoet.org>

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/ubi_tools.c
---------------------

Ported to busybox from mtd-utils.

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

miscutils/ubirename.c
---------------------

2016-03-01 Sven Eisenberg <sven.eisenberg@novero.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/ftpd.c
-----------------

Simple FTP daemon, based on vsftpd 2.0.7 (written by Chris Evans)

Author: Adam Tkac <vonsch@gmail.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/nc_bloaty.c
----------------------
Based on netcat 1.10 RELEASE 960320 written by hobbit@avian.org.
Released into public domain by the author.

Copyright (C) 2007 Denys Vlasenko.

Licensed under GPLv2, see file LICENSE in this source tree.

Author's comments from nc 1.10:
=====================
Netcat is entirely my own creation, although plenty of other code was used as
examples.  It is freely given away to the Internet community in the hope that
it will be useful, with no restrictions except giving credit where it is due.
No GPLs, Berkeley copyrights or any of that nonsense.  The author assumes NO
responsibility for how anyone uses it.  If netcat makes you rich somehow and
you're feeling generous, mail me a check.  If you are affiliated in any way
with Microsoft Network, get a life.  Always ski in control.  Comments,
questions, and patches to hobbit@avian.org.
...
Netcat and the associated package is a product of Avian Research, and is freely
available in full source form with no restrictions save an obligation to give
credit where due.
...
=====================

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/tcpudp.c, networking/tcpudp_perhost.c, networking/tcpudp_perhost.h
-----------------------------------------------------------------------------

Based on ipsvd utilities written by Gerrit Pape <pape@smarden.org>
which are released into public domain by the author.
Homepage: http://smarden.sunsite.dk/ipsvd/

Copyright (C) 2007 Denys Vlasenko.

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/tls_aes.c
--------------------

Copyright (C) 2017 Denys Vlasenko

Licensed under GPLv2, see file LICENSE in this source tree.

This AES implementation is derived from tiny-AES128-C code,
which was put by its author into public domain:

tiny-AES128-C/unlicense.txt, Dec 8, 2014
"""
This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
"""

Note that only original tiny-AES128-C code is public domain.
The derived code in this file has been expanded to also implement aes192
and aes256 and use more efficient word-sized operations in many places,
and put under GPLv2 license.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/tls_fe.c
-------------------

Copyright (C) 2018 Denys Vlasenko

Licensed under GPLv2, see file LICENSE in this source tree.

Copyright (C) 2006-2017 wolfSSL Inc.

This file is part of wolfSSL.

wolfSSL is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

wolfSSL is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA

Based from Daniel Beer's public domain work.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/tls_pstm.c
---------------------

Copyright (C) 2017 Denys Vlasenko

Licensed under GPLv2, see file LICENSE in this source tree.

     Copyright (c) 2013-2015 INSIDE Secure Corporation
     Copyright (c) PeerSec Networks, 2002-2011
     All Rights Reserved

     The latest version of this code is available at http://www.matrixssl.org

     This software is open source; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
     (at your option) any later version.

     This General Public License does NOT permit incorporating this software
     into proprietary programs.  If you are unable to comply with the GPL, a
     commercial license for this software may be purchased from INSIDE at
     http://www.insidesecure.com/eng/Company/Locations

     This program is distributed in WITHOUT ANY WARRANTY; without even the
     implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
     See the GNU General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with this program; if not, write to the Free Software
     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     http://www.gnu.org/copyleft/gpl.html

	Based on implementations by:
		Copyright (C) 2003 Bernardo Innocenti <bernie@develer.com>
		Copyright (C) 1999 Hewlett-Packard Co
		Copyright (C) 1999 David Mosberger-Tang <davidm@hpl.hp.com>

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/tls_pstm.h, networking/tls_pstm_montgomery_reduce.c,
networking/tls_pstm_mul_comba.c,
networking/tls_pstm_sqr_comba.c, networking/tls_symmetric.h
---------------------------------------------------------------

Copyright (C) 2017 Denys Vlasenko

Licensed under GPLv2, see file LICENSE in this source tree.

     Copyright (c) 2013-2015 INSIDE Secure Corporation
     Copyright (c) PeerSec Networks, 2002-2011
     All Rights Reserved

     The latest version of this code is available at http://www.matrixssl.org

     This software is open source; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
     (at your option) any later version.

     This General Public License does NOT permit incorporating this software
     into proprietary programs.  If you are unable to comply with the GPL, a
     commercial license for this software may be purchased from INSIDE at
     http://www.insidesecure.com/eng/Company/Locations

     This program is distributed in WITHOUT ANY WARRANTY; without even the
     implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
     See the GNU General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with this program; if not, write to the Free Software
     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     http://www.gnu.org/copyleft/gpl.html

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/tunctl.c
-------------------

Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>

Original code:
     Jeff Dike

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/udhcp/arpping.c
--------------------------

Mostly stolen from: dhcpcd - DHCP client daemon
by Yoichi Hariguchi <yoichi@fore.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/udhcp/common.c, networking/udhcp/packet.c
----------------------------------------------------

Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/udhcp/d6_dhcpc.c
---------------------------

Copyright (C) 2011-2017 Denys Vlasenko.

Licensed under GPLv2, see file LICENSE in this source tree.

and filter shamelessly stolen from:

     http://www.flamewarmaster.de/software/dhcpclient/

Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>.
License: GPL v2.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/udhcp/dhcpc.c
------------------------

Russ Dill <Russ.Dill@asu.edu> July 2001

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

and filter shamelessly stolen from:

     http://www.flamewarmaster.de/software/dhcpclient/

Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>.
License: GPL v2.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/udhcp/dhcpd.c, networking/udhcp/socket.c
---------------------------------------------------

Copyright (C) 1999 Matthew Ramsay <matthewr@moreton.com.au>
                     Chris Trew <ctrew@moreton.com.au>

Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/udhcp/dhcprelay.c
----------------------------

Port to Busybox Copyright (C) 2006 Jesse Dutton <jessedutton@gmail.com>

Licensed under GPLv2, see file LICENSE in this source tree.

Copyright (C) 2002 Mario Strasser <mast@gmx.net>,
                  Zuercher Hochschule Winterthur,
                  Netbeat AG
Upstream has GPL v2 or later

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/udhcp/signalpipe.c
-----------------------------

Russ Dill <Russ.Dill@asu.edu> December 2003

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

networking/wget.c
-----------------

Chip Rosenthal Covad Communications <chip@laserlink.net>
Licensed under GPLv2, see file LICENSE in this source tree.

Copyright (C) 2010 Bradley M. Kuhn <bkuhn@ebb.org>
Kuhn's copyrights are licensed GPLv2-or-later.  File as a whole remains GPLv2.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

printutils/lpr.c
----------------

Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>

Original idea and code:
     Walter Harms <WHarms@bfs.de>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

procps/iostat.c, procps/mpstat.c
--------------------------------

Based on sysstat version 9.1.2 by Sebastien Godard

Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

procps/nmeter.c
---------------

Licensed under GPLv2, see file LICENSE in this source tree.

Based on nanotop.c from floppyfw project

Contact me: vda.linux@googlemail.com

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

procps/powertop.c
-----------------

Based on powertop 1.11.

Copyright (C) 2010 Marek Polacek <mmpolacek@gmail.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

procps/pstree.c
---------------

Copyright (C) 1993-2002 Werner Almesberger
Copyright (C) 2002-2009 Craig Small
Copyright (C) 2010 Lauri Kasanen

Based on pstree (PSmisc) 22.13.

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

procps/pwdx.c
-------------

Copyright (c) 2004 Nicholas Miell
ported from procps by Pere Orga <gotrunks@gmail.com> 2011

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

procps/top.c
------------

(C) Eero Tamminen <oak at welho dot com>

Rewritten by Vladimir Oleynik (C) 2002 <dzo@simtreas.ru>

Sept 2008: Vineet Gupta <vineet.gupta@arc.com>

Copyright (c) 1992 Branko Lankester
Copyright (c) 1992 Roger Binns
Copyright (C) 1994-1996 Charles L. Blake.
Copyright (C) 1992-1998 Michael K. Johnson

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

selinux/chcon.c
---------------

chcon -- change security context, based on coreutils-5.97-13

Port to busybox: KaiGai Kohei <kaigai@kaigai.gr.jp>

Copyright (C) 2006 - 2007 KaiGai Kohei <kaigai@kaigai.gr.jp>

Licensed under GPLv2, see file LICENSE in this source tree.

Packager's note: chcon in coreutils-5.97-13 is from Fedora Core 6:
<https://src.fedoraproject.org/rpms/coreutils/blob/48a2fb753b8bc7b9fc0af880b24da0d8441ff8fc/f/coreutils-selinux.patch>.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

selinux/getenforce.c, selinux/getsebool.c
-----------------------------------------

Based on libselinux 1.33.1
Port to BusyBox  Hiroshi Shinji <shiroshi@my.email.ne.jp>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

selinux/load_policy.c
---------------------

Author: Yuichi Nakamura <ynakam@hitachisoft.jp>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

selinux/matchpathcon.c
----------------------

                 based on libselinux-1.32
Port to busybox: KaiGai Kohei <kaigai@kaigai.gr.jp>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

selinux/runcon.c
----------------

Port to busybox: KaiGai Kohei <kaigai@kaigai.gr.jp>
                 - based on coreutils-5.97 (in Fedora Core 6)

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

selinux/selinuxenabled.c
------------------------

Based on libselinux 1.33.1
Port to BusyBox  Hiroshi Shinji <shiroshi@my.email.ne.jp>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

selinux/sestatus.c
------------------

Ported to busybox: KaiGai Kohei <kaigai@ak.jp.nec.com>

Copyright (C) KaiGai Kohei <kaigai@ak.jp.nec.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

selinux/setenforce.c
--------------------

Based on libselinux 1.33.1
Port to BusyBox  Hiroshi Shinji <shiroshi@my.email.ne.jp>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

selinux/setfiles.c
------------------

setfiles: based on policycoreutils 2.0.19
policycoreutils was released under GPL 2.
Port to BusyBox (c) 2007 by Yuichi Nakamura <ynakam@hitachisoft.jp>

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

selinux/setsebool.c
-------------------

Yuichi Nakamura <ynakam@hitachisoft.jp>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/fdformat.c
---------------------

fdformat.c  -  Low-level formats a floppy disk - Werner Almesberger
5 July 2003 -- modified for Busybox by Erik Andersen

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/fdisk_sgi.c
----------------------

Copyright (C) Andreas Neuper, Sep 1998.

Licensed under GPLv2, see file LICENSE in this source tree.

Copyright (C) Andreas Neuper, Sep 1998.
     This file may be modified and redistributed under
     the terms of the GNU Public License.

Sat Mar 20 EST 1999 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
     Internationalization

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/fdisk_sun.c
----------------------

I think this is mostly, or entirely, due to
     Jakub Jelinek (jj@sunsite.mff.cuni.cz), July 1996

Merged with fdisk for other architectures, aeb, June 1998.

Sat Mar 20 EST 1999 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
     Internationalization

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/flock.c
------------------

Copyright (C) 2010 Timo Teras <timo.teras@iki.fi>

This is free software, licensed under the GNU General Public License v2.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/freeramdisk.c
------------------------

Copyright (C) 2000 and written by Emanuele Caratti <wiz@iol.it>
Adjusted a bit by Erik Andersen <andersen@codepoet.org>
Unified with fdflush by Tito Ragusa <farmatito@tiscali.it>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/fsck_minix.c
-----------------------

(C) 1991, 1992 Linus Torvalds.

Licensed under GPLv2, see file LICENSE in this source tree.

09.11.91  -  made the first rudimentary functions

10.11.91  -  updated, does checking, no repairs yet.
             Sent out to the mailing-list for testing.

14.11.91  -  Testing seems to have gone well. Added some
             correction-code, and changed some functions.

15.11.91  -  More correction code. Hopefully it notices most
             cases now, and tries to do something about them.

16.11.91  -  More corrections (thanks to Mika Jalava). Most
             things seem to work now. Yeah, sure.

19.04.92  -  Had to start over again from this old version, as a
             kernel bug ate my enhanced fsck in february.

28.02.93  -  added support for different directory entry sizes..

Sat Mar  6 18:59:42 1993, faith@cs.unc.edu: Output namelen with
                          superblock information

Sat Oct  9 11:17:11 1993, faith@cs.unc.edu: make exit status conform
                          to that required by fsutil

Mon Jan  3 11:06:52 1994 - Dr. Wettstein (greg%wind.uucp@plains.nodak.edu)
                           Added support for file system valid flag.  Also
                           added program_version variable and output of
                           program name and version number when program
                           is executed.

30.10.94  - added support for v2 filesystem
            (Andreas Schwab, schwab@issan.informatik.uni-dortmund.de)

10.12.94  - added test to prevent checking of mounted fs adapted
            from Theodore Ts'o's (tytso@athena.mit.edu) e2fsck
            program.  (Daniel Quinlan, quinlan@yggdrasil.com)

01.07.96  - Fixed the v2 fs stuff to use the right #defines and such
            for modern libcs (janl@math.uio.no, Nicolai Langfeldt)

02.07.96  - Added C bit fiddling routines from rmk@ecs.soton.ac.uk
            (Russell King).  He made them for ARM.  It would seem
            that the ARM is powerful enough to do this in C whereas
            i386 and m64k must use assembly to get it fast >:-)
            This should make minix fsck system-independent.
            (janl@math.uio.no, Nicolai Langfeldt)

04.11.96  - Added minor fixes from Andreas Schwab to avoid compiler
            warnings.  Added mc68k bitops from
            Joerg Dorchain <dorchain@mpi-sb.mpg.de>.

06.11.96  - Added v2 code submitted by Joerg Dorchain, but written by
            Andreas Schwab.

1999-02-22 Arkadiusz Mickiewicz <misiek@misiek.eu.org>
- added Native Language Support

Make certain that we aren't checking a filesystem that is on a
mounted partition.  Code adapted from e2fsck, Copyright (C) 1993,
1994 Theodore Ts'o.  Also licensed under GPL.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/mkfs_ext2.c
----------------------

inspired by genext2fs

Busybox'ed (2009) by Vladimir Dronnikov <dronnikov@gmail.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/mkfs_reiser.c
------------------------

Busybox'ed (2009) by Vladimir Dronnikov <dronnikov@gmail.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/mkfs_vfat.c
----------------------

inspired by dosfstools

Busybox'ed (2009) by Vladimir Dronnikov <dronnikov@gmail.com>

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/pivot_root.c
-----------------------

pivot_root.c - Change root file system.  Based on util-linux 2.10s

busyboxed by Evin Robertson
pivot_root syscall stubbed by Erik Andersen, so it will compile
    regardless of the kernel being used.

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/rtcwake.c
--------------------

This version was taken from util-linux and scrubbed down for busybox.

Licensed under GPLv2, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/scriptreplay.c
-------------------------

pascal.bellard@ads-lu.com

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

util-linux/setpriv.c
--------------------

setpriv implementation for busybox based on linux-utils-ng 2.29

Copyright (C) 2017 by  <assafgordon@gmail.com>

Licensed under GPLv2 or later, see file LICENSE in this source tree.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.



Upstream Source: GNU LGPL
=========================

e2fsprogs/e2fs_lib.h
--------------------

This file can be redistributed under the terms of the GNU Library General
Public License

On this system, a copy of the GNU Library General Public License may be found at
<file:///usr/share/common-licenses/LGPL-2>.

include/grp_.h, include/pwd_.h, include/shadow_.h
-------------------------------------------------

Copyright (C) 1991,92,95,96,97,98,99,2000,01 Free Software Foundation, Inc.
This file is part of the GNU C Library.

The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA.

On this system, a copy of the GNU Lesser General Public License may be found at
<file:///usr/share/common-licenses/LGPL-2.1>.

include/volume_id.h, util-linux/volume_id/btrfs.c,
util-linux/volume_id/cramfs.c, util-linux/volume_id/exfat.c,
util-linux/volume_id/ext.c, util-linux/volume_id/fat.c,
util-linux/volume_id/hfs.c, util-linux/volume_id/iso9660.c,
util-linux/volume_id/jfs.c, util-linux/volume_id/linux_raid.c,
util-linux/volume_id/linux_swap.c, util-linux/volume_id/luks.c,
util-linux/volume_id/minix.c, util-linux/volume_id/nilfs.c,
util-linux/volume_id/ntfs.c, util-linux/volume_id/ocfs2.c,
util-linux/volume_id/reiserfs.c, util-linux/volume_id/romfs.c,
util-linux/volume_id/sysv.c, util-linux/volume_id/udf.c,
util-linux/volume_id/unused_highpoint.c, util-linux/volume_id/unused_hpfs.c,
util-linux/volume_id/unused_isw_raid.c, util-linux/volume_id/unused_lsi_raid.c,
util-linux/volume_id/unused_lvm.c, util-linux/volume_id/unused_mac.c,
util-linux/volume_id/unused_msdos.c, util-linux/volume_id/unused_nvidia_raid.c,
util-linux/volume_id/unused_promise_raid.c,
util-linux/volume_id/unused_silicon_raid.c, util-linux/volume_id/unused_ufs.c,
util-linux/volume_id/unused_via_raid.c, util-linux/volume_id/util.c,
util-linux/volume_id/volume_id.c, util-linux/volume_id/volume_id_internal.h,
util-linux/volume_id/xfs.c
-------------------------------------------------------------------------------

Copyright (C) 2004-2005 Kay Sievers <kay.sievers@vrfy.org>
Copyright (C) 2005 Tobias Klauser <tklauser@access.unizh.ch>
Copyright (C) 2005 W. Michael Petullo <mike@flyn.org>
Copyright (C) 2009 Vladimir Dronnikov <dronnikov@gmail.com>
Copyright (C) 2012 S-G Bergh <sgb@systemasis.org>
Copyright (C) Andre Masella <andre@masella.no-ip.org>

     This library is free software; you can redistribute it and/or
     modify it under the terms of the GNU Lesser General Public
     License as published by the Free Software Foundation; either
     version 2.1 of the License, or (at your option) any later version.

     This library is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     Lesser General Public License for more details.

     You should have received a copy of the GNU Lesser General Public
     License along with this library; if not, write to the Free Software
     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

On this system, a copy of the GNU Lesser General Public License may be found at
<file:///usr/share/common-licenses/LGPL-2.1>.

util-linux/volume_id/bcache.c
-----------------------------

Copyright (C) 2013 Rolf Fokkens <rolf@fokkens.nl>

This file may be redistributed under the terms of the
GNU Lesser General Public License.

Based on code fragments from bcache-tools by Kent Overstreet:
http://evilpiepirate.org/git/bcache-tools.git

This notice suggests that this file may be used under any version of the GNU
Lesser General Public License.  On this system, a copy of the GNU LGPL version
2.1 may be found at <file:///usr/share/common-licenses/LGPL-2.1>.



Upstream Source: BSD License with Advertising Clause
====================================================

networking/inetd.c
------------------

Busybox port by Vladimir Oleynik (C) 2001-2005 <dzo@simtreas.ru>
IPv6 support, many bug fixes by Denys Vlasenko (c) 2008

Copyright (c) 1983,1991 The Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. All advertising materials mentioning features or use of this software
   must display the following acknowledgement:
     This product includes software developed by the University of
     California, Berkeley and its contributors.
4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

networking/traceroute.c
-----------------------

Copyright (c) 1988, 1989, 1991, 1994, 1995, 1996, 1997, 1998, 1999, 2000
     The Regents of the University of California.  All rights reserved.

Busybox port by Vladimir Oleynik (C) 2005 <dzo@simtreas.ru>

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that: (1) source code distributions
retain the above copyright notice and this paragraph in its entirety, (2)
distributions including binary code include the above copyright notice and
this paragraph in its entirety in the documentation or other materials
provided with the distribution, and (3) all advertising materials mentioning
features or use of this software display the following acknowledgement:
''This product includes software developed by the University of California,
Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
the University nor the names of its contributors may be used to endorse
or promote products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED ''AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

util-linux/fdisk_osf.c
----------------------

Copyright (c) 1987, 1988 Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. All advertising materials mentioning features or use of this software
   must display the following acknowledgment:
     This product includes software developed by the University of
     California, Berkeley and its contributors.
4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.



Upstream Source: Other Licenses
===============================

archival/bzip2.c, archival/libarchive/bz/blocksort.c,
archival/libarchive/bz/bzlib.c, archival/libarchive/bz/bzlib.h,
archival/libarchive/bz/bzlib_private.h,
archival/libarchive/bz/compress.c, archival/libarchive/bz/huffman.c
-------------------------------------------------------------------

Copyright (C) 2007 Denys Vlasenko <vda.linux@googlemail.com>

bzip2 applet in busybox is based on lightly-modified source
of bzip2 version 1.0.4. bzip2 source is distributed
under the following conditions (copied verbatim from LICENSE file)

This program, "bzip2", the associated library "libbzip2", and all
documentation, are copyright (C) 1996-2006 Julian R Seward.  All
rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.

2. The origin of this software must not be misrepresented; you must
   not claim that you wrote the original software.  If you use this
   software in a product, an acknowledgment in the product
   documentation would be appreciated but is not required.

3. Altered source versions must be plainly marked as such, and must
   not be misrepresented as being the original software.

4. The name of the author may not be used to endorse or promote
   products derived from this software without specific prior written
   permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Julian Seward, Cambridge, UK.
jseward@bzip.org
bzip2/libbzip2 version 1.0.4 of 20 December 2006

editors/ed.c
------------

Copyright (c) 2002 by David I. Bell
Permission is granted to use, distribute, or modify this source,
provided that this copyright notice remains intact.

editors/patch.c
---------------

Adapted from toybox's patch implementation.

Copyright 2007 Rob Landley <rob@landley.net>

editors/patch_toybox.c
----------------------

Copyright 2007 Rob Landley <rob@landley.net>

include/bb_e2fs_defs.h
----------------------

Copyright (C) 1992, 1993, 1994, 1995
Remy Card (card@masi.ibp.fr)
Laboratoire MASI - Institut Blaise Pascal
Universite Pierre et Marie Curie (Paris VI)

Copyright (C) 1991, 1992  Linus Torvalds

libbb/change_identity.c, libbb/correct_password.c,
libbb/run_shell.c, libbb/setup_environment.c
--------------------------------------------------

Copyright 1989 - 1991, Julianne Frances Haugh <jockgrrl@austin.rr.com>
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of Julianne F. Haugh nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

libbb/hash_md5prime.c, libbb/pw_encrypt_md5.c
---------------------------------------------

Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
rights reserved.

License to copy and use this software is granted provided that it
is identified as the "RSA Data Security, Inc. MD5 Message-Digest
Algorithm" in all material mentioning or referencing this software
or this function.

License is also granted to make and use derivative works provided
that such works are identified as "derived from the RSA Data
Security, Inc. MD5 Message-Digest Algorithm" in all material
mentioning or referencing the derived work.

RSA Data Security, Inc. makes no representations concerning either
the merchantability of this software or the suitability of this
software for any particular purpose. It is provided "as is"
without express or implied warranty of any kind.

These notices must be retained in any copies of any part of this
documentation and/or software.

$FreeBSD: src/lib/libmd/md5c.c,v 1.9.2.1 1999/08/29 14:57:12 peter Exp $

The md5_crypt() function was taken from freeBSD's libcrypt and contains
this license:
   "THE BEER-WARE LICENSE" (Revision 42):
    <phk@login.dknet.dk> wrote this file.  As long as you retain this notice you
    can do whatever you want with this stuff. If we meet some day, and you think
    this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp

$FreeBSD: src/lib/libcrypt/crypt.c,v 1.7.2.1 1999/08/29 14:56:33 peter Exp $

libbb/lineedit.c
----------------

Command line editing.

Copyright (c) 1986-2003 may safely be consumed by a BSD or GPL license.
Written by:   Vladimir Oleynik <dzo@simtreas.ru>

Used ideas:
     Adam Rogoyski    <rogoyski@cs.utexas.edu>
     Dave Cinege      <dcinege@psychosis.com>
     Jakub Jelinek (c) 1995
     Erik Andersen    <andersen@codepoet.org> (Majorly adjusted for busybox)

This code is 'as is' with no warranty.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.

libbb/progress.c
----------------

Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
much of which was blatantly stolen from openssh.

Copyright (c) 1992, 1993
The Regents of the University of California.  All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. BSD Advertising Clause omitted per the July 22, 1999 licensing change
   ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change

4. Neither the name of the University nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

libbb/pw_encrypt_des.c
----------------------

FreeSec: libcrypt for NetBSD

Copyright (c) 1994 David Burren
All rights reserved.

Adapted for FreeBSD-2.0 by Geoffrey M. Rehmet
     this file should now *only* export crypt(), in order to make
     binaries of libcrypt exportable from the USA

Adapted for FreeBSD-4.0 by Mark R V Murray
     this file should now *only* export crypt_des(), in order to make
     a module that can be optionally included in libcrypt.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of the author nor the names of other contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ''AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

libpwdgrp/uidgid_get.c
----------------------

Copyright (c) 2001-2006, Gerrit Pape
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

   1. Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
   2. Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.
   3. The name of the author may not be used to endorse or promote products
      derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

networking/ntpd.c
-----------------

Busybox port author: Adam Tkac (C) 2009 <vonsch@gmail.com>

OpenNTPd 3.9p1 copyright holders:
  Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
  Copyright (c) 2004 Alexander Guy <alexander.guy@andern.org>

OpenNTPd code is licensed under ISC-style licence:

Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Parts of OpenNTPD clock syncronization code is replaced by
code which is based on ntp-4.2.6, which carries the following
copyright notice:

Copyright (c) University of Delaware 1992-2009

Permission to use, copy, modify, and distribute this software and
its documentation for any purpose with or without fee is hereby
granted, provided that the above copyright notice appears in all
copies and that both the copyright notice and this permission
notice appear in supporting documentation, and that the name
University of Delaware not be used in advertising or publicity
pertaining to distribution of the software without specific,
written prior permission. The University of Delaware makes no
representations about the suitability this software for any
purpose. It is provided "as is" without express or implied warranty.

runit/chpst.c, runit/runit_lib.h, runit/runsv.c,
runit/runsvdir.c, runit/sv.c, runit/svlogd.c
------------------------------------------------

Copyright (c) 2001-2006, Gerrit Pape
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

   1. Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
   2. Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.
   3. The name of the author may not be used to endorse or promote products
      derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.



Upstream Source: No Copyright (Public Domain)
=============================================

archival/libarchive/unxz/xz.h, archival/libarchive/unxz/xz_config.h,
archival/libarchive/unxz/xz_dec_bcj.c, archival/libarchive/unxz/xz_dec_lzma2.c,
archival/libarchive/unxz/xz_dec_stream.c, archival/libarchive/unxz/xz_lzma2.h,
archival/libarchive/unxz/xz_private.h, archival/libarchive/unxz/xz_stream.h
-------------------------------------------------------------------------------

This file has been put into the public domain.
You can do whatever you want with this file.

libbb/pw_encrypt_sha.c
----------------------

Released into the Public Domain by Ulrich Drepper <drepper@redhat.com>.

miscutils/bbconfig.c
--------------------

This file was released into the public domain by Paul Fox.

util-linux/setsid.c
-------------------

Rick Sladkey <jrs@world.std.com>
In the public domain.

1999-02-22 Arkadiusz Mickiewicz <misiek@pld.ORG.PL>
- added Native Language Support

2001-01-18 John Fremlin <vii@penguinpowered.com>
- fork in case we are process group leader

2004-11-12 Paul Fox
- busyboxed



Upstream Source: No Copyright/License Notices
=============================================

archival/libarchive/decompress_uncompress.c
-------------------------------------------

uncompress for busybox -- (c) 2002 Robert Griebl

based on the original compress42.c source
(see disclaimer below)

(N)compress42.c - File compression ala IEEE Computer, Mar 1992.

Authors:
  Spencer W. Thomas   (decvax!harpo!utah-cs!utah-gr!thomas)
  Jim McKie           (decvax!mcvax!jim)
  Steve Davies        (decvax!vax135!petsd!peora!srd)
  Ken Turkowski       (decvax!decwrl!turtlevax!ken)
  James A. Woods      (decvax!ihnp4!ames!jaw)
  Joe Orost           (decvax!vax135!petsd!joe)
  Dave Mack           (csu@alembic.acs.com)
  Peter Jannesen, Network Communication Systems
                      (peter@ncs.nl)

marc@suse.de : a small security fix for a buffer overflow

[... History snipped ...]

From <https://github.com/vapier/ncompress/blob/main/UNLICENSE>:

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

BusyBox modifications assumed to be usable under the GNU General Public License
version 2.  On this system, a copy of the GNU GPL version 2 may be found at
<file:///usr/share/common-licenses/GPL-2>.

For more information, please refer to <http://unlicense.org/>

include/applets.src.h, include/bb_archive.h, include/dump.h,
include/usage.src.h, init/reboot.h, libbb/in_ether.c, miscutils/mim.c,
networking/libiproute/ip_common.h, networking/libiproute/libnetlink.h,
networking/libiproute/ll_map.h, networking/libiproute/rt_names.h,
networking/libiproute/rtm_map.h, networking/libiproute/utils.h,
shell/match.h, shell/math.h, util-linux/minix.h, util-linux/nologin.c
----------------------------------------------------------------------

No copyright/license notices, but most likely licensed under GNU GPL version 2,
if copyrightable at all.

include/inet_common.h
---------------------

stolen from net-tools-1.59 and stripped down for busybox by
                     Erik Andersen <andersen@codepoet.org>

Heavily modified by Manuel Novoa III       Mar 12, 2001

No license notice, but most likely licensed under GPLv2 like
<libbb/inet_common.c>, if copyrightable at all.



Distribution Packaging
======================

Copyright (C) 2013-2014, 2020  Patrick McDermott

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

On this system, a copy of the GNU General Public License may be found at
<file:///usr/share/common-licenses/GPL-2>.